texts
sequence
meta
dict
scores
sequence
avg_score
float64
0
0.13
num_sents
int64
5
5
tagged_pii_results
list
[ "A CMOS neuroelectronic interface based on two-dimensional transistor arrays with monolithically-integrated circuitry.", "\nThe ability to monitor and to elicit neural activity with a high spatiotemporal resolution has grown essential for studying the functionality of neuronal networks. ", "Although a variety of microelectrode arrays (MEAs) has been proposed, very few MEAs are integrated with signal-processing circuitry. ", "As a result, the maximum number of electrodes is limited by routing complexity, and the signal-to-noise ratio is degraded by parasitics and noise interference. ", "This paper presents a single-chip neuroelectronic interface integrating oxide-semiconductor field-effect transistors (OSFETs) with signal-processing circuitry. ", "After the chip was fabricated with the standard complementary-metal-oxide-semiconductor (CMOS) process, polygates of specific transistors were etched at die-level to form OSFETs, while metal layers were retained to connect the OSFETs into two-dimensional arrays. ", "The complete removal of polygates was confirmed by high-resolution image scanners, and the reliability of OSFETs was examined by measuring their electrical characteristics. ", "Through a gate oxide of only 7nm thick, each OSFET can record and stimulate neural activity extracellularly by capacitive coupling. ", "The capability of the full chip in neural recording and stimulation was further experimented using the well-characterised escape circuit of the crayfish. ", "Experimental results indicate that the OSFET-based neuroelectronic interface can be used to study neuronal networks as faithfully as conventional electrophysiological tools. ", "Moreover, the proposed simple, die-level fabrication process of the OSFETs underpins the development of various field-effect biosensors on a large scale with on-chip circuitry." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.008547008547008548, 0, 0, 0, 0, 0.0038022813688212928, 0, 0, 0, 0.005747126436781609, 0 ]
0.001645
5
[]
[ "Barriers to school based physical therapy perceptions of physical therapists in a rural state.", "\nThe enactment of the Education for All Handicapped Children Act provided children with disabilities the right to be educated with their peers in public schools. ", "The related services provision of the Act requires public schools to hire appropriate personnel, including physical therapists, to enhance educational opportunities for children with disabilities. ", "The purpose of this study was to explore perceived barriers to optimal school-based physical therapy practice and delivery identified by Idaho school-based therapists. ", "Forty-eight Idaho school-based physical therapists were sent the survey instrument developed for this study. ", "Thirty-six Idaho school-based therapists returned the survey (response rate 75%). ", "Data analysis substantiated four barriers to school-based physical therapy practice: financial constraints, administrative issues, personnel shortages, and limited understanding of disability law. ", "A statistically significant difference (p < 0.05) was found between participant perceptions of barriers within their school and their perceptions of barriers statewide. ", "Overall, participants perceived, to varying degrees, that although barriers were present at the school level, state level barriers were even greater." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.006172839506172839, 0, 0.005952380952380952, 0, 0, 0, 0, 0 ]
0.001347
5
[ { "analysis_explanation": null, "end": 595, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 590 }, { "analysis_explanation": null, "end": 638, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 633 }, { "analysis_explanation": null, "end": 746, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 741 } ]
[ "The inherent brittleness of a cement matrix can be substantially overcome by dispersing therein a suitable amount of a suitable fibrous material, such as carbon fiber. ", "Since the development of inexpensive pitch-based carbon fibers, extensive studies on a practical use of carbon fiber reinforced concrete have been made, and great expectations are entertained of this new construction material having strngth, distortion and elastic properties which have not been realized by the heretofore available cement concretes.", "\nWe have been engaged for a long year in a research and development work on the carbon fiber reinforced concrete. ", "During our work we have encountered a problem which is not the case with ordinary concrete. ", "The problem is a phenomenon that if metal is in contact with carbon fiber reinforced concrete, corrosion (oxidation) of the metal extensively proceeds during the curing of the concrete. ", "More specifically, when carbon fiber reinforced concrete is cured while being in contact with ferrous metallic members, such as reinforcing steel bars and meshes, steel molds, bond wires, anchor fasteners, spacers and the like, corrosion of the metal rapidly proceeds during the curing of the concrete on those areas of the ferrous metallic members where they are in contact with the concrete to an extent unexpected with ordinary concrete." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 555, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544 } ]
[ "#import <Foundation/Foundation.h>\r\n@interface GHGherkinLineSpan : NSObject\r\n\r\n@property (nonatomic, readonly) NSUInteger column;\r\n@property (nonatomic, readonly) NSString * text;\r\n\r\n- (id)initWithColumn:(NSUInteger)theColumn text:(NSString *)theText;\r\n\r\n@end" ]
{ "pile_set_name": "Github" }
[ 0.015209125475285171 ]
0.015209
5
[ { "analysis_explanation": null, "end": 141, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132 } ]
[ "Q:\n\nOctave operator \\ error\n\nI'm working in GNU Octave and i need to solve the following equation: A*x=b (A, x, b are matrix). ", "\nA = [1 1; 2 1];\nb = [1, 2];\n\nSo i'm doing x = A \\ b according to my guidelines. ", "But I get an error:\noperator \\: nonconformant arguments (op1 is 2x2, op2 is 1x2)\n\nI understand what it means, but don't know how to fix this. ", "I've already tried inv(A) * b.\n\nBy the way it works perfectly in matlab. ", "Here is my script:\nA = input('Enter A');\nb = input('Enter b');\nx = A \\ b;\ndisplay(x);\n\nA:\n\nThe problem is with the dimension of b it should be columns rather than a row.", "\nx = A\\b.';", "\n% or for clarity\nx = A\\transpose(b);\n\nEdit:\nIf you use inv again you need to use the correct dimensions:\nx = inv(A)*b.';", "\n% or for clarity\nx = inv(A)*transpose(b);\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137 }, { "analysis_explanation": null, "end": 286, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283 }, { "analysis_explanation": null, "end": 420, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 414 }, { "analysis_explanation": null, "end": 479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 467 }, { "analysis_explanation": null, "end": 590, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 573 } ]
[ "Q:\n\nArrayCollection in PHP\n\nHow can i return my output in ArrayCollection?", "\nvalues = array();\n while($row = mysql_fetch_array($result)) \n {\n $values[] = array(mysql_num_rows($result),$row['userlevel'],$row['email'],$row['member_id']);\n }\n return $values;\n\nI need the output as ArrayCollection\n\nA:\n\nArrayCollection is part of Collections, a Doctrine project.", "\nThere is no published documentation but the available methods can be seen in the ArrayCollection class itself.", "\n\nA:\n\nPHP has no such thing as an ArrayCollection as far as I'm aware.", "\nFrom a quick Google search it seem like this is more about ActionScript/Flex. ", "This page has some examples of how to get an ArrayCollection from a PHP array. ", "Not sure if it's what you're looking for though.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.02702702702702703, 0.012461059190031152, 0.009009009009009009, 0.02857142857142857, 0.012658227848101266, 0.02531645569620253, 0, 0 ]
0.01438
5
[]
[ "Could tank the whole US economy!", "\n\nDJ Greenspan Cites Concern About Electric Sector Investment\nDow Jones International News Service -- July 20, 2000 [Return to Headlines]\n\n\nWASHINGTON (Dow Jones)--Federal Reserve Board Chairman Alan Greenspan told\nCongress Thursday he is concerned that disincentives for investment in the\nelectricity sector will destabilize the overall U.S. economy.", "\n\n\"The propensity to build new electric power facilities is being\ndisincentivized,\" Greenspan said.", "\n\n\"I'm worried about the instability that that creates within the economy and\nthe difficulties that might emerge as a consequence of that,\" the Fed\nchairman said in response to a query by Sen. Charles Schumer, D-N.Y.\n\n\"It is an issue we need to address,\" Greenspan said.", "\n\nU.S. utilities have failed to make needed investments in generation plants\nand transmission lines over the last decade in the face of regulatory\nuncertainty posed by state and federal deregulation efforts.", "\n\nEnergy Secretary Bill Richardson has been touring the country in recent\nmonths, warning that the problem is contributing to power supply shortages\nin summer months, when hot weather sends electricity demand - and prices -\nsoaring.", "\n\nRichardson says Congress needs to enact a comprehensive bill restructuring\nthe $215 billion electric industry to end the uncertainty and give the\nsector renewed incentive to make needed investments. ", "By Bryan Lee;Dow Jones\nNewswires;202-862-6647, bryan.lee@dowjones.com\n\n\n(END) Dow Jones Newswires 20-07-00\n\n1948GMT\n\n\nKim S. Martin\nVice President\nFleishman-Hillard Inc.\n1615 L Street NW, Suite 1000\nWashington, DC 20036\n(202) 828-8827\nfax:(202) 293-8105\nmartinki@fleishman.com" ]
{ "pile_set_name": "Enron Emails" }
[ 0, 0.011363636363636364, 0.010101010101010102, 0.014814814814814815, 0, 0.004310344827586207, 0.009950248756218905, 0.036231884057971016 ]
0.010846
5
[ { "analysis_explanation": null, "end": 1456, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 1434 }, { "analysis_explanation": null, "end": 1663, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 1641 }, { "analysis_explanation": null, "end": 23, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21 }, { "analysis_explanation": null, "end": 45, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36 }, { "analysis_explanation": null, "end": 146, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133 }, { "analysis_explanation": null, "end": 182, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172 }, { "analysis_explanation": null, "end": 241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227 }, { "analysis_explanation": null, "end": 264, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256 }, { "analysis_explanation": null, "end": 374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 370 }, { "analysis_explanation": null, "end": 475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466 }, { "analysis_explanation": null, "end": 688, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 673 }, { "analysis_explanation": null, "end": 744, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 735 }, { "analysis_explanation": null, "end": 755, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 751 }, { "analysis_explanation": null, "end": 869, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 854 }, { "analysis_explanation": null, "end": 989, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 974 }, { "analysis_explanation": null, "end": 1035, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1022 }, { "analysis_explanation": null, "end": 1120, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1107 }, { "analysis_explanation": null, "end": 1409, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1390 }, { "analysis_explanation": null, "end": 1493, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1485 }, { "analysis_explanation": null, "end": 1518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1505 }, { "analysis_explanation": null, "end": 1596, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1586 }, { "analysis_explanation": null, "end": 1606, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1598 }, { "analysis_explanation": null, "end": 1456, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1444 }, { "analysis_explanation": null, "end": 1663, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1650 }, { "analysis_explanation": null, "end": 1432, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1420 }, { "analysis_explanation": null, "end": 1621, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1607 }, { "analysis_explanation": null, "end": 1640, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1626 } ]
[ "#define DEF_TEXT \\\n\"Episode IV\\\\n\" \\\n\"\\\\n\" \\\n\"STAR WARS: A NEW HOPE\\\\n\" \\\n\"\\\\n\" \\\n\"It is a period of Civil War.\\\\n\" \\\n\"Rebel Spaceships, striking\\\\n\" \\\n\"from a hidden base, have won\\\\n\" \\\n\"their first victory against\\\\n\" \\\n\"the evil Galactic Empire.\\\\n\" \\\n\"\\\\n\" \\\n\"During the battle, Rebel\\\\n\" \\\n\"spies managed to steal secret\\\\n\" \\\n\"plans to the Empire's\\\\n\" \\\n\"ultimate weapon, the DEATH\\\\n\" \\\n\"STAR, an armored space\\\\n\" \\\n\"station with enough power to\\\\n\" \\\n\"destroy an entire planet.\\\\n\" \\\n\"\\\\n\" \\\n\"Pursued by the Empire's\\\\n\" \\\n\"sinister agents, Princess\\\\n\" \\\n\"Leia races home aboard her\\\\n\" \\\n\"starship, custodian of the\\\\n\" \\\n\"stolen plans that can save\\\\n\" \\\n\"her people and restore\\\\n\" \\\n\"freedom to the galaxy...\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"Episode V\\\\n\" \\\n\"\\\\n\" \\\n\"THE EMPIRE STRIKES BACK\\\\n\" \\\n\"\\\\n\" \\\n\"It is a dark time for the\\\\n\" \\\n\"Rebellion. ", "Although the Death\\\\n\" \\\n\"Star has been destroyed,\\\\n\" \\\n\"Imperial troops have driven the\\\\n\" \\\n\"Rebel forces from their hidden\\\\n\" \\\n\"base and pursued them across\\\\n\" \\\n\"the galaxy.\\\\n\" \\\n\"\\\\n\" \\\n\"Evading the dreaded Imperial\\\\n\" \\\n\"Starfleet, a group of freedom\\\\n\" \\\n\"fighters led by Luke Skywalker\\\\n\" \\\n\"has established a new secret\\\\n\" \\\n\"base on the remote ice world\\\\n\" \\\n\"of Hoth.\\\\n\" \\\n\"\\\\n\" \\\n\"The evil lord Darth Vader,\\\\n\" \\\n\"obsessed with finding young\\\\n\" \\\n\"Skywalker, has dispatched\\\\n\" \\\n\"thousands of remote probes into\\\\n\" \\\n\"the far reaches of space....\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"Episode VI\\\\n\" \\\n\"\\\\n\" \\\n\"RETURN OF THE JEDI\\\\n\" \\\n\"\\\\n\" \\\n\"Luke Skywalker has returned to\\\\n\" \\\n\"his home planet of Tatooine in\\\\n\" \\\n\"an attempt to rescue his\\\\n\" \\\n\"friend Han Solo from the\\\\n\" \\\n\"clutches of the vile gangster\\\\n\" \\\n\"Jabba the Hutt.\\\\n\" \\\n\"\\\\n\" \\\n\"Little does Luke know that the\\\\n\" \\\n\"GALACTIC EMPIRE has secretly\\\\n\" \\\n\"begun construction on a new\\\\n\" \\\n\"armored space station even\\\\n\" \\\n\"more powerful than the first\\\\n\" \\\n\"dreaded Death Star.\\\\n\" \\\n\"\\\\n\" \\\n\"When completed, this ultimate\\\\n\" \\\n\"weapon will spell certain doom\\\\n\" \\\n\"for the small band of rebels\\\\n\" \\\n\"struggling to restore freedom\\\\n\" \\\n\"to the galaxy...\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"Episode I\\\\n\" \\\n\"\\\\n\" \\\n\"THE PHANTOM MENACE\\\\n\" \\\n\"\\\\n\" \\\n\"Turmoil has engulfed the\\\\n\" \\\n\"Galactic Republic. ", " The taxation\\\\n\" \\\n\"of trade routes to outlying star\\\\n\" \\\n\"systems is in dispute.\\\\n\" \\\n\"\\\\n\" \\\n\"Hoping to resolve the matter\\\\n\" \\\n\"with a blockade of deadly\\\\n\" \\\n\"battleships, the greedy Trade\\\\n\" \\\n\"Federation has stopped all\\\\n\" \\\n\"shipping to the small planet\\\\n\" \\\n\"of Naboo.\\\\n\" \\\n\"\\\\n\" \\\n\"While the Congress of the\\\\n\" \\\n\"Republic endlessly debates\\\\n\" \\\n\"this alarming chain of events,\\\\n\" \\\n\"the Supreme Chancellor has\\\\n\" \\\n\"secretly dispatched two Jedi\\\\n\" \\\n\"Knights, the guardians of\\\\n\" \\\n\"peace and justice in the\\\\n\" \\\n\"galaxy to settle the conflict...\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"Episode II\\\\n\" \\\n\"\\\\n\" \\\n\"ATTACK OF THE CLONES\\\\n\" \\\n\"\\\\n\" \\\n\"There is unrest in the Galactic\\\\n\" \\\n\"Senate. ", " Several thousand solar\\\\n\" \\\n\"systems have declared their\\\\n\" \\\n\"intentions to leave the Republic.\\\\n\" \\\n\"\\\\n\" \\\n\"This separatist movement,\\\\n\" \\\n\"under the leadership of the\\\\n\" \\\n\"mysterious Count Dooku, has\\\\n\" \\\n\"made it difficult for the limited\\\\n\" \\\n\"number of Jedi Knights to\\\\n\" \\\n\"maintain peace and order in the\\\\n\" \\\n\"galaxy.\\\\n\" \\\n\"\\\\n\" \\\n\"Senator Amidala, the former\\\\n\" \\\n\"Queen of Naboo, is returning\\\\n\" \\\n\"to the Galactic Senate to vote\\\\n\" \\\n\"on the critical issue of creating\\\\n\" \\\n\"an ARMY OF THE REPUBLIC\\\\n\" \\\n\"to assist the overwhelmed\\\\n\" \\\n\"Jedi....\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"Episode III\\\\n\" \\\n\"\\\\n\" \\\n\"REVENGE OF THE SITH\\\\n\" \\\n\"\\\\n\" \\\n\"War! ", " The Republic is crumbling\\\\n\" \\\n\"under attacks by the ruthless\\\\n\" \\\n\"Sith Lord, Count Dooku.\\\\n\" \\\n\"There are heroes on both sides.\\\\n\" \\\n\"Evil is everywhere.\\\\n\" \\\n\"\\\\n\" \\\n\"In a stunning move, the\\\\n\" \\\n\"fiendish droid leader, General\\\\n\" \\\n\"Grievous, has swept into the\\\\n\" \\\n\"Republic capital and kidnapped\\\\n\" \\\n\"Chancellor Palpatine, leader of\\\\n\" \\\n\"the Galactic Senate.\\\\n\" \\\n\"\\\\n\" \\\n\"As the Separatist Droid Army\\\\n\" \\\n\"attempts to flee th besieged\\\\n\" \\\n\"capital with their valuable\\\\n\" \\\n\"hostage, two Jedi Knights lead a\\\\n\" \\\n\"desperate mission to rescue the\\\\n\" \\\n\"captive Chancellor....\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"Episode VII\\\\n\" \\\n\"THE FORCE AWAKENS\\\\n\" \\\n\"Luke Skywalker has vanished.\\\\n\" \\\n\"In his absence, the sinister\\\\n\" \\\n\"FIRST ORDER has risen from\\\\n\" \\\n\"the ashes of the Empire\\\\n\" \\\n\"and will not rest until\\\\n\" \\\n\"Skywalker, the last Jedi,\\\\n\" \\\n\"has been destroyed.\\\\n\" \\\n\"\\\\n\" \\\n\"With the support of the\\\\n\" \\\n\"REPUBLIC, General Leia Organa\\\\n\" \\\n\"leads a brave RESISTANCE.\\\\n\" \\\n\"She is desperate to find her\\\\n\" \\\n\"brother Luke and gain his\\\\n\" \\\n\"help in restoring peace and \\\\n\" \\\n\"justice to the galaxy.\\\\n\" \\\n\"\\\\n\" \\\n\"Leia has sent her most daring\\\\n\" \\\n\"pilot on a secret mission\\\\n\" \\\n\"to Jakku, where an old ally\\\\n\" \\\n\"has discovered a clue to\\\\n\" \\\n\"Luke's whereabouts...\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\" \\\n\"\\\\n\"\n" ]
{ "pile_set_name": "Github" }
[ 0.044172932330827065, 0.04626532887402453, 0.05147864184008762, 0.052571428571428575, 0.0492836676217765 ]
0.048754
5
[ { "analysis_explanation": null, "end": 358, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347 }, { "analysis_explanation": null, "end": 530, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 519 }, { "analysis_explanation": null, "end": 665, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658 }, { "analysis_explanation": null, "end": 1368, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1351 }, { "analysis_explanation": null, "end": 1498, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1483 }, { "analysis_explanation": null, "end": 1944, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1930 }, { "analysis_explanation": null, "end": 1995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1987 }, { "analysis_explanation": null, "end": 2053, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2045 }, { "analysis_explanation": null, "end": 2112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2107 }, { "analysis_explanation": null, "end": 2154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2150 }, { "analysis_explanation": null, "end": 2856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2839 }, { "analysis_explanation": null, "end": 3127, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3118 }, { "analysis_explanation": null, "end": 3144, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3135 }, { "analysis_explanation": null, "end": 3974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3963 }, { "analysis_explanation": null, "end": 4138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4131 }, { "analysis_explanation": null, "end": 4659, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4644 }, { "analysis_explanation": null, "end": 4982, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4973 }, { "analysis_explanation": null, "end": 5535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5521 }, { "analysis_explanation": null, "end": 5820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5806 }, { "analysis_explanation": null, "end": 5906, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5902 }, { "analysis_explanation": null, "end": 6079, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6074 }, { "analysis_explanation": null, "end": 6142, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6138 } ]
[ "Jennifer Nagel, University of Toronto October 15, 2012 Forthcoming in Philosophy and Phenomenological Research Defending the Evidential Value of Epistemic Intuitions: A Reply to Stich Epistemology is difficult. ", "In the ongoing struggle to improve our understanding of knowledge, epistemologists have used a variety of methods, including the method of eliciting intuitive reactions to particular cases. ", "This method has been used for centuries, both by Western philosophers such as Plato, Augustine and Zagzebski, and by Eastern philosophers such as Dharmottara, Sriharsa and Gangesa.1 Stich contends that epistemologists have been making a mistake in using case intuitions as evidence: in his view, these responses are culturally specific and fail to reflect the nature of knowledge. ", "In my view, intuitions about knowledge typically arise from a basic human capacity that is cross--‐culturally shared; namely, the capacity for folk psychology or 'mindreading'. ", "Ordinary social interactions are supported by this capacity: we make sense of others by seeing them as thinking, wanting and knowing various things. ", "As I see it, our intuitive capacity to detect states of knowledge is not only cross--‐culturally shared, but also evidentially useful for epistemology. ", "Epistemologists can learn about knowledge by considering cases because our intuitive capacity to detect the presence and absence of knowledge is sensitive to features of knowledge that our explicit theories of knowledge have yet to capture. ", "Stich's reply to me argues at length that there is likely to be variation in mindreading, and therefore in epistemic intuition. ", "However, the experimentalist challenge I aimed to address was not the experimentalist claim that there is variation in intuition: I myself emphasized that there is variation in epistemic intuition, just as there is variation in perception. ", "My claim was rather that \"epistemic intuitions do not show peculiar or particularly problematic forms of variation\" (Nagel, 2012a, 27). ", "The challenge I aimed to address, as I say on the first page of my paper, is the claim that \"experimental evidence seems to point to the unsuitability of intuitions to serve as evidence at all\" 1 Indeed cases roughly similar to Gettier's were discussed in the Indo--‐Tibetan tradition as early as the 8th century, with the shared verdict that the subject in such cases lacks knowledge (Stoltz, 2007). ", "2 (Alexander & Weinberg, 2007, 63). ", "This is a claim to which Stich himself shows a continuing commitment: in his Reply, he characterizes experimentalists as being opposed to \"the practice of using these intuitions as evidence about the nature of knowledge\" (3). ", "In what follows, I defend that practice, and argue that the variation actually found in mindreading does nothing to undercut the claim that epistemic intuitions have evidential value in epistemology. ", "1. ", "What does it mean to say that epistemic intuitions are unsuitable as evidence in epistemology? ", "Epistemologists who use case responses as evidence do not have to assume that all case intuitions must be correct; case intuitions can have evidential value even if they just generally tend to be correct. ", "A defender of the case method can even maintain, as I have done (2010; 2012b), that some philosophically interesting types of scenario systematically generate mistaken intuitions, just as a defender of the legitimacy of empirical investigation can admit the existence of common and systematic perceptual illusions.2 Various arguments might be advanced to try to show that epistemic intuition is evidentially worthless: one might raise generic skeptical worries of a sort that can also be raised about sense perception. ", "The excitement of the experimentalist challenge was its promise to give us something more than generic skepticism, its claim to deliver an empirically supported challenge to a default position of trusting epistemic intuition. ", "Stich lays out the structure of this challenge as follows: If one group has the intuition that the protagonist does know that P and the other group has the intuition that the protagonist does not know that P, then they can't both be right. ", "And if these group differences are found in a significant number of cases of the sort that epistemologists appeal to in debating the virtues of competing accounts of knowledge, then 2 Stich objects to my use of the Müller--‐Lyer array as an example of a perceptual illusion, on the grounds that a study done in 1966 suggested that the San people of the Kalahari could be immune to it. ", "Subsequent research (e.g. Davis and Carlson 1970) casts doubt on such findings of \"minimal susceptibility\" or immunity to the illusion, supporting instead the milder view that there is just cross--‐cultural variation in its intensity. ", "In any event, the illusion was mentioned to draw attention to the fact that consensuality and correctness may diverge-even if many people share an impression, they may be wrong-and to argue that shared illusions are a sign of shared mechanisms. ", "Whether or not the San experience this illusion, both points still stand. ", "Furthermore, if there is cross--‐cultural variation in the human capacity for estimating magnitudes visually, this is an excellent example of a cross--‐culturally varied capacity whose deliverances nevertheless generally have evidential value. ", "3 the assumption that the content of people's intuitions in philosophically important cases are usually true is threatened, and the practice of using these intuitions as evidence about the nature of knowledge is undermined. (", "Stich reply, p. 3) The first sentence here could use some refinement: Stich would be safer to say that genuine disagreement, whether between individuals or groups, indicates that the disagreeing parties can't both be right. ", "Opposed intuitive responses to a case do not necessarily indicate genuine disagreement: if the two sides are construing a case differently, then both sides could be right about the case as each has understood it. ", "It may take work to show that there is genuine disagreement. ", "But assuming we find that there is genuine disagreement in 'a significant number of cases', then, according to Stich, we should refrain from using intuitions as evidence. ", "One crucial word here is 'significant': how extensive does disagreement need to be before our epistemic intuitions lack evidential value? ", "Those who expect intuition to be near--‐infallible might be disturbed by even a few instances of genuine disagreement. ", "But those who share my more moderate expectation that intuitions have some positive evidential value would need to encounter very extensive disagreement to undermine that expectation. ", "For present purposes, I adopt a minimal understanding of what it means for something to have evidential value: a signal has positive evidential value as long as it raises the probability of one's hypothesis. ", "On this understanding, to be legitimate sources of evidence, epistemic intuitions need to have a positive (not necessarily perfect) correlation with the epistemic facts. ", "But if using something as an evidential signal requires only that it is more likely to be right than wrong, then Stich's \"they can't both be right\" argument will have force only if disagreement on philosophically important cases is very widespread indeed. ", "Two individuals who find that they have a genuine disagreement cannot both be right; equally, if the majorities in two groups show a genuine disagreement then these majorities also cannot both be right. ", "However, not every finding of disagreement should undercut one's assumption that one is usually right. ", "For example, in a field of judgment in which every individual 4 was 95% accurate with 5% random error, anyone could expect that roughly 5% of the population would disagree with them on any given judgment, without threatening anyone's assumption of usually being right in this field. ", "A parallel point applies to groups. ", "Having some minority of disagreeing groups for any given judgment in some category is perfectly compatible with retaining the assumption that either one's own judgments or the judgments of one's own group are usually right in that category. ", "Stich's basic argument will undercut the use of intuitions as evidence only if we find that others are at least as likely to disagree as to agree. (", "Section 4 will discuss a further argument Stich advances.) ", "The basic argument relies on a finding of outright disagreement rather than simply variation in the strength of agreement: if the majority of various groups are in agreement, then finding that the majority is stronger in some group than others would not in itself undercut the practice of using intuitions as evidence, any more than the finding that some groups of people have better eyesight than others would strip vision of its legitimacy as a source of evidence. ", "In maintaining that intuitions lack evidential value, Stich is making a very strong claim: he needs to show that for philosophically interesting cases there is no significant correlation between intuitive assessments and the phenomena of interest. ", "Stich's own published experimental work does not support such a claim. ", "His 2001 paper reports eleven comparisons, the majority of which support my view rather than his.3 In seven of these comparisons (64%) the majority of participants in the contrasted groups were in agreement, and in four of these cases differences in the responses of the contrasted groups were statistically insignificant. ", "In addition, there were two comparisons in which one group (Indian Subcontinental; Low SES) responded at 50/50 to a case while the other group (Western, high SES) gave the 3 It is unfortunate that this paper discloses neither the total number of experimental participants nor the number of different ethnic groups tracked. ", "Without this information, it is not possible to calculate the relevant Bonferroni corrections (to offset the risk of false positive results, which rise as a linear function of the number of groups differentiated). ", "There were some ethnic groups whose group responses went unreported; apparently there were African American participants in the study, and they responded in a manner that was 'statistically indistinguishable from the WE sample' (Weinberg, p.c.). ", "5 standard philosophers' response. ", "There were only two reported comparisons (18% of the total) in which the contrasted groups disagreed, that is, where a majority of one reported group went one way, and a majority of the other reported group went the other way. ", "But it is only in comparisons of this last sort that Stich's question \"Why should we privilege our intuitions rather than the intuitions of some other group?\" ", "has real force. ", "Although actual group disagreement was reported only for two out of the eleven comparisons discussed, Stich would be within his rights to note that these two comparisons concerned a Gettier case, and to remind us that Gettier cases are important in contemporary epistemology. ", "However, we have reason to doubt that these particular results are robust. ", "WNS tested a single Gettier case (a puzzle involving American car brands) on a single multicultural pool of American undergraduates; they found that the majority of their East Asian and South Asian participants disagreed with the majority of their Western participants in responding to this case. ", "On their report this result was found in a single experiment; they did not test this case repeatedly, and they did not test other Gettier cases with different content. ", "At some points WNS qualify their claims about the significance of their Gettier case finding with a nod to the possibility that their results might not replicate: \"If these results are robust, then it seems that what counts as knowledge on the banks of the Ganges does not count as knowledge on the banks of the Mississippi!\" (", "2001, 444, emphasis added). ", "Later, however, such caution is dropped and WNS simply assert that while Western philosophers might intuitively judge that the agent of a Gettier case lacks knowledge, \"most of the world's population apparently does not share these intuitions\" (2001, 452). ", "This confidence seems premature, and further empirical examination seems entirely appropriate. ", "To my knowledge the WNS disagreement results have not been replicated by others. ", "Contrary to Stich's claim that we replicated his result, the majority of our South and East Asian participants gave the standard knowledge--‐denying response on this case (Nagel, San Juan, & Mar, submitted). ", "John Turri also reports that experimental participants recruited from India were about 6 as likely as North Americans to give the standard knowledge--‐denying response to a Gettier case (Turri, MS). ", "In summary, Stich and colleagues have not presented robust evidence supporting their claim that intuitions lack evidential value. ", "If we take all of the cases tested in their 2001 paper to be 'philosophically interesting cases', the crucial empirical premise in their argument from disagreement lacks empirical support even on their own showing. ", "If we restrict ourselves to Gettier cases, Stich's position is supported only by one result which has failed to replicate. ", "This is a thin basis on which to make claims about what 'the majority of the world's population' are capable of recognizing intuitively. ", "2. ", "For present purposes I take no position on the extent to which the capacity to recognize knowledge is culturally transmitted. ", "I will however observe that finding a capacity is culturally transmitted does not entail that this capacity will deliver responses that are generally inaccurate. ", "Given the importance of mental state ascription in human communication and cooperation, it is not hard to think of reasons why there would be pressures towards accuracy in epistemic intuition in any culture-pressures to produce intuitions that knowledge is present when knowledge is in fact present. ", "If various cultures have culturally specific ways of learning about the presence and absence of knowledge, there is no inconsistency between allowing the possibility of variation in the quality of this cultural training and expecting all cultures to do a better than random job of recognizing the presence and absence of knowledge. ", "The charitable assumption that all cultures are broadly on target in their intuitive epistemic judgments is supported by a variety of different types of evidence, some of which will be reviewed in the section on mindreading. ", "But one striking piece of evidence should be mentioned at the start: the recognition of knowledge is a cross--‐cultural universal at least in the sense that the distinction between knowledge and mere belief is marked in all cultures. ", "Verbs meaning KNOW and THINK (in 7 the sense that embeds a propositional complement) are found in the core vocabularies of all of the languages listed in the World Loanword Database, a resource covering a variety of languages from all inhabited continents (Haspelmath & Tadmor, 2009). ", "These verbs are furthermore held to be lexical universals, appearing on the surprisingly short list of words said to have a precise (and typically one--‐word) equivalent in all natural languages (Goddard, 2010). ", "KNOW and THINK are not universal in virtue of some status as rare technical terms: they occur with great frequency, appearing as the 8th and 12th most common verbs in English, and enjoying a roughly comparable ranking in other languages I have examined. ", "Of course it is controversial, in the context of a discussion of the accuracy of epistemic intuitions, to claim that we really do have a precise equivalent for KNOW in all natural languages, but it is striking that research programs dedicated to finding the limits of cross--‐cultural variation in the lexicon have isolated this term as a candidate for universality. ", "Radical inter--‐cultural disagreement about knowledge would make it difficult to defend any term as an equivalent for KNOW in the languages of the disagreeing cultures. ", "A simple explanation for the universality and frequency of KNOW is that it picks out an important feature of human social reality: on this view, human beings are generally capable of gaining knowledge, and of recognizing its presence and absence in others. ", "The cross--‐linguistic universality of KNOW is compatible with considerable culturally correlated variation in what is said about knowledge. ", "Even when they share a single concept of knowledge, different cultures and individuals could be expected to assign different extensions to this concept, given differences in background beliefs and local circumstances. ", "Individuals with different political orientations may disagree about which websites or newspapers are better sources of knowledge. ", "There may be specific means of generating knowledge that are familiar within some cultures but not others, such as the transmission of knowledge via electronic mail. ", "Superficial differences of these kinds should not bar epistemologists from using intuitive judgments 8 to study the deeper structural features of knowledge, although epistemologists might need to know about the relevant local conditions in designing stimuli and interpreting intuitive responses. ", "An understanding of the relationship between superficial differences and deeper similarities is relevant to the parallel Stich draws between linguistic and epistemic intuitions. ", "He observes that his own intuitions about grammaticality are 'somewhat different from the intuitions of a speaker of AAVE (African American Vernacular English) and radically different from those of a monolingual Tagalog speaker' (p.9); he then suggests that I must be supposing that the mindreading capacity does not exhibit this kind of variation. ", "Introducing the label 'universal in the strong sense' for capacities that do not exhibit the kind of variation shown in the language capacity, Stich claims that my position requires that mindreading should be 'universal in the strong sense', adding that he sees my view as holding that 'it is not enough that people in all cultures engage in mindreading, they have to do it in the same way' (ibid.). ", "As far as the main point is concerned, I should emphasize again that my position is not that there could be no cross--‐cultural variation in epistemic intuition, although I dispute Stich's claims to have found robust evidence of this variation. ", "I am also not committed to the notion that all cultures engage in mindreading 'in the same way': cultures can tend to converge in their judgments despite taking different paths to them. ", "It is also compatible with my position that there could be culturally correlated variation in the accuracy of epistemic intuition: some cultures could be more accurate than others, just as women are more accurate than men in certain color judgments. ", "However, the parallel with language is potentially useful in supporting my position. ", "The English speaker and the Tagalog speaker do not disagree with each other about the acceptability of English sentences; the Tagalog speaker has no relevant intuitions on those stimuli. ", "The various intuitions of these two groups, however, can be studied together in order to generate a deeper understanding of the shared constraints and composition principles structuring the human capacity for language. ", "In a similar 9 spirit, epistemologists can study the structural similarities appearing in epistemic intuitions across cultures. ", "If epistemic intuitions generally have evidential value, we can profit directly from intuition--‐ driven epistemology from other cultures. ", "For example, we can take Gangesa's 14th--‐century causal theory of knowledge-a theory often guided by intuitions about particular cases (Phillips & Tatacharya, 2004)-to share the basic aim of Goldman's 20th--‐century causal theory of knowledge. ", "We may even discover that the medieval Indian version of the theory outperforms the newer version in certain respects (cf. ", "Dasti & Phillips, 2010). ", "If Stich is right to think that intuition--‐driven epistemology is a 'culturally local endeavor', then we would have little to gain from looking at epistemology executed outside our own culture. ", "On such a view there would be little more than anthropological value in reading Gangesa's discussion of a case involving a belief based on the testimony of a \"perceptually deluded deceiver\", who says, truly, \"there is a pot there\", despite believing that what he says is false (Phillips & Tatacharya, 2004, 182). ", "On a view which accords evidential value to epistemic intuitions across cultures, Gangesa's discussion of this case could be as valuable to our understanding of testimonial knowledge transmission as Jennifer Lackey's recent discussion of a roughly parallel case (Lackey, 2008). ", "Indeed, there could be some special value in studying the similarity of the theoretical moves that emerge in two independent epistemological traditions in reaction to such a case. ", "3. ", "I have argued that Stich has failed to produce robust evidence of disagreement in epistemic intuitions, leaving the crucial empirical premise of his basic argument unsupported. ", "The WNS case against intuitions is not based solely on their own findings, however. ", "In addition, they lay out a two--‐part story about the mechanisms that they take to underlie cross--‐cultural differences in epistemic intuition: (1) they speculate that epistemic intuitions are generated within cultures to endorse local strategies of reasoning and belief formation, and (2) they argue that local strategies 10 are indeed problematically different across cultures, appealing to the work of Nisbett and Norenzayan on \"East--‐West\" differences in reasoning. ", "It is not clear what motivates suggestion (1), the suggestion that epistemic intuitions are inherently parochial and conservative in their function. ", "There is at least a prima facie tension between this claim and the observation that most philosophers previously committed to a JTB theory shared the surprising intuition that Gettiered subjects lack knowledge. ", "In my opinion, the fact that this intuition was antecedently unexpected is an illustration of the evidential value of intuition in epistemology: intuition can serve to rebut even entrenched theories. ", "In order to apply the cultural chauvinism model of epistemic intuitions to explain the responses of Gettier's audience to his examples, one would need to supply some auxiliary hypotheses about what factors could have served to outweigh any cultural pressure they might have experienced as a result of their adherence to the JTB theory. ", "WNS offer no explanation of how their cultural chauvinism model would apply in this case. ", "However, assuming strictly for the sake of argument that epistemic intuitions are in fact generally produced to support local strategies of reasoning, and assuming that these strategies really are diverse, these intuitions could reflect this diversity. ", "Not every type of diversity would have to undercut the evidential value of epistemic intuitions for epistemology, however. ", "Some kinds of diversity would be innocuous: if one society were generally more trusting than another in their reception of testimony, for example, then some intuitions about the testimonial transmission of knowledge could differ between the two societies. ", "But this difference would not necessarily undercut the evidential value of epistemic intuitions across the board: many intuitions about inference, perception, Gettier cases and so forth could work the same way. ", "Depending on the magnitude of the differences related to testimony, even intuitions about the epistemology of testimony might be sufficiently similar to build a common epistemological theory of testimony 11 supportable by the intuitions of both cultures. ", "The hypothetical possibility of some diversity is not on its own a threat to the evidential value of intuitions. ", "WNS contend that there actually are local strategies of reasoning that are problematically diverse, citing the Nisbett program. ", "Briefly, Nisbett and colleagues maintain that there are qualitative differences in the reasoning of East Asians and Westerners, with East Asians favoring a \"holistic\" mode of thought and Westerners favoring an \"analytic\" mode of thought (Nisbett, Peng, Choi, & Norenzayan, 2001). ", "In their model, holistic approaches \"rely on experience--‐based knowledge rather than on abstract logic\", emphasize relationships between a focal object and the field, and are \"dialectical, meaning that there is an emphasis on change, a recognition of contradiction and of the need for multiple perspectives, and a search for the \"Middle Way\" between opposing propositions\". ", "Analytic thought is defined as \"involving detachment of the object from its context\", and \"the use of formal logic, and avoidance of contradiction\" (ibid., ", "293). ", "The claim that East Asians rely on \"experience--‐based knowledge\" is presumably not to be taken as an indication that Westerners never do this; such claims are most charitably interpreted as describing differences in emphasis and prevalence, and indeed Nisbett and colleagues are sometimes careful to note that members of either culture have capacities for formal logic and heuristic thinking, and so forth. ", "Formal logic and heuristic thinking are not generally opposed to each other; they often apply to different problems (e.g. explicit inference, face recognition) and even when a single problem can be tackled by either, they do not typically issue conflicting verdicts, or verdicts whose status as knowledge is obviously different (Nagel, 2011). ", "The most striking point of conflict between the Nisbett program's two systems concerns attitudes to contradiction, so it is worth taking a closer look at what the program says on this point. ", "Two types of evidence were presented to support the view that East Asians were more tolerant of contradiction. ", "The first concerned responses to dialectical proverbs such as \"too humble is half proud\" and \"beware of your friends, not your enemies\" as contrasted with proverbs lacking such 12 paradoxical flair (\"one against all is certain to fall\"). ", "The Asian participants in Peng and Nisbett's study liked the dialectical proverbs more than their American counterparts did, while having similar attitudes to the other proverbs (K. Peng & R. E. Nisbett, 1999). ", "This particular finding has not held up: later researchers attempted to reduplicate it using the same stimuli and did not find a statistically significant difference between Asians and Americans, with both groups showing similar preferences for dialectical over non--‐dialectical proverbs (Friedman, Chen, & Vaid, 2006). ", "The second line of evidence advanced for tolerance of contradiction involved the evaluation of various diverse statements of opinion on social issues. ", "Chinese participants showed a stronger tendency to rate conflicting statements as equally plausible, in the mid--‐range of a 1--‐5 scale, where the American participants tended to take sides, favouring one statement at the expense of the other (K. Peng & R. Nisbett, 1999). ", "Peng and Nisbett concluded that the Americans were following a rule that \"if there is an apparent contradiction between two opposing perspectives, one must be right and the other must be wrong ... consistent with the laws of noncontradiction and the excluded middle, you cannot have it both ways\", while the Chinese participants were guided by \"believing that both sides of a contradiction might be right\", following \"the dialectical epistemology, which advocates tolerance of seeming contradiction\" (K. Peng & R. Nisbett, 1999, 749). ", "Various objections might be raised against this interpretation of the data. ", "One might note that the Chinese participants certainly did not tolerate contradiction by assigning high plausibility to mutually incompatible statements. ", "Because there is no inconsistency involved in distributing one's credence evenly over contrary opinions, both groups can be credited with avoidance of contradiction (cf. ", "Chan, 2000). ", "Rather than interpreting this pattern of responses as indicative of different attitudes to contradiction or fundamental qualitative differences in human reasoning, one could more plausibly see it as indicating cultural differences in open--‐mindedness on the particular social issues under discussion, or in the level of motivation the participants brought to the task. ", "13 In a comprehensive survey of the cross--‐cultural uniformity of human reasoning (Mercier, 2011), Hugo Mercier has argued that differences found here are best explained in terms of differences in motivation. ", "If the Western participants were more interested in the social topics selected by the American psychologist running the study, then they could be expected to invest the cognitive energy needed to take sides, a familiar result from the persuasion literature (Petty, Cacioppo, & Goldman, 1981). ", "Mercier argues that such differences in performance do not point to qualitative differences in underlying rational capacities, but to more superficial factors affecting activation of one system or the other in particular experimental contexts. ", "These factors apply across the East--‐West divide. ", "Independent experimental work has lent further support to the thesis that across ethnic groups, cognitive effort gets applied when there is some incentive to apply it. ", "The same factors work to shift Westerners and East Asians from more heuristic to more analytic ways of thinking (Zhou, He, Yang, Lao, & Baumeister, 2012). ", "Under similar conditions, similar tendencies towards analytic thinking are observed in both groups: Nisbett's claims that East Asians are generally weaker at formal logic and more prone to belief bias and hindsight bias have not stood up well under further empirical scrutiny (Lee, Johson--‐Laird, & Sun, 2006; Pohl, Bender, & Lachmann, 2002; Unsworth & Medin, 2005). ", "Some form of the division between a heuristic and an analytic mode of thought is now widely accepted in psychology (Evans, 2007; Frankish & Evans, 2009). ", "Even if it is not a product of cultural background, this divide might be considered epistemologically problematic: intuitions may differ when we change from one mode of thought to the other. ", "My own view is that intuitions do reflect such changes, and for this reason it is helpful to know about the differences between these modes of thought when interpreting the significance of various intuitions (Nagel, 2011). ", "The suggestion that some care is needed in interpreting intuitions does not entail that intuitions lack evidential value. ", "14 4. ", "Stich is certainly right to point out that there are variations in mindreading across cultures, and to observe that those who hold that mindreading is cross--‐culturally universal are not necessarily committed to the thesis that all aspects of mindreading are executed in just the same way in all cultures. ", "However, variation is some areas is compatible with uniformity in others: we may be uniform as far as epistemologically interesting distinctions are concerned, even if we are diverse in other ways. ", "Variation is also compatible with universality: I am not aware of robust evidence that we are cross--‐culturally varied with respect to core epistemological distinctions, but if we are, this would not entail that our epistemic intuitions generally lack evidential value. ", "What I am committed to is the thesis that intuitive knowledge attribution is cross--‐culturally universal-in mindreading, members of all cultures do actually attribute states of knowledge, and not just (say) states of belief and desire-and that the attribution of knowledge has not been shown to vary in ways that would eliminate the evidential value of epistemic intuitions in epistemology. ", "Of the diversity literature cited by Stich, Angelique Lillard's 1998 review article on cultural variation in mindreading is probably the best example to discuss, not least because it is also cited as the chief source on cultural diversity in the passages that Stich quotes from Callaghan and colleagues (2005) and from Scholl and Leslie (1999). ", "Lillard surveys a sweeping range of material from anthropology, philosophy, semiotics and psychology on diverse attitudes to the mind, emotions, beliefs about the supernatural and so forth. ", "Some of this material, if taken at face value, would indicate radical cross--‐cultural differences: for example, she reports Jane Fajans' (1985) claim that the Baining people of Papua New Guinea lack folk psychology altogether. ", "Although Lillard distances herself from Fajans in a footnote-\"the claim that they have none is probably too extreme\" (1998, 13)-she does endorse the idea that the Baining do not talk about mental states. ", "In a list of cultures Lillard reports as being \"said to view the mind as unknowable and unimportant\", the Baining appear alongside three other groups from Papua New Guinea (the Kaluli, Bimin--‐ Kuskusmin, the Ommura), plus the Zapotec people of Mexico, the Samoans and the Sherpas. ", "Lillard 15 summarizes the findings on these groups by saying, \"for all these cultures, one would guess that mental states are believed to exist; they are simply not a topic of conversation\" (1998, 13). ", "As evidence that these groups do not discuss mental states, Lillard cites sayings collected by various ethnographers, sayings such as the Kaluli people's \"One cannot know what another thinks and feels\", and the Zapotec \"We see the fact, but do not know what is in the heart\". ", "Given that these sayings themselves attribute mental states, it seems questionable to take them as evidence of a refusal to speak of mental states. ", "One might rather take them as acknowledgements of the difficulty of truly accurate mindreading, a difficulty also remarked upon by Western sages. ", "Broader evidence from the cultures in question-evidence not surveyed by Lillard-shows no shortage of explicit mental state attribution. ", "A collection of Zapotec memoirs, poems, folklore, speeches and political tracts shows ample overt discussion of states of knowing, thinking, wanting and feeling (Campbell, Binford, Barolome, & Barabas, 1993). ", "Baining and Kaluli songs and poetry are also rich in mental state references, although Fajans' report of an absence of folk psychology may be explained to some extent by evidence that members of both of these cultures show some reluctance to discuss their feelings with outsiders (Feld, 1990; Stebbins & Planigale, 2011). ", "Reference to mental states cannot be completely uncommon with outsiders, however; Arthur Capell's early handwritten lexicon of the Baining language includes only a few dozen verbs, but the verb meaning 'know' is the 9th on this list (Capell, 1930). ", "The Bimin--‐Kuskusmin of Papua New Guinea also make heavy use of verbs of thinking, knowing and feeling in describing human interactions (Poole, 1985). ", "Lillard's observations on diversity in the mental state lexicon are questionable. ", "She contends that the Chewong (or Ceq Wong) people of Malaysia are \"lacking a lexicalized word for think\" (1999, 14), citing the work of Signe Howell, whose study of these people led her to identify only five mental state words, including a word for KNOW but none for THINK (Lillard, 1998, 14). ", "More recent research suggests an oversight on Howell's part rather than a deviation on the part of 16 the Chewong from cross--‐cultural norms: a 956--‐word core vocabulary list for the language does show a word for THINK, in the sense that embeds a sentential complement (Kruspe, 2009). ", "Differences between Japanese and European American thinking about the mind are highlighted in Lillard's article. ", "Citing the work of Yoshihiko Ikegami, Lillard discusses linguistic differences in Japanese as a point at which \"habitual use of a given language might even lead one to consider people in language specific ways\" (1998, 5), and argues that the Japanese view of the mind offers \"an entirely different conceptual landscape\"; something that is \"clearly different from the EASSM [European American Social Science Model] of the mind, not simply a difference in emphasis\" (1999, 12). ", "Such claims are difficult to reconcile with more recent empirical work on mental state attribution showing strong similarities in mental state attribution between Japanese and Western cultures. ", "For example, a study of Japanese and American children's literature shows mental state reference occurring heavily (every 1--‐2 sentences) and at statistically indistinguishable rates in the two cultures, with 9 out of the 11 most common emotional and cognitive state verbs (including 'know' and 'think') the same in the two languages (Dyer--‐Seymour, Shatz, Wellman, & Saito, 2004). ", "Neuroimagining studies show a few differences in the neural implementation of mental state attribution between monolingual Americans and bilingual Japanese people, but no differences in the accuracy of their performance, either for children or adults, and even on some relatively complex problems (Kobayashi, Glover, & Temple, 2006, 2007). ", "Lillard's article also discusses differences in popular beliefs about matters such as immortality and ghosts, and differences concerning the proper objects of emotions such as shame, and the categorization of various emotions in different cultures. ", "Although much of this work is interesting, I agree with the conclusion Wellman reaches in his criticism of Lillard, in the passage cited by Stich (at p.12 of his Reply): \"theory of mind research is pitched, fundamentally, at attempting to capture deeper core construals\". ", "Wellman holds that this effort \"would not be 17 derailed by the evidence Lillard (1998) amassed\" (Wellman, 1998, 34); I take epistemology to be equally concerned with the deeper core. ", "Stich cites a number of authors who agree that the common basic core of mindreading is universal. ", "However, he does not accept that knowledge attribution is a product of the common basic core. ", "This is puzzling: most psychologists list knowledge as a mental state, alongside states of belief, desire and feeling (for a review, see Nagel, forthcoming). ", "Knowledge attribution appears very early in human development: in the acquisition of the mental state lexicon, the verb 'know' is used earlier and more heavily than the verb 'think' (Bartsch & Wellman, 1995; Shatz, Wellman, & Silber, 1983). ", "The precedence of 'know' over 'think' is apparent in languages such as Mandarin and Cantonese as well as English (Tardif & Wellman, 2000). ", "Stich grants that there is 'an emerging consensus that the capacity to pass the false belief task is a human universal' (p.10), but goes on to remark that 'of course, the mere capacity to pass the false belief task does not by itself enable a person to attribute knowledge in the way (or ways) that adults do; indeed it doesn't enable a person to attribute knowledge at all' (p.11). ", "I am not sure whether some theoretical being could pass the false belief task without being able to attribute knowledge, but human beings do not seem to do so. ", "In the classic false belief task the child sees an agent (\"Maxi\") putting his chocolate in the cupboard, and then watches someone else shift the chocolate to a drawer while Maxi is absent (Wimmer & Perner, 1983). ", "Children are asked where Maxi will look for the chocolate when he returns, and are credited with passing when they say that Maxi will think the chocolate is in the cupboard, unaware of the transfer that took place when he was absent. ", "But more directly, children have been asked whether Maxi knows that the chocolate is in the drawer. ", "This question about knowledge is answered significantly earlier than the question about false belief: across cultures, the capacity to distinguish knowledge from 18 ignorance seems to be a precondition of the capacity for explicit false belief attribution (Hogrefe, Wimmer, & Perner, 1986; Wellman, 2006; Wellman & Liu, 2004).4 Cross--‐cultural work on the false belief test shows that there is early development along parallel lines not only for explicit false belief, but also for knowledge attribution, even across languages that are otherwise quite different in their mental state lexicon, for example languages with a dedicated false belief verb (Shatz, Diesendruck, Martinez--‐Beck, & Akar, 2003). ", "However, one might worry about later development: a mature understanding of inference as a source of knowledge, for example, is not in place until later in childhood (Sodian & Wimmer, 1987). ", "A child who can tell that Maxi does not know the chocolate is in the drawer may well be unable to evaluate a complex Gettier case involving inference. ", "Stich observes that authors strongly committed to a uniform common core of ascribed mental states also allow that there is diversity in the later application of these states. ", "Should existing work on diversity in mature mental state ascription lead us to expect extensive cross--‐cultural disagreement on cases of interest to epistemologists? ", "Ian Apperly's work is relevant here because he has emphasized the importance of looking beyond early development to adult mental state ascription. ", "Before examining his review of work on that frontier, it will be helpful to clarify his position on early development. ", "As Stich observes, Apperly distinguishes between lower--‐level and higher--‐level mindreading and holds lower--‐level mindreading to be cross--‐culturally universal and shared by non--‐human primates. ", "Stich is also right to point out that Apperly sees lower--‐level mindreading as involving only a crude, non--‐propositional approximation of the concept of knowledge-although Apperly has been criticized on this score (e.g. in Carruthers, 2013). ", "But the fact that this rudimentary form of mindreading is described as universal does not imply that Apperly takes all higher--‐level mindreading to be culturally disparate. ", "4 One plausible reason why knowledge attribution would be a precondition of belief attribution is that knowledge is computationally simpler, from the perspective of the ascriber. ", "Knowledge is a mental state that essentially reflects how things are; belief is a mental state which may or may not align with reality. ", "A more detailed discussion of the issues here, especially in light of work on \"implicit false belief recognition\" in infants, is a project for another occasion. ", "19 In particular, any task involving explicit judgment is higher--‐level; this includes the knowledge vs. ignorance and explicit false belief tasks that developmental psychologists accept as cross--‐culturally uniform (2011, 154). ", "For Apperly, both the infant's (lower--‐level) implicit recognition of a knowledge--‐like state, and the four--‐year--‐old's explicit (higher--‐level) attribution of knowledge to Maxi will be cross--‐culturally universal. ", "Stich is right that Gettier case intuitions will not be the product of a low--‐level processing module, but wrong to claim that \"Apperly's account of mindreading lends no support at all to the claim that the output of the mindreading system-the judgments it generates-will be cross--‐culturally universal when those judgments are attributions of knowledge, or when they are the attribution of any other mental state\" (16). ", "Explicit knowledge attributions on the standard mindreading tasks passed by four--‐year--‐olds are both higher--‐level and cross--‐culturally uniform. ", "Cross--‐cultural uniformity in the elementary knowledge attributions of standard mindreading tasks could nevertheless leave open the possibility of problematic diversity later on. ", "Apperly observes that mindreading development continues in later childhood, mentioning as an example studies of 6--‐9 year olds' developing understanding of sarcasm and social blunders. ", "But Apperly does not take the more advanced abilities of older children to show that they have different concepts of knowledge and belief. ", "According to Apperly, the relevant changes in performance are traced to social expertise in applying existing concepts, rather than conceptual evolution; indeed, he contends that \"it is not at all clear what would count as a more sophisticated concept of mental states than the concept of beliefs as mental representations that is routinely ascribed to young children who pass false belief tasks\" (2011, 161). ", "Variations in social expertise can certainly affect the accuracy of mindreading. ", "Stich is right to note that Apperly puts significant emphasis on the role of \"social scripts and schemas\" in supporting mature mental state ascription. ", "Appperly sees mindreading as a problem that might look computationally intractable at first (anyone could think or want anything!); ", "in practice, he 20 thinks social scripts and schemas work to aid mindreading by narrowing down the range of plausible mental states in a given situation. ", "Social scripts not only \"encode information about what people typically think, know, want and intend in particular situations\" (2011, 129), but also help focus attention on the details of the situation most likely to be relevant. ", "But the relevance of social knowledge to mindreading does not entail deep cross--‐cultural disagreement. ", "In a passage on the difficulty of mindreading in an unfamiliar culture, Apperly stresses the universality of the basic structure of mental states: \"We can presume that people in all cultures operate on the same fundamental principles – we are all sentient, we all have knowledge, beliefs, desires and intentions, and these mental states interact in essentially similar ways\" (2011, 165). ", "In trying to show that Apperly's account \"does not suggest that adults in different cultural groups will agree in their knowledge attributions\" Stich cites Apperly's discussion of the parallel between mindreading and number cognition, which is also thought to split into lower--‐ and higher--‐ level processes. ", "One of the lower--‐level processes is an analog function (the ANS or Approximate Number System) which allows the swift estimation of large sets of items, enabling a person to judge at a glance which of two arrays contains more dots, for example. ", "Apperly notes that the performance of this function is variable, with greater accuracy among children who are better at 'high--‐level' symbolic number problems; he allows that 'it may well be that similar effects will be found for mindreading' (2011, 164). ", "However, this performance variation in the ANS is not the kind of variation that would undercut the evidential value of its deliverances: to say that those who are better at symbolic number problems may give better estimates is not to concede that such estimates lack evidential value. ", "It is not the case that the less skilled generally disagree with the more skilled in their ANS estimations (Mundy & Gilmore, 2009). ", "If mindreading is varied in the same way that numerical cognition is, then the evidential status of mindreading is in great shape. ", "If we are not generally skeptical about intuitive capacities, then we need specific reasons to discount their deliverances as evidentially worthless. ", "Rather than speculating about the sheer 21 possibility of problematic types of disagreement, one could examine existing work on these intuitive capacities and see if it tends to show commonplace variation in accuracy, or deep and extensive disagreement. ", "As far as I can tell, existing cross--‐cultural work on mindreading shows accuracy variation while stressing the absence of deep disagreement. ", "For example, in a recent study of the relationship between perspective taking and culture, Shali Wu and Boaz Keysar find significant cross--‐cultural differences between their Chinese and American participants: Chinese participants were swifter and more accurate in computing the perspective of a partner whose view of the scene was partially occluded. ", "However, they do not propose that there are differences in mindreading competence here: \"There is no reason to suspect that Chinese and Americans have a different understanding of the role of mental states in people's actions. ... ", "We make a distinction between having perspective--‐taking ability and using this ability .. It seems that culture has its effect here at the level of use, not ability.\" (", "Keysar et al., ", "2003). ", "Although they found American participants slower and less attentive, Wu and Keysar were clear that attentive participants of either culture were fully capable of executing the mindreading task, and that they were exercising a similar competence in so doing. ", "Research of this kind does not suggest fundamental cross--‐cultural disagreement in knowledge attribution. ", "5. ", "On what Stich describes as his \"uncharitable interpretation\" of my practice, I selectively discard data that are inconsistent with my view, accepting only what I \"like\", and seeking performance failure explanations elsewhere. ", "There's something right about this. ", "I do, for example, like an article which reports no gender variation in responses to a Gettier case (Wright, 2010) more than I like a conference presentation that claims otherwise (Starmans & Friedman, 2009). ", "But such feelings are not caprice on my part: evidence always needs to be evaluated against a background of prior knowledge, and here it matters that we have a very robust body of evidence showing an absence of significant gender variation in normal adult mindreading. ", "Given this prior knowledge, contrary 22 experimental results are likely to indicate a fluke or problem with the experiment, as indeed seems to have been the case. ", "I was not surprised when a more recent article by the authors of the 2009 presentation reported no gender differences in Gettier case recognition. ", "Significant new evidence can of course come to change one's background views, but it is not rational to treat all announced findings as equally plausible. ", "I am puzzled by the suggestion that my data fail to support my view, insofar as they show mere majority agreement, rather than perfect consensus, on philosophically standard intuitions. ", "Given that my view is that intuitions have positive evidential relevance, data showing more than chance agreement do support my view. ", "When the hammer hits the ground before the feather, Newtonians do not have to abandon their account of gravitational attraction, nor do they have to throw out the data. ", "Positing the existence of gravity is consistent with allowing the existence of air resistance. ", "Positing a general human capacity to recognize the presence and absence of knowledge is consistent with recognizing that it may be imperfectly exercised, and imperfectly tested. ", "Stich is right to observe that my theories about these imperfections are hesitant and speculative; however clear the signal is, I don't yet have a full theory of all the various sources of noise. ", "Coming up with a theory would require very detailed work. ", "It would be nice to know more about the imperfections; indeed some of my own work has been directed at figuring out what they are, and how they matter to epistemology. ", "But it would be stultifying to proceed on the principle that all variation from a majority response must be explained before we can take the majority response to have significance. ", "If Stich would like to do epistemology without relying on intuitions about knowledge, he is very welcome to try to do so, but I do not think he has supplied the rest of us with good reasons to stop using epistemic intuitions as evidence.5 5 For discussion and comments I am grateful to Jane Friedman, Mohan Matthen, Amia Srinivasan, Jason Stanley, Sergio Tenenbaum, Jonathan Weisberg, Tim Williamson, and participants in the NEH Summer Seminar on Experimental Philosophy at the University of Arizona. ", "23 Protected citations: References Alexander, J., & Weinberg, J. M. (2007). ", "Analytic epistemology and experimental philosophy. ", "Philosophy Compass, 2(1), 56--‐80. ", "Apperly, I. (2011). ", "Mindreaders: The Cognitive Basis of \"Theory of Mind\". ", "Hove and New York: Psychology Press. ", "Bartsch, K., & Wellman, H. (1995). ", "Children talk about the mind. ", "New York: Oxford University Press. ", "Callaghan, T., Rochat, P., Lillard, A., Claux, M. L., Odden, H., Itakura, S., Tapanya, S., & Singh, S. (2005). ", "Synchrony in the Onset of Mental State Reasoning. ", "Psychological Science, 16(5), 378--‐384. ", "Campbell, H., Binford, L., Barolome, M., & Barabas, A. (Eds.). (", "1993). ", "Zapotec struggles: histories, politics, and representations from Juchitan, Oaxaca. ", "Washington: Smithsonian Institute Press. ", "Capell, A. (1930). ", "Black note book #2: worterverzeichnis auf Baining. ", "OLVOC. ", "Available: http://paradisec.org.au/fieldnotes/image_viewer.htm?OLVOC201,2. ", "Carruthers, P. (2013). ", "Mindreading in infancy. ", "Mind & Language. ", "Chan, S. F. (2000). ", "Formal logic and dialectical thinking are not incongruent. ", "American Psychologist, 55(9), 1063--‐1064. ", "Dasti, M., & Phillips, S. H. (2010). ", "Pramāṇa Are Factive-: A Response to Jonardon Ganeri. ", "Philosophy East and West, 60(4), 535--‐540. ", "Dyer--‐Seymour, J., Shatz, M., Wellman, H., & Saito, M. (2004). ", "Mental state expressions in US and Japanese children's books. ", "International Journal of Behavioral Development, 28(6), 546--‐552. ", "Evans, J. (2007). ", "Dual--‐processing accounts of reasoning, judgment, and social cognition. ", "Annual Review of Psychology, 59, 255--‐278. ", "Fajans, J. (1985). ", "The person in social context: The social character of Baining \"psychology\". ", "In G. White & J. Kirkpatrick (Eds.), ", "Person, self, and experience: Exploring Pacific ethnopsychologies (pp. ", "367--‐397). ", "Berkeley: University of California Press. ", "Feld, S. (1990). ", "Sound and sentiment: Birds, weeping, poetics, and song in Kaluli expression (Vol. ", "5). ", "Philadelphia: Univ of Pennsylvania Pr. ", "Frankish, K., & Evans, J. (2009). ", "The duality of mind: an historical perspective. ", "In K. Frankish & J. Evans (Eds.), ", "In Two Minds: Dual Process Theory and Beyond (pp. ", "1--‐29). ", "Oxford: Oxford University Press. ", "Friedman, M., Chen, H. C., & Vaid, J. (2006). ", "Proverb preferences across cultures: Dialecticality or poeticality? ", "Psychonomic Bulletin & Review, 13(2), 353--‐359. ", "Goddard, C. (2010). ", "Universals and variation in the lexicon of mental state concepts. ", "In B. Malt & P. Wolff (Eds.), ", "Words and the Mind (pp. ", "72--‐93). ", "New York: Oxford University Press. ", "Haspelmath, M., & Tadmor, U. (2009). ", "World Loanword Database. ", "Max Planck Digital Library. ", "Available: http://wold.livingsources.org/. Hogrefe, G. J., Wimmer, H., & Perner, J. (1986). ", "Ignorance versus false belief: A developmental lag in attribution of epistemic states. ", "Child Development, 567--‐582. ", "Kobayashi, C., Glover, G. H., & Temple, E. (2006). ", "Cultural and linguistic influence on neural bases of \"Theory of Mind\": An fMRI study with Japanese bilinguals. ", "Brain and Language, 98(2), 210--‐220. ", "Kobayashi, C., Glover, G. H., & Temple, E. (2007). ", "Cultural and linguistic effects on neural bases of \"Theory of Mind\" in American and Japanese children. ", "Brain research, 1164, 95--‐107. ", "Kruspe, N. (2009). ", "Ceq Wong vocabulary. ", "Max Planck Digital Library. ", "Available: http://wold.livingsources.org/vocabulary/26 [2012, 08--‐24]. ", "Lackey, J. (2008). ", "Learning from words: Testimony as a source of knowledge: Oxford University Press, USA. ", "Lee, N. Y. L., Johson--‐Laird, P., & Sun, R. (2006). ", "Are there cross--cultural differences in reasoning? ", "Paper presented at the Proceedings of the 28th Annual Cognitive Science Conference, Vancouver. ", "Lillard, A. (1998). ", "Ethnopsychologies: Cultural variations in theories of mind. ", "Psychological Bulletin, 123(1), 3--‐ 32. ", "Mercier, H. (2011). ", "On the universality of argumentative reasoning. ", "Journal of Cognition and Culture, 11(1--‐2), 85--‐113. ", "Mundy, E., & Gilmore, C. K. (2009). ", "Children's mapping between symbolic and nonsymbolic representations of number. ", "Journal of Experimental Child Psychology, 103(4), 490--‐502. ", "Nagel, J. (2010). ", "Knowledge ascriptions and the psychological consequences of thinking about error. ", "Philosophical Quarterly, 60(239), 286--‐306. ", "Nagel, J. (2011). ", "The psychological basis of the Harman--‐Vogel paradox. ", "Philosophers' Imprint, 11(5), 1--‐28. ", "24 Nagel, J. (2012a). ", "Intuitions and Experiments: A defense of the case method. ", "Philosophy and Phenomenological Research. ", "Nagel, J. (2012b). ", "Mindreading in Gettier cases and skeptical pressure cases. ", "In J. Brown & M. Gerken (Eds.), ", "Knowledge Ascription (pp. ", "171--‐191). ", "Oxford: Oxford University Press. ", "Nagel, J. (forthcoming). ", "Knowledge as a Mental State. ", "Oxford Studies in Epistemology. ", "Nagel, J., San Juan, V., & Mar, R. (submitted). ", "Lay Denial of Knowledge for Justified True Beliefs. ", "Nisbett, R., Peng, K., Choi, I., & Norenzayan, A. (2001). ", "Culture and systems of thought: Holistic versus analytic cognition. ", "Psychological Review, 108(2), 291--‐310. ", "Peng, K., & Nisbett, R. (1999). ", "Culture, dialectics, and reasoning about contradiction. ", "American Psychologist, 54(9), 741--‐754. ", "Peng, K., & Nisbett, R. E. (1999). ", "Culture, dialectics, and reasoning about contradiction. ", "American psychologist, 54(9), 741. ", "Petty, R., Cacioppo, J., & Goldman, R. (1981). ", "Personal involvement as a determinant of argument--‐based persuasion. ", "Journal of personality and social psychology, 41(5), 847--‐855. ", "Phillips, S. H., & Tatacharya, N. (2004). ", "Epistemology Of Perception: Gangesa's Tattvacintamani, Jewel of Reflection on the Truth (About Epistemology). ", "New York: American Institute of Buddhist Studies. ", "Pohl, R. F., Bender, M., & Lachmann, G. (2002). ", "Hindsight bias around the world. ", "Experimental Psychology, 49(4), 270--‐282. ", "Poole, F. J. P. (1985). ", "Coming into social being: Cultural images of infants in Bimin--‐Kuskusmin folk psychology. ", "Person, self, and experience: Exploring Pacific ethnopsychologies, 183--‐244. ", "Scholl, B. J., & Leslie, A. M. (1999). ", "Modularity, development and 'Theory of mind'. ", "Mind & Language, 14(1), 131--‐153. ", "Shatz, M., Diesendruck, G., Martinez--‐Beck, I., & Akar, D. (2003). ", "The influence of language and socioeconomic status on children's understanding of false belief. ", "Developmental Psychology; Developmental Psychology, 39(4), 717. ", "Shatz, M., Wellman, H. M., & Silber, S. (1983). ", "The acquisition of mental verbs: A systematic investigation of the first reference to mental state. ", "Cognition, 14(3), 301--‐321. ", "Sodian, B., & Wimmer, H. (1987). ", "Children's understanding of inference as a source of knowledge. ", "Child Development, 58(2), 424--‐433. ", "Starmans, C., & Friedman, O. (2009). ", "Is Knowledge Subjective? ", "A Sex Difference in Adults. ", "Paper presented at the 6th Biennial Meeting of the Cognitive Development Society, San Antonio, Texas. ", "Stebbins, T., & Planigale, M. (2011). \"", "Explaining the Unknowable\": Accessibility of Meaning and the Exegesis of Mali Baining Songs. ", "Australian Journal of Linguistics, 30(1), 141--‐154. ", "Stoltz, J. (2007). ", "Gettier and Factivity in Indo--‐Tibetan Epistemology. ", "The Philosophical Quarterly, 57(228), 394--‐415. ", "Tardif, T., & Wellman, H. M. (2000). ", "Acquisition of mental state language in Mandarin--‐and Cantonese--‐ speaking children. ", "Developmental Psychology, 36(1), 25. ", "Turri, J. (MS). ", "A conspicuous art: putting Gettier to the test. ", "Unsworth, S. J., & Medin, D. L. (2005). ", "Cultural differences in belief bias associated with deductive reasoning? ", "Cognitive Science, 29(4), 525--‐529. ", "Weinberg, J. S., Nichols, S., & Stich, S. (2001). ", "Normativity and Epistemic Intuitions. ", "Philosophical Topics, 29(1), 429--‐460. ", "Wellman. (", "2006). ", "Scaling of theory--‐of--‐mind understandings in Chinese children, Psychological science (Vol. ", "17, pp. ", "1075). ", "Wellman, H. M. (1998). ", "Culture, variation, and levels of analysis in folk psychologies: Comment on Lillard (1998). ", "Wellman, H. M., & Liu, D. (2004). ", "Scaling of Theory of Mind Tasks. ", "Child Development, 75(2), 523--‐541. ", "Wimmer, H., & Perner, J. (1983). ", "Beliefs about beliefs: Representation and constraining function of wrong beliefs in young children's understanding of deception. ", "Cognition, 13(1), 103--‐128. ", "Wright, J. C. (2010). ", "On intuitional stability: The clear, the strong, and the paradigmatic. ", "Cognition, 115(3), 491--‐503. ", "Zhou, X., He, L., Yang, Q., Lao, J., & Baumeister, R. F. (2012). ", "Control deprivation and styles of thinking. ", "Journal of personality and social psychology, 102(3), 460--‐478." ]
{ "pile_set_name": "PhilPapers" }
[ 0.009478672985781991, 0, 0.013123359580052493, 0, 0, 0, 0, 0.0078125, 0, 0, 0.004987531172069825, 0.027777777777777776, 0.008849557522123894, 0, 0, 0, 0, 0, 0, 0, 0.0025974025974025974, 0.00851063829787234, 0, 0, 0, 0, 0, 0, 0, 0.005847953216374269, 0, 0, 0, 0, 0, 0.00390625, 0, 0, 0, 0, 0, 0.006756756756756757, 0.01694915254237288, 0, 0.004032258064516129, 0.014084507042253521, 0, 0, 0.004672897196261682, 0, 0, 0, 0.006289308176100629, 0, 0.010869565217391304, 0, 0.006734006734006734, 0.005952380952380952, 0.009174311926605505, 0, 0.007782101167315175, 0, 0.012345679012345678, 0.004807692307692308, 0.010050251256281407, 0.007692307692307693, 0, 0.016260162601626018, 0, 0, 0, 0, 0, 0, 0, 0, 0.014035087719298246, 0, 0.003937007874015748, 0.0027247956403269754, 0.005917159763313609, 0.0038910505836575876, 0.0070921985815602835, 0, 0, 0, 0, 0.0056179775280898875, 0.0028653295128939827, 0.0025, 0.004081632653061225, 0, 0, 0, 0, 0, 0, 0, 0.012244897959183673, 0, 0.04, 0.005128205128205128, 0.006389776357827476, 0.007194244604316547, 0, 0, 0.005649717514124294, 0.011904761904761904, 0, 0, 0.009478672985781991, 0, 0.005952380952380952, 0.011111111111111112, 0, 0, 0, 0.004739336492890996, 0, 0, 0.015625, 0.010714285714285714, 0, 0.00641025641025641, 0, 0.0024509803921568627, 0.0029154518950437317, 0.005235602094240838, 0, 0, 0.009478672985781991, 0.006230529595015576, 0, 0.0036496350364963502, 0.005607476635514018, 0, 0, 0, 0, 0, 0.009523809523809525, 0.006825938566552901, 0.004098360655737705, 0, 0, 0.012903225806451613, 0.01358695652173913, 0.012987012987012988, 0, 0.004484304932735426, 0, 0, 0.003257328990228013, 0, 0, 0, 0.014492753623188406, 0.005263157894736842, 0.0043859649122807015, 0.004901960784313725, 0.010638297872340425, 0, 0.0036231884057971015, 0, 0, 0.007352941176470588, 0.004784688995215311, 0.006211180124223602, 0.004016064257028112, 0.006578947368421052, 0.012195121951219513, 0.013559322033898305, 0.010452961672473868, 0.008849557522123894, 0.008403361344537815, 0, 0.005208333333333333, 0.0029411764705882353, 0.004016064257028112, 0.011029411764705883, 0.005434782608695652, 0, 0, 0, 0.008298755186721992, 0.007194244604316547, 0, 0, 0.009389671361502348, 0.008547008547008548, 0.01, 0.004261363636363636, 0.005235602094240838, 0.013245033112582781, 0, 0, 0.006802721088435374, 0, 0.004975124378109453, 0.004081632653061225, 0, 0, 0, 0, 0, 0.009009009009009009, 0.002364066193853428, 0, 0, 0, 0, 0.0024390243902439024, 0, 0, 0, 0, 0, 0, 0, 0.006430868167202572, 0.0040650406504065045, 0, 0.0034965034965034965, 0.007575757575757576, 0, 0, 0, 0, 0.0056657223796034, 0, 0, 0, 0, 0.003875968992248062, 0, 0, 0.004424778761061947, 0, 0.014354066985645933, 0, 0, 0.006802721088435374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01996007984031936, 0.02631578947368421, 0, 0, 0.05, 0.018518518518518517, 0, 0.05714285714285714, 0, 0.02857142857142857, 0.04504504504504504, 0, 0, 0.015625, 0, 0, 0.024390243902439025, 0, 0, 0.14285714285714285, 0.013333333333333334, 0, 0, 0.058823529411764705, 0, 0, 0.023255813953488372, 0.02702702702702703, 0.03773584905660377, 0, 0.03125, 0, 0.014925373134328358, 0.05555555555555555, 0, 0.022727272727272728, 0.05263157894736842, 0, 0.08108108108108109, 0.014084507042253521, 0, 0.047619047619047616, 0.11764705882352941, 0.012195121951219513, 0, 0, 0.058823529411764705, 0, 0.029411764705882353, 0, 0, 0.06060606060606061, 0.043478260869565216, 0, 0.02040816326530612, 0.05, 0, 0.03333333333333333, 0, 0, 0.02857142857142857, 0, 0.04, 0.03571428571428571, 0.03260869565217391, 0, 0, 0.0392156862745098, 0, 0, 0.0392156862745098, 0, 0, 0.05263157894736842, 0.047619047619047616, 0.03571428571428571, 0.013888888888888888, 0, 0.011494252873563218, 0.05660377358490566, 0, 0.021052631578947368, 0.05, 0, 0, 0.05, 0, 0.01818181818181818, 0.05555555555555555, 0, 0.01639344262295082, 0.1111111111111111, 0, 0, 0.1111111111111111, 0, 0, 0.09090909090909091, 0, 0, 0.10526315789473684, 0.01694915254237288, 0.03125, 0, 0, 0.06060606060606061, 0.08, 0, 0.03125, 0.020833333333333332, 0, 0.08620689655172414, 0.014705882352941176, 0.024390243902439025, 0.03125, 0, 0.024390243902439025, 0.05714285714285714, 0, 0, 0.02127659574468085, 0, 0, 0.07142857142857142, 0.00909090909090909, 0.02, 0.020833333333333332, 0, 0.023255813953488372, 0.08333333333333333, 0, 0.01282051282051282, 0.02564102564102564, 0, 0.02857142857142857, 0.029411764705882353, 0, 0.015625, 0.0625, 0, 0, 0.06060606060606061, 0, 0, 0.02702702702702703, 0, 0, 0.00980392156862745, 0, 0, 0.018867924528301886, 0.10526315789473684, 0.037037037037037035, 0, 0.05405405405405406, 0, 0.02702702702702703, 0, 0.020833333333333332, 0.05, 0, 0.02702702702702703, 0.04, 0, 0, 0, 0, 0, 0, 0, 0.043478260869565216, 0.010869565217391304, 0.029411764705882353, 0.030303030303030304, 0, 0.030303030303030304, 0, 0, 0.09090909090909091, 0, 0, 0.07692307692307693, 0, 0 ]
0.011336
5
[ { "analysis_explanation": null, "end": 14, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 54, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38 }, { "analysis_explanation": null, "end": 440, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431 }, { "analysis_explanation": null, "end": 457, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450 }, { "analysis_explanation": null, "end": 484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 479 }, { "analysis_explanation": null, "end": 495, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 486 }, { "analysis_explanation": null, "end": 509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500 }, { "analysis_explanation": null, "end": 588, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583 }, { "analysis_explanation": null, "end": 1506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1501 }, { "analysis_explanation": null, "end": 1991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1986 }, { "analysis_explanation": null, "end": 1998, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1993 }, { "analysis_explanation": null, "end": 2240, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2233 }, { "analysis_explanation": null, "end": 2317, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2302 }, { "analysis_explanation": null, "end": 2403, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2399 }, { "analysis_explanation": null, "end": 2435, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2431 }, { "analysis_explanation": null, "end": 2472, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2467 }, { "analysis_explanation": null, "end": 3240, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3236 }, { "analysis_explanation": null, "end": 3247, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3242 }, { "analysis_explanation": null, "end": 3921, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3916 }, { "analysis_explanation": null, "end": 4471, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4467 }, { "analysis_explanation": null, "end": 4494, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4491 }, { "analysis_explanation": null, "end": 4517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4509 }, { "analysis_explanation": null, "end": 4572, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4567 }, { "analysis_explanation": null, "end": 4584, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4577 }, { "analysis_explanation": null, "end": 4589, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4585 }, { "analysis_explanation": null, "end": 5043, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5040 }, { "analysis_explanation": null, "end": 5570, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5565 }, { "analysis_explanation": null, "end": 5640, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5635 }, { "analysis_explanation": null, "end": 7171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7166 }, { "analysis_explanation": null, "end": 8371, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8366 }, { "analysis_explanation": null, "end": 8909, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8904 }, { "analysis_explanation": null, "end": 9177, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9173 }, { "analysis_explanation": null, "end": 9896, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9886 }, { "analysis_explanation": null, "end": 10136, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10120 }, { "analysis_explanation": null, "end": 10266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10258 }, { "analysis_explanation": null, "end": 10595, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10590 }, { "analysis_explanation": null, "end": 10819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10814 }, { "analysis_explanation": null, "end": 10901, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10894 }, { "analysis_explanation": null, "end": 10937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10930 }, { "analysis_explanation": null, "end": 11124, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11116 }, { "analysis_explanation": null, "end": 11179, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11171 }, { "analysis_explanation": null, "end": 11244, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11234 }, { "analysis_explanation": null, "end": 11260, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11249 }, { "analysis_explanation": null, "end": 11318, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11311 }, { "analysis_explanation": null, "end": 11607, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11600 }, { "analysis_explanation": null, "end": 11791, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11785 }, { "analysis_explanation": null, "end": 11851, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11840 }, { "analysis_explanation": null, "end": 11860, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11856 }, { "analysis_explanation": null, "end": 11964, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11957 }, { "analysis_explanation": null, "end": 12029, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12022 }, { "analysis_explanation": null, "end": 12133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12129 }, { "analysis_explanation": null, "end": 12334, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12329 }, { "analysis_explanation": null, "end": 12399, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12394 }, { "analysis_explanation": null, "end": 12414, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12404 }, { "analysis_explanation": null, "end": 12494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12489 }, { "analysis_explanation": null, "end": 12504, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12496 }, { "analysis_explanation": null, "end": 12535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12525 }, { "analysis_explanation": null, "end": 12600, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12595 }, { "analysis_explanation": null, "end": 12642, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12627 }, { "analysis_explanation": null, "end": 12741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12736 }, { "analysis_explanation": null, "end": 12902, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12898 }, { "analysis_explanation": null, "end": 14892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14875 }, { "analysis_explanation": null, "end": 14993, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14989 }, { "analysis_explanation": null, "end": 15199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15192 }, { "analysis_explanation": null, "end": 15205, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15201 }, { "analysis_explanation": null, "end": 15353, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15337 }, { "analysis_explanation": null, "end": 17333, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17328 }, { "analysis_explanation": null, "end": 17882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17877 }, { "analysis_explanation": null, "end": 18320, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18315 }, { "analysis_explanation": null, "end": 19622, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19608 }, { "analysis_explanation": null, "end": 19863, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19857 }, { "analysis_explanation": null, "end": 19963, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19959 }, { "analysis_explanation": null, "end": 19974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19969 }, { "analysis_explanation": null, "end": 20466, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20462 }, { "analysis_explanation": null, "end": 20690, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20673 }, { "analysis_explanation": null, "end": 20749, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20745 }, { "analysis_explanation": null, "end": 20959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20954 }, { "analysis_explanation": null, "end": 21610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21603 }, { "analysis_explanation": null, "end": 21625, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21615 }, { "analysis_explanation": null, "end": 22336, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22329 }, { "analysis_explanation": null, "end": 23453, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23446 }, { "analysis_explanation": null, "end": 23984, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23977 }, { "analysis_explanation": null, "end": 24010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24003 }, { "analysis_explanation": null, "end": 24105, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24094 }, { "analysis_explanation": null, "end": 24120, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24110 }, { "analysis_explanation": null, "end": 24138, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24127 }, { "analysis_explanation": null, "end": 24191, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24181 }, { "analysis_explanation": null, "end": 24239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24232 }, { "analysis_explanation": null, "end": 24245, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24241 }, { "analysis_explanation": null, "end": 24265, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24255 }, { "analysis_explanation": null, "end": 24271, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24267 }, { "analysis_explanation": null, "end": 24837, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24826 }, { "analysis_explanation": null, "end": 24939, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24929 }, { "analysis_explanation": null, "end": 25071, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25064 }, { "analysis_explanation": null, "end": 25559, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25555 }, { "analysis_explanation": null, "end": 25617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25610 }, { "analysis_explanation": null, "end": 25826, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25815 }, { "analysis_explanation": null, "end": 26111, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26106 }, { "analysis_explanation": null, "end": 26132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26128 }, { "analysis_explanation": null, "end": 26144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26137 }, { "analysis_explanation": null, "end": 26208, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26200 }, { "analysis_explanation": null, "end": 26310, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26306 }, { "analysis_explanation": null, "end": 26493, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26487 }, { "analysis_explanation": null, "end": 26507, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26498 }, { "analysis_explanation": null, "end": 26592, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26575 }, { "analysis_explanation": null, "end": 26611, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26603 }, { "analysis_explanation": null, "end": 26617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26613 }, { "analysis_explanation": null, "end": 26625, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26619 }, { "analysis_explanation": null, "end": 26631, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26627 }, { "analysis_explanation": null, "end": 26792, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26785 }, { "analysis_explanation": null, "end": 26904, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26893 }, { "analysis_explanation": null, "end": 26941, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26933 }, { "analysis_explanation": null, "end": 27056, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27052 }, { "analysis_explanation": null, "end": 27063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27059 }, { "analysis_explanation": null, "end": 27075, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27068 }, { "analysis_explanation": null, "end": 27104, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27095 }, { "analysis_explanation": null, "end": 27374, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27367 }, { "analysis_explanation": null, "end": 27586, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27582 }, { "analysis_explanation": null, "end": 27701, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27694 }, { "analysis_explanation": null, "end": 27998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27994 }, { "analysis_explanation": null, "end": 28004, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28000 }, { "analysis_explanation": null, "end": 28468, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28461 }, { "analysis_explanation": null, "end": 28474, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28470 }, { "analysis_explanation": null, "end": 28489, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28477 }, { "analysis_explanation": null, "end": 28681, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28673 }, { "analysis_explanation": null, "end": 28850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28845 }, { "analysis_explanation": null, "end": 28877, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28873 }, { "analysis_explanation": null, "end": 28887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28880 }, { "analysis_explanation": null, "end": 29384, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29374 }, { "analysis_explanation": null, "end": 29400, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29389 }, { "analysis_explanation": null, "end": 29460, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29456 }, { "analysis_explanation": null, "end": 29470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29466 }, { "analysis_explanation": null, "end": 29475, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29472 }, { "analysis_explanation": null, "end": 29495, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29491 }, { "analysis_explanation": null, "end": 29631, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29620 }, { "analysis_explanation": null, "end": 29807, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29803 }, { "analysis_explanation": null, "end": 29839, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29835 }, { "analysis_explanation": null, "end": 29863, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29859 }, { "analysis_explanation": null, "end": 29987, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29982 }, { "analysis_explanation": null, "end": 29993, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29989 }, { "analysis_explanation": null, "end": 30017, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30013 }, { "analysis_explanation": null, "end": 30425, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30420 }, { "analysis_explanation": null, "end": 30431, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30427 }, { "analysis_explanation": null, "end": 30560, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30556 }, { "analysis_explanation": null, "end": 30567, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30562 }, { "analysis_explanation": null, "end": 31772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31767 }, { "analysis_explanation": null, "end": 31793, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31774 }, { "analysis_explanation": null, "end": 31798, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31794 }, { "analysis_explanation": null, "end": 31995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31990 }, { "analysis_explanation": null, "end": 32038, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32034 }, { "analysis_explanation": null, "end": 32055, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32049 }, { "analysis_explanation": null, "end": 32066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32060 }, { "analysis_explanation": null, "end": 32072, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32068 }, { "analysis_explanation": null, "end": 32402, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32390 }, { "analysis_explanation": null, "end": 32408, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32404 }, { "analysis_explanation": null, "end": 32432, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32425 }, { "analysis_explanation": null, "end": 32459, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32443 }, { "analysis_explanation": null, "end": 32509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32502 }, { "analysis_explanation": null, "end": 32539, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32533 }, { "analysis_explanation": null, "end": 32615, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32611 }, { "analysis_explanation": null, "end": 32663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32656 }, { "analysis_explanation": null, "end": 32810, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32803 }, { "analysis_explanation": null, "end": 32868, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32852 }, { "analysis_explanation": null, "end": 32900, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32891 }, { "analysis_explanation": null, "end": 32931, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32924 }, { "analysis_explanation": null, "end": 32948, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32942 }, { "analysis_explanation": null, "end": 32961, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32954 }, { "analysis_explanation": null, "end": 32977, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32970 }, { "analysis_explanation": null, "end": 32989, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32979 }, { "analysis_explanation": null, "end": 33174, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33170 }, { "analysis_explanation": null, "end": 33248, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33241 }, { "analysis_explanation": null, "end": 33399, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33392 }, { "analysis_explanation": null, "end": 33910, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33903 }, { "analysis_explanation": null, "end": 34093, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34089 }, { "analysis_explanation": null, "end": 34103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34096 }, { "analysis_explanation": null, "end": 34189, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34183 }, { "analysis_explanation": null, "end": 34387, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34383 }, { "analysis_explanation": null, "end": 34415, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34411 }, { "analysis_explanation": null, "end": 34515, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34500 }, { "analysis_explanation": null, "end": 34556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34549 }, { "analysis_explanation": null, "end": 34664, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34660 }, { "analysis_explanation": null, "end": 34708, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34692 }, { "analysis_explanation": null, "end": 34816, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34812 }, { "analysis_explanation": null, "end": 34963, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34955 }, { "analysis_explanation": null, "end": 35012, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35008 }, { "analysis_explanation": null, "end": 35050, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35038 }, { "analysis_explanation": null, "end": 35189, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35185 }, { "analysis_explanation": null, "end": 35480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35476 }, { "analysis_explanation": null, "end": 35511, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35503 }, { "analysis_explanation": null, "end": 35533, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35516 }, { "analysis_explanation": null, "end": 35632, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35615 }, { "analysis_explanation": null, "end": 35812, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35808 }, { "analysis_explanation": null, "end": 35846, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35838 }, { "analysis_explanation": null, "end": 36065, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36061 }, { "analysis_explanation": null, "end": 36243, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36235 }, { "analysis_explanation": null, "end": 36255, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36248 }, { "analysis_explanation": null, "end": 36298, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36290 }, { "analysis_explanation": null, "end": 36311, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36303 }, { "analysis_explanation": null, "end": 36393, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36388 }, { "analysis_explanation": null, "end": 36647, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36643 }, { "analysis_explanation": null, "end": 36664, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36650 }, { "analysis_explanation": null, "end": 36782, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36773 }, { "analysis_explanation": null, "end": 36805, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36797 }, { "analysis_explanation": null, "end": 36981, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36977 }, { "analysis_explanation": null, "end": 36987, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36983 }, { "analysis_explanation": null, "end": 37317, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37310 }, { "analysis_explanation": null, "end": 37384, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37379 }, { "analysis_explanation": null, "end": 37518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37511 }, { "analysis_explanation": null, "end": 37591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37584 }, { "analysis_explanation": null, "end": 37597, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37593 }, { "analysis_explanation": null, "end": 37622, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37618 }, { "analysis_explanation": null, "end": 37700, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37695 }, { "analysis_explanation": null, "end": 38029, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38024 }, { "analysis_explanation": null, "end": 38251, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38247 }, { "analysis_explanation": null, "end": 38283, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38279 }, { "analysis_explanation": null, "end": 38422, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38418 }, { "analysis_explanation": null, "end": 38430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38425 }, { "analysis_explanation": null, "end": 38805, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38801 }, { "analysis_explanation": null, "end": 39178, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39174 }, { "analysis_explanation": null, "end": 39471, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39467 }, { "analysis_explanation": null, "end": 39803, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39799 }, { "analysis_explanation": null, "end": 39818, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39814 }, { "analysis_explanation": null, "end": 40172, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40167 }, { "analysis_explanation": null, "end": 40216, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40212 }, { "analysis_explanation": null, "end": 40407, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40403 }, { "analysis_explanation": null, "end": 40534, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40527 }, { "analysis_explanation": null, "end": 40566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40561 }, { "analysis_explanation": null, "end": 40916, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40903 }, { "analysis_explanation": null, "end": 41177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41172 }, { "analysis_explanation": null, "end": 41195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41188 }, { "analysis_explanation": null, "end": 41359, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41348 }, { "analysis_explanation": null, "end": 41375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41370 }, { "analysis_explanation": null, "end": 41415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41408 }, { "analysis_explanation": null, "end": 41552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41545 }, { "analysis_explanation": null, "end": 41606, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41596 }, { "analysis_explanation": null, "end": 41612, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41608 }, { "analysis_explanation": null, "end": 41723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41716 }, { "analysis_explanation": null, "end": 42488, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42484 }, { "analysis_explanation": null, "end": 42507, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42500 }, { "analysis_explanation": null, "end": 42723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42718 }, { "analysis_explanation": null, "end": 42745, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42738 }, { "analysis_explanation": null, "end": 42854, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42847 }, { "analysis_explanation": null, "end": 43479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43472 }, { "analysis_explanation": null, "end": 43600, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43584 }, { "analysis_explanation": null, "end": 43669, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43662 }, { "analysis_explanation": null, "end": 43817, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43810 }, { "analysis_explanation": null, "end": 44199, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44195 }, { "analysis_explanation": null, "end": 44293, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44288 }, { "analysis_explanation": null, "end": 44323, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44316 }, { "analysis_explanation": null, "end": 44448, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44440 }, { "analysis_explanation": null, "end": 44858, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44854 }, { "analysis_explanation": null, "end": 45140, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45133 }, { "analysis_explanation": null, "end": 45441, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45437 }, { "analysis_explanation": null, "end": 45479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45472 }, { "analysis_explanation": null, "end": 45598, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45593 }, { "analysis_explanation": null, "end": 45612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45605 }, { "analysis_explanation": null, "end": 45728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45720 }, { "analysis_explanation": null, "end": 46013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46006 }, { "analysis_explanation": null, "end": 46255, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46251 }, { "analysis_explanation": null, "end": 46678, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46674 }, { "analysis_explanation": null, "end": 47458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47450 }, { "analysis_explanation": null, "end": 47474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47463 }, { "analysis_explanation": null, "end": 47542, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47535 }, { "analysis_explanation": null, "end": 47555, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47547 }, { "analysis_explanation": null, "end": 47577, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47570 }, { "analysis_explanation": null, "end": 47843, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47836 }, { "analysis_explanation": null, "end": 47857, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47848 }, { "analysis_explanation": null, "end": 48133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48129 }, { "analysis_explanation": null, "end": 48164, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48156 }, { "analysis_explanation": null, "end": 48207, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48205 }, { "analysis_explanation": null, "end": 48517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48512 }, { "analysis_explanation": null, "end": 48860, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48853 }, { "analysis_explanation": null, "end": 48873, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48867 }, { "analysis_explanation": null, "end": 48879, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48875 }, { "analysis_explanation": null, "end": 48972, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48968 }, { "analysis_explanation": null, "end": 49480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49476 }, { "analysis_explanation": null, "end": 49535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49528 }, { "analysis_explanation": null, "end": 50091, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50081 }, { "analysis_explanation": null, "end": 50301, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50293 }, { "analysis_explanation": null, "end": 50476, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50471 }, { "analysis_explanation": null, "end": 51082, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51077 }, { "analysis_explanation": null, "end": 51373, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51360 }, { "analysis_explanation": null, "end": 51388, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51375 }, { "analysis_explanation": null, "end": 51405, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51390 }, { "analysis_explanation": null, "end": 51420, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51407 }, { "analysis_explanation": null, "end": 51438, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51422 }, { "analysis_explanation": null, "end": 51457, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51440 }, { "analysis_explanation": null, "end": 51473, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51459 }, { "analysis_explanation": null, "end": 51642, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51637 }, { "analysis_explanation": null, "end": 51648, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51644 }, { "analysis_explanation": null, "end": 51744, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51737 }, { "analysis_explanation": null, "end": 51754, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51750 }, { "analysis_explanation": null, "end": 51846, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51820 }, { "analysis_explanation": null, "end": 51855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51848 }, { "analysis_explanation": null, "end": 51880, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51876 }, { "analysis_explanation": null, "end": 51921, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51913 }, { "analysis_explanation": null, "end": 51982, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51971 }, { "analysis_explanation": null, "end": 51986, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51984 }, { "analysis_explanation": null, "end": 51993, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51988 }, { "analysis_explanation": null, "end": 52007, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51995 }, { "analysis_explanation": null, "end": 52011, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52009 }, { "analysis_explanation": null, "end": 52024, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52022 }, { "analysis_explanation": null, "end": 52033, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52026 }, { "analysis_explanation": null, "end": 52050, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52048 }, { "analysis_explanation": null, "end": 52056, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52052 }, { "analysis_explanation": null, "end": 52136, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52132 }, { "analysis_explanation": null, "end": 52162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52160 }, { "analysis_explanation": null, "end": 52171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52164 }, { "analysis_explanation": null, "end": 52175, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52173 }, { "analysis_explanation": null, "end": 52185, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52177 }, { "analysis_explanation": null, "end": 52219, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52215 }, { "analysis_explanation": null, "end": 52229, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52222 }, { "analysis_explanation": null, "end": 52295, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52287 }, { "analysis_explanation": null, "end": 52303, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52297 }, { "analysis_explanation": null, "end": 52315, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52305 }, { "analysis_explanation": null, "end": 52352, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52346 }, { "analysis_explanation": null, "end": 52362, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52358 }, { "analysis_explanation": null, "end": 52402, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52385 }, { "analysis_explanation": null, "end": 52414, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52403 }, { "analysis_explanation": null, "end": 52508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52498 }, { "analysis_explanation": null, "end": 52518, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52514 }, { "analysis_explanation": null, "end": 52532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52521 }, { "analysis_explanation": null, "end": 52566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52562 }, { "analysis_explanation": null, "end": 52573, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52568 }, { "analysis_explanation": null, "end": 52579, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52575 }, { "analysis_explanation": null, "end": 52712, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52707 }, { "analysis_explanation": null, "end": 52718, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52714 }, { "analysis_explanation": null, "end": 52772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52757 }, { "analysis_explanation": null, "end": 52798, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52794 }, { "analysis_explanation": null, "end": 52832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52818 }, { "analysis_explanation": null, "end": 52843, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52834 }, { "analysis_explanation": null, "end": 52869, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52864 }, { "analysis_explanation": null, "end": 52879, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52875 }, { "analysis_explanation": null, "end": 52912, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52910 }, { "analysis_explanation": null, "end": 52925, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52917 }, { "analysis_explanation": null, "end": 53016, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53011 }, { "analysis_explanation": null, "end": 53020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53018 }, { "analysis_explanation": null, "end": 53026, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53022 }, { "analysis_explanation": null, "end": 53133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53131 }, { "analysis_explanation": null, "end": 53152, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53146 }, { "analysis_explanation": null, "end": 53156, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53154 }, { "analysis_explanation": null, "end": 53162, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53158 }, { "analysis_explanation": null, "end": 53226, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53219 }, { "analysis_explanation": null, "end": 53269, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53255 }, { "analysis_explanation": null, "end": 53411, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53409 }, { "analysis_explanation": null, "end": 53417, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53413 }, { "analysis_explanation": null, "end": 53553, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53545 }, { "analysis_explanation": null, "end": 53570, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53568 }, { "analysis_explanation": null, "end": 53576, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53572 }, { "analysis_explanation": null, "end": 53761, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53753 }, { "analysis_explanation": null, "end": 53771, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53763 }, { "analysis_explanation": null, "end": 53778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53773 }, { "analysis_explanation": null, "end": 53786, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53780 }, { "analysis_explanation": null, "end": 53790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53788 }, { "analysis_explanation": null, "end": 53796, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53792 }, { "analysis_explanation": null, "end": 53850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53836 }, { "analysis_explanation": null, "end": 53923, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53916 }, { "analysis_explanation": null, "end": 53933, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53929 }, { "analysis_explanation": null, "end": 54023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54015 }, { "analysis_explanation": null, "end": 54063, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54056 }, { "analysis_explanation": null, "end": 54074, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54066 }, { "analysis_explanation": null, "end": 54129, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54127 }, { "analysis_explanation": null, "end": 54135, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54131 }, { "analysis_explanation": null, "end": 54161, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54144 }, { "analysis_explanation": null, "end": 54248, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54243 }, { "analysis_explanation": null, "end": 54274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54272 }, { "analysis_explanation": null, "end": 54280, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54276 }, { "analysis_explanation": null, "end": 54421, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54411 }, { "analysis_explanation": null, "end": 54428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54423 }, { "analysis_explanation": null, "end": 54448, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54444 }, { "analysis_explanation": null, "end": 54549, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54541 }, { "analysis_explanation": null, "end": 54586, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54582 }, { "analysis_explanation": null, "end": 54621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54611 }, { "analysis_explanation": null, "end": 54628, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54623 }, { "analysis_explanation": null, "end": 54648, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54644 }, { "analysis_explanation": null, "end": 54730, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54722 }, { "analysis_explanation": null, "end": 54743, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54735 }, { "analysis_explanation": null, "end": 54802, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54798 }, { "analysis_explanation": null, "end": 54813, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54805 }, { "analysis_explanation": null, "end": 54852, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54826 }, { "analysis_explanation": null, "end": 54914, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54910 }, { "analysis_explanation": null, "end": 54923, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54916 }, { "analysis_explanation": null, "end": 54932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54926 }, { "analysis_explanation": null, "end": 54942, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54938 }, { "analysis_explanation": null, "end": 55030, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55027 }, { "analysis_explanation": null, "end": 55035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55032 }, { "analysis_explanation": null, "end": 55045, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55037 }, { "analysis_explanation": null, "end": 55082, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55078 }, { "analysis_explanation": null, "end": 55230, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55221 }, { "analysis_explanation": null, "end": 55249, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55245 }, { "analysis_explanation": null, "end": 55360, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55353 }, { "analysis_explanation": null, "end": 55364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55362 }, { "analysis_explanation": null, "end": 55370, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55366 }, { "analysis_explanation": null, "end": 55463, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55455 }, { "analysis_explanation": null, "end": 55503, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55498 }, { "analysis_explanation": null, "end": 55509, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55505 }, { "analysis_explanation": null, "end": 55657, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55652 }, { "analysis_explanation": null, "end": 55661, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55659 }, { "analysis_explanation": null, "end": 55667, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55663 }, { "analysis_explanation": null, "end": 55802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55797 }, { "analysis_explanation": null, "end": 55806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55804 }, { "analysis_explanation": null, "end": 55812, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55808 }, { "analysis_explanation": null, "end": 55916, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55911 }, { "analysis_explanation": null, "end": 55920, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55918 }, { "analysis_explanation": null, "end": 55927, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55922 }, { "analysis_explanation": null, "end": 56035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56030 }, { "analysis_explanation": null, "end": 56039, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56037 }, { "analysis_explanation": null, "end": 56046, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56041 }, { "analysis_explanation": null, "end": 56060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56049 }, { "analysis_explanation": null, "end": 56071, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56064 }, { "analysis_explanation": null, "end": 56131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56122 }, { "analysis_explanation": null, "end": 56160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56140 }, { "analysis_explanation": null, "end": 56216, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56211 }, { "analysis_explanation": null, "end": 56220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56218 }, { "analysis_explanation": null, "end": 56302, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56297 }, { "analysis_explanation": null, "end": 56306, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56304 }, { "analysis_explanation": null, "end": 56316, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56308 }, { "analysis_explanation": null, "end": 56404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56397 }, { "analysis_explanation": null, "end": 56408, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56406 }, { "analysis_explanation": null, "end": 56414, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56410 }, { "analysis_explanation": null, "end": 56424, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56416 }, { "analysis_explanation": null, "end": 56446, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56444 }, { "analysis_explanation": null, "end": 56452, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56448 }, { "analysis_explanation": null, "end": 56550, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56545 }, { "analysis_explanation": null, "end": 56568, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56564 }, { "analysis_explanation": null, "end": 56593, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56589 }, { "analysis_explanation": null, "end": 56697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56693 }, { "analysis_explanation": null, "end": 56719, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56714 }, { "analysis_explanation": null, "end": 56725, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56721 }, { "analysis_explanation": null, "end": 56792, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56784 }, { "analysis_explanation": null, "end": 56829, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56826 }, { "analysis_explanation": null, "end": 56863, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56859 }, { "analysis_explanation": null, "end": 57015, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57010 }, { "analysis_explanation": null, "end": 57033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57031 }, { "analysis_explanation": null, "end": 57039, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57035 }, { "analysis_explanation": null, "end": 57160, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57152 }, { "analysis_explanation": null, "end": 57206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57202 }, { "analysis_explanation": null, "end": 57213, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57208 }, { "analysis_explanation": null, "end": 57221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57215 }, { "analysis_explanation": null, "end": 57241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57239 }, { "analysis_explanation": null, "end": 57247, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57243 }, { "analysis_explanation": null, "end": 57259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57250 }, { "analysis_explanation": null, "end": 57341, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57333 }, { "analysis_explanation": null, "end": 57347, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57343 }, { "analysis_explanation": null, "end": 57525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57519 }, { "analysis_explanation": null, "end": 57532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57527 }, { "analysis_explanation": null, "end": 57542, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57536 }, { "analysis_explanation": null, "end": 57549, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57544 }, { "analysis_explanation": null, "end": 57555, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57551 }, { "analysis_explanation": null, "end": 57644, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57639 }, { "analysis_explanation": null, "end": 57661, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57646 }, { "analysis_explanation": null, "end": 57682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57663 }, { "analysis_explanation": null, "end": 57698, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57696 }, { "analysis_explanation": null, "end": 57704, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57700 }, { "analysis_explanation": null, "end": 57892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57887 }, { "analysis_explanation": null, "end": 57912, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57908 }, { "analysis_explanation": null, "end": 58050, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58044 }, { "analysis_explanation": null, "end": 58074, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58070 }, { "analysis_explanation": null, "end": 58186, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58178 }, { "analysis_explanation": null, "end": 58212, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58208 }, { "analysis_explanation": null, "end": 58361, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58350 }, { "analysis_explanation": null, "end": 58368, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58363 }, { "analysis_explanation": null, "end": 58399, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58397 }, { "analysis_explanation": null, "end": 58405, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58401 }, { "analysis_explanation": null, "end": 58501, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58483 }, { "analysis_explanation": null, "end": 58566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58564 }, { "analysis_explanation": null, "end": 58572, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58568 }, { "analysis_explanation": null, "end": 58582, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58575 }, { "analysis_explanation": null, "end": 58684, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58678 }, { "analysis_explanation": null, "end": 58706, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58701 }, { "analysis_explanation": null, "end": 58712, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58708 }, { "analysis_explanation": null, "end": 58889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58882 }, { "analysis_explanation": null, "end": 58911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58903 }, { "analysis_explanation": null, "end": 58918, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58913 }, { "analysis_explanation": null, "end": 58934, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58929 }, { "analysis_explanation": null, "end": 58940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58936 }, { "analysis_explanation": null, "end": 59061, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59053 }, { "analysis_explanation": null, "end": 59068, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59063 }, { "analysis_explanation": null, "end": 59077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59070 }, { "analysis_explanation": null, "end": 59100, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59096 }, { "analysis_explanation": null, "end": 59196, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59192 }, { "analysis_explanation": null, "end": 59254, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59247 }, { "analysis_explanation": null, "end": 59322, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59317 }, { "analysis_explanation": null, "end": 59328, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59324 }, { "analysis_explanation": null, "end": 59414, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59407 }, { "analysis_explanation": null, "end": 59420, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59416 }, { "analysis_explanation": null, "end": 59430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59423 }, { "analysis_explanation": null, "end": 59437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59432 }, { "analysis_explanation": null, "end": 59444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59439 }, { "analysis_explanation": null, "end": 59448, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59446 }, { "analysis_explanation": null, "end": 59454, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59450 }, { "analysis_explanation": null, "end": 59551, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59549 }, { "analysis_explanation": null, "end": 59557, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59553 }, { "analysis_explanation": null, "end": 59724, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59718 }, { "analysis_explanation": null, "end": 59731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59726 }, { "analysis_explanation": null, "end": 59737, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59733 }, { "analysis_explanation": null, "end": 59827, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59822 }, { "analysis_explanation": null, "end": 59845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59841 }, { "analysis_explanation": null, "end": 59849, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59847 }, { "analysis_explanation": null, "end": 59857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59855 }, { "analysis_explanation": null, "end": 59863, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59859 }, { "analysis_explanation": null, "end": 59867, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59865 }, { "analysis_explanation": null, "end": 59872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59869 }, { "analysis_explanation": null, "end": 59897, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59892 }, { "analysis_explanation": null, "end": 59903, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59899 }, { "analysis_explanation": null, "end": 52497, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 52434 }, { "analysis_explanation": null, "end": 54233, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 54202 }, { "analysis_explanation": null, "end": 54908, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 54865 }, { "analysis_explanation": null, "end": 53358, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 53349 } ]
[ "#!", "/bin/bash\n\n# Example usage: scripts/test.sh -j4\n\nROOT_DIR=`git rev-parse --show-toplevel`\nDEBUG_DIR=\"$ROOT_DIR/build/clang_debug\"\nif [ -d \"$DEBUG_DIR\" ]; then\n\tcd \"$DEBUG_DIR\"\nelse\n\tmkdir -p \"$DEBUG_DIR\"\n\tcd \"$DEBUG_DIR\"\n\t\"$ROOT_DIR/configure\" \\\n\t\tCC=\"clang\" \\\n\t\tCFLAGS=\"-O0 -g\" \\\n\t\tCXXFLAGS=\"-O0 -g\"\nfi\nmake \"$@\" check\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.0125 ]
0.00625
5
[ { "analysis_explanation": null, "end": 46, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 39 }, { "analysis_explanation": null, "end": 277, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 275 }, { "analysis_explanation": null, "end": 299, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 297 } ]
[ "Last week I read what was in some ways an insightful essay on the need for Republicans to have a more positive agenda. ", "Then I read this:\n\nParticularly among libertarians and some of those conservatives who identify with the Tea Party movement, government overreach has found its mirror image in fierce anti-government fervor… It is justified by an apocalyptic narrative of American life: We are fast approaching a point of no return at which we stand to lose our basic liberties and our national character.", "\n\nThen I remembered who wrote it.", "\n\nFormer Bush Administration officials Michael Gerson and Peter Wehner spent much of the last decade promoting the idea that the world would end if government didn’t take certain actions. ", "The presidency of their old boss was an alarmist hit parade where if America didn’t go to war with Iraq, enact the Patriot Act, or bailout Wall Street, life as we know it might cease to exist.", "\n\nGerson was George W. Bush’s chief speechwriter and senior policy adviser until 2006. ", "Many of us remember the President’s 2003 pitch for war with Iraq:\n\nWe are now acting because the risks of inaction would be far greater. ", "In one year, or five years, the power of Iraq to inflict harm on all free nations would be multiplied many times over… We choose to meet that threat now, where it arises, before it can appear suddenly in our skies and cities… a policy of appeasement could bring destruction of a kind never before seen on this earth.", "\n\nOf course, this fearmongering turned out to be false. ", "No lessons learned, Wehner described the war on terror in the same apocalyptic terms in 2006 when 60 percent of Americans had already soured on the Iraq War:\n\nThey want to kill women and children and the elderly and the innocent. ", "They want rivers of blood to flow from American cities and foreign capitals and other nations.", "\n\nThis is a war Islamic fascists started — and it is a war they intend to prosecute to the end…\n\nWehner would add, “Criticizing the surveillance of terrorists’ calls into and out of America is not a sufficient response. ", "And weakening the Patriot Act is not a sufficient response.”", "\n\nNot surprisingly, protecting constitutional liberties has not been much of a concern for Gerson in the age of Obama either, and Wehner’s main problem with NSA mass surveillance is that an untrustworthy Obama could ruin it for future Republican presidents. ", "When President Bush bailed out Wall Street and the big banks in 2008 to avoid “another Great Depression” or to “save the free market,” such language was not regarded as over the top but accurate and praiseworthy.", "\n\nUsing hyperbolic language to promote government action is not peculiar to former Bush officials. ", "Washington insiders in both parties do this regularly and on multiple fronts, where refusing to go to war with Syria, keeping the sequester or failing to pass gun control are framed as extreme abdications of governing responsibility.", "\n\nGerson and Wehner cite the following as examples of Tea Party Republicans using end of days language, “We have a couple of years to turn this country around,’ according to Texas senator Ted Cruz, ‘or we go off the cliff to oblivion.’ ", "Obamacare, added 2012 GOP presidential candidate Michele Bachmann, is evidence of a ‘police state.”", "\n\nPerhaps some Tea Party Republicans are melodramatic. ", "But their sense of impending doom over expanding government is mirrored by a political establishment quick to Armageddonize opposition to anything Washington does or desires.", "\n\nGrassroots conservatives do indeed fear big government — but the political establishment regularly stokes fear to promote government. ", "Who is more “extreme” is a matter of establishment or anti-establishment perspective.", "\n\nAnd more objectively, do conservatives, libertarians and Tea Partiers have a point about unsustainable government growth and a rising $17 trillion debt? ", "Do they at least have as much — and perhaps more — cause for concern, realistically, than Bush, Gerson and Wehner had about Saddam Hussein in 2003?", "\n\nToday, what do Americans fear most? ", "What are they right to fear most?", "\n\nIn 2010, Chairman of the Joints Chiefs of Staff, Admiral Mike Mullen said, “The most significant threat to our national security is our debt.” ", "Three years since Mullen expressed this fear, his warning seems more prescient to a majority of Americans. ", "Compare this to three years after the US invaded Iraq, when most Americans had come to believe our initial fears were overblown.", "\n\nHow many times have Washington leaders stoked fears about something only to later be shown wrong or at least significantly mistaken? ", "Concerning Iraq? ", "The Patriot Act? ", "Bank bailouts? ", "The need to intervene in Libya? ", "In Syria? ", "Debt default? ", "NSA overreach?", "\n\nWill big government soon take America “off the cliff to oblivion,” as Cruz and the Tea Party warn? ", "Or are libertarians and grassroots conservatives just overreacting? ", "Time will tell.", "\n\nWill the bipartisan Washington establishment ever stop fearmongering, given that it has been horribly wrong about so many things, for so many years and in so many ways?", "\n\nTime has told." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.002583979328165375, 0, 0.015957446808510637, 0, 0.022988505747126436, 0, 0, 0, 0.004347826086956522, 0, 0.004545454545454545, 0, 0.011627906976744186, 0.0047169811320754715, 0.010101010101010102, 0, 0.01694915254237288, 0.020202020202020204, 0, 0, 0, 0, 0, 0.027210884353741496, 0, 0, 0.013793103448275862, 0.009345794392523364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.019801980198019802, 0, 0.06666666666666667, 0, 0.0625 ]
0.007287
5
[ { "analysis_explanation": null, "end": 9, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 86, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75 }, { "analysis_explanation": null, "end": 381, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 373 }, { "analysis_explanation": null, "end": 590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576 }, { "analysis_explanation": null, "end": 607, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595 }, { "analysis_explanation": null, "end": 637, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 622 }, { "analysis_explanation": null, "end": 801, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 794 }, { "analysis_explanation": null, "end": 828, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 824 }, { "analysis_explanation": null, "end": 924, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 918 }, { "analysis_explanation": null, "end": 943, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 929 }, { "analysis_explanation": null, "end": 1001, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 997 }, { "analysis_explanation": null, "end": 1043, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1039 }, { "analysis_explanation": null, "end": 1067, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1063 }, { "analysis_explanation": null, "end": 1151, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1143 }, { "analysis_explanation": null, "end": 1166, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1156 }, { "analysis_explanation": null, "end": 1185, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1181 }, { "analysis_explanation": null, "end": 1537, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1531 }, { "analysis_explanation": null, "end": 1603, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1599 }, { "analysis_explanation": null, "end": 1632, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1623 }, { "analysis_explanation": null, "end": 1788, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1780 }, { "analysis_explanation": null, "end": 1857, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1850 }, { "analysis_explanation": null, "end": 2023, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2016 }, { "analysis_explanation": null, "end": 2210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2204 }, { "analysis_explanation": null, "end": 2230, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2225 }, { "analysis_explanation": null, "end": 2322, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2317 }, { "analysis_explanation": null, "end": 2358, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2348 }, { "analysis_explanation": null, "end": 2390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2386 }, { "analysis_explanation": null, "end": 2439, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2435 }, { "analysis_explanation": null, "end": 2669, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2665 }, { "analysis_explanation": null, "end": 2691, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2681 }, { "analysis_explanation": null, "end": 2797, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2792 }, { "analysis_explanation": null, "end": 2921, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2915 }, { "analysis_explanation": null, "end": 2932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2926 }, { "analysis_explanation": null, "end": 2988, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2977 }, { "analysis_explanation": null, "end": 3043, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3026 }, { "analysis_explanation": null, "end": 3092, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3087 }, { "analysis_explanation": null, "end": 3109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3101 }, { "analysis_explanation": null, "end": 3170, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3166 }, { "analysis_explanation": null, "end": 3214, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3198 }, { "analysis_explanation": null, "end": 3283, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3272 }, { "analysis_explanation": null, "end": 3459, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3449 }, { "analysis_explanation": null, "end": 3944, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3940 }, { "analysis_explanation": null, "end": 3952, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3946 }, { "analysis_explanation": null, "end": 3963, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3957 }, { "analysis_explanation": null, "end": 3988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3974 }, { "analysis_explanation": null, "end": 3996, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3992 }, { "analysis_explanation": null, "end": 4003, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3998 }, { "analysis_explanation": null, "end": 4022, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4013 }, { "analysis_explanation": null, "end": 4075, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4071 }, { "analysis_explanation": null, "end": 4136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4125 }, { "analysis_explanation": null, "end": 4222, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4211 }, { "analysis_explanation": null, "end": 4235, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4229 }, { "analysis_explanation": null, "end": 4316, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4307 }, { "analysis_explanation": null, "end": 4345, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4326 }, { "analysis_explanation": null, "end": 4358, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4356 }, { "analysis_explanation": null, "end": 4371, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4367 }, { "analysis_explanation": null, "end": 4392, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4383 }, { "analysis_explanation": null, "end": 4477, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4467 }, { "analysis_explanation": null, "end": 4595, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4591 }, { "analysis_explanation": null, "end": 4659, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4654 }, { "analysis_explanation": null, "end": 4669, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4664 }, { "analysis_explanation": null, "end": 4737, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4730 }, { "analysis_explanation": null, "end": 4774, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4770 }, { "analysis_explanation": null, "end": 4913, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4903 }, { "analysis_explanation": null, "end": 5030, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5017 } ]
[ "Q:\n\nHow to specify a column name in ddply via character variable?", "\n\nI have a tibble/dataframe with \nsample_id condition state\n---------------------------------\nsample1 case val1\nsample1 case val2\nsample1 case val3\nsample2 control val1\nsample2 control val2\nsample2 control val3\n\nThe dataframe is generated within a for loop for different states. ", "Hence, every dataframe has a different name for the state column. ", "\nI want to group the data by sample_id and calculate the median of the state column such that every unique sample_id has a single median value. ", "The output should be like below...\nsample_id condition state\n---------------------------------\nsample1 case median\nsample2 control median\n\nI am trying the command below; it is working if give the name of the column, but I am not able to pass the name via the state character variable. ", "I tried ensym(state) and !!", "ensym(state), but they all are throwing errors.", "\nddply(dat_state, .(sample_id), summarize, condition=unique(condition), state_exp=median(ensym(state)))\n\nA:\n\nThank you all for putting effort into answering my question. ", "With your suggestions, I have found the solution. ", "Below is the code to what I was trying to achieve by grouping sample_id and condition and passing state through a variable.", "\nstate_mark <- c(\"pPCLg2\", \"STAT1\", \"STAT5\", \"AKT\")\n\nfor(state in state_mark){\n dat_state <- dat_clust_stim[,c(\"sample_id\", \"condition\", state)]\n\n # I had to use !!", "ensym() to convert a character to a symbol.", "\n dat_med <- group_by(dat_state, sample_id, condition) %>% \n summarise(med = median(!!ensym(state)))\n\n dat_med <- ungroup(dat_med)\n x <- dat_med[dat_med$condition == \"case\", \"med\"]\n y <- dat_med[dat_med$condition == \"control\", \"med\"]\n t_test <- t.test(x$med, y$med)\n}\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0.005847953216374269, 0, 0, 0.011764705882352941, 0.023255813953488372, 0.003355704697986577 ]
0.003402
5
[ { "analysis_explanation": null, "end": 1000, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 989 }, { "analysis_explanation": null, "end": 1429, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1426 } ]
[ "Rapid advances in computing constantly translate into new technologies in our everyday lives. ", "The same is true for high-energy physics. ", "The field has always been an early adopter of new technologies, applying them in ever more complex experiments that study fine details of nature’s most fundamental processes. ", "However, these sophisticated experiments produce floods of complex data that become increasingly challenging to handle and analyze. ", "Researchers estimate a decade from now, computing resources may have a hard time keeping up with the slew of data produced by state-of-the-art discovery machines. ", "CERN’s Large Hadron Collider, for example, already generates tens of petabytes (millions of gigabytes) of data per year today, and it will produce ten times more after a future high-luminosity upgrade. ", "Big data challenges like these are not limited to high-energy physics. ", "When the Large Synoptic Survey Telescope begins observing the entire southern sky in never-before-seen detail, it will create a stream of 10 million time-dependent events every night and a catalog of 37 billion astronomical objects over 10 years. ", "Another example is the future LCLS-II X-ray laser at the Department of Energy’s SLAC National Accelerator Laboratory, which will fire up to a million X-ray pulses per second at materials to provide unprecedented views of atoms in motion. ", "It will also generate tons of scientific data. ", "To make things more challenging, all big data applications will have to compete for available computing resources, for example when shuttling information around the globe via shared networks. ", "What are the tools researchers will need to handle future data piles, sift through them and identify interesting science? ", "How will they be able to do it as fast as possible? ", "How will they move and store tremendous data volumes efficiently and reliably? ", "And how can they possibly accomplish all of this while facing budgets that are expected to stay flat? “", "Clearly, we’re at a point where we need to discuss in what direction scientific computing should be going in order to address increasing computational demands and expected shortfalls,” says Richard Mount, head of computing for SLAC’s Elementary Particle Physics Division. ", "The researcher co-chaired the 22nd International Conference on Computing in High-Energy and Nuclear Physics (CHEP 2016), held Oct. 10-14 in San Francisco, where more than 500 physicists and computing experts brainstormed possible solutions. ", "Here are some of their ideas.", "\n\nArtwork by Sandbox Studio, Chicago with Corinne Mucha\n\nExascale supercomputers Scientific computing has greatly benefited from what is known as Moore’s law—the observation that the performance of computer chips has doubled every 18 months or so for the past decades. ", "This trend has allowed scientists to handle data from increasingly sophisticated machines and perform ever more complex calculations in reasonable amounts of time. ", "Moore’s law, based on the fact that hardware engineers were able to squeeze more and more transistors into computer chips, has recently reached its limits because transistor densities have begun to cause problems with heat. ", "Instead, modern hardware architectures involve multiple processor cores that run in parallel to speed up performance. ", "Today’s fastest supercomputers, which are used for demanding calculations such as climate modeling and cosmological simulations, have millions of cores and can perform tens of millions of billions of computing operations per second. “", "In the US, we have a presidential mandate to further push the limits of this technology,” says Debbie Bard, a big-data architect at the National Energy Research Scientific Computing Center. “", "The goal is to develop computing systems within the next 10 years that will allow calculations on the exascale, corresponding to at least a billion billion operations per second.”", "\n\nArtwork by Sandbox Studio, Chicago with Corinne Mucha\n\nSoftware reengineering Running more data analyses on supercomputers could help address some of the foreseeable computing shortfalls in high-energy physics, but the approach comes with its very own challenges. “", "Existing analysis codes have to be reengineered,” Bard says. “", "This is a monumental task, considering that many have been developed over several decades.” ", "Maria Girone, chief technology officer at CERN openlab, a collaboration of public and private partners developing IT solutions for the global LHC community and other scientific research, says, “Computer chip manufacturers keep telling us that our software only uses a small percentage of today’s processor capabilities. ", "To catch up with the technology, we need to rewrite software in a way that it can be adapted to future hardware developments.” ", "Part of this effort will be educating members of the high-energy physics community to write more efficient software. “", "This was much easier in the past when the hardware was less complicated,” says Makoto Asai, who leads SLAC’s team for the development of Geant4, a widely used simulation toolkit for high-energy physics and many other applications. “", "We must learn the new architectures and make them more understandable for physicists, who will have to write software for our experiments.”", "\n\nArtwork by Sandbox Studio, Chicago with Corinne Mucha\n\nSmarter networks and cloud computing Today, LHC computing is accomplished with the Worldwide LHC Computing Grid, or WLCG, a network of more than 170 linked computer centers in 42 countries that provides the necessary resources to store, distribute and analyze the tens of petabytes of data produced by LHC experiments annually. “", "The WLCG is working very successfully, but it doesn’t always operate in the most cost-efficient way,” says Ian Fisk, deputy director for computing at the Simons Foundation and former computing coordinator of the CMS experiment at the LHC. “", "We need to move large amounts of data and store many copies so that they can be analyzed in various locations. ", "In fact, two-thirds of the computing-related costs are due to storage, and we need to ask ourselves if computing can evolve so that we don’t have to distribute LHC data so widely.” ", "More use of cloud services that offer internet-based, on-demand computing could be a viable solution for remote data processing and analysis without reproducing data. ", "Commercial clouds have the capacity and capability to take on big data: Google, receives billions of photos per day and hundreds of hours of video every minute, posing technical challenges that have led to the development of powerful computing, storage and networking solutions.", "\n\nArtwork by Sandbox Studio, Chicago with Corinne Mucha\n\nDeep machine learning for data analysis While conventional computer algorithms perform only operations that they are explicitly programmed to perform, machine learning uses algorithms that learn from the data and successively become better at analyzing them. ", "In the case of deep learning, data are processed in several computational layers that form a network of algorithms inspired by neural networks. ", "Deep learning methods are particularly good at finding patterns in data. ", "Search engines, text and speech recognition, and computer vision are all examples. “", "There are many areas where we can learn from technology developments outside the high-energy physics realm,” says Craig Tull, who co-chaired CHEP 2016 and is head of the Science Software Systems Group at Lawrence Berkeley National Laboratory. “", "Machine learning is a very good example. ", "It could help us find interesting patterns in our data and detect anomalies that could potentially hint at new science.” ", "At present, machine learning in high-energy physics is in its infancy, but researchers have begun implementing it in the analysis of data from a number of experiments, including ATLAS at the LHC, the Daya Bay neutrino experiment in China and multiple experiments at Fermi National Accelerator Laboratory near Chicago.", "\n\nArtwork by Sandbox Studio, Chicago with Corinne Mucha" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0, 0, 0, 0.009900990099009901, 0, 0.004048582995951417, 0.004201680672268907, 0, 0, 0, 0, 0, 0, 0.007352941176470588, 0, 0, 0.01486988847583643, 0, 0, 0, 0, 0.010471204188481676, 0, 0.00749063670411985, 0.016129032258064516, 0, 0.00625, 0, 0, 0.004310344827586207, 0, 0.0051813471502590676, 0.0125, 0, 0, 0, 0, 0.006329113924050633, 0, 0, 0, 0.012295081967213115, 0, 0, 0.0031545741324921135, 0.03636363636363636 ]
0.003351
5
[ { "analysis_explanation": null, "end": 481, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464 }, { "analysis_explanation": null, "end": 634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 613 }, { "analysis_explanation": null, "end": 731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 726 }, { "analysis_explanation": null, "end": 1061, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1050 }, { "analysis_explanation": null, "end": 1124, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1116 }, { "analysis_explanation": null, "end": 2163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2150 }, { "analysis_explanation": null, "end": 2350, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2346 }, { "analysis_explanation": null, "end": 2368, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2358 }, { "analysis_explanation": null, "end": 2385, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2372 }, { "analysis_explanation": null, "end": 2537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2530 }, { "analysis_explanation": null, "end": 2566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2543 }, { "analysis_explanation": null, "end": 2652, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2647 }, { "analysis_explanation": null, "end": 2747, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2726 }, { "analysis_explanation": null, "end": 2768, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2752 }, { "analysis_explanation": null, "end": 2939, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2934 }, { "analysis_explanation": null, "end": 3281, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3276 }, { "analysis_explanation": null, "end": 3520, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3518 }, { "analysis_explanation": null, "end": 3617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3606 }, { "analysis_explanation": null, "end": 3768, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3751 }, { "analysis_explanation": null, "end": 3917, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3910 }, { "analysis_explanation": null, "end": 3946, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3923 }, { "analysis_explanation": null, "end": 4203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4199 }, { "analysis_explanation": null, "end": 4301, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4286 }, { "analysis_explanation": null, "end": 4316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4304 }, { "analysis_explanation": null, "end": 4597, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4592 }, { "analysis_explanation": null, "end": 4960, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4949 }, { "analysis_explanation": null, "end": 5277, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5270 }, { "analysis_explanation": null, "end": 5305, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5283 }, { "analysis_explanation": null, "end": 5340, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5335 }, { "analysis_explanation": null, "end": 5624, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5616 }, { "analysis_explanation": null, "end": 5743, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5735 }, { "analysis_explanation": null, "end": 6465, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6448 }, { "analysis_explanation": null, "end": 6487, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6475 }, { "analysis_explanation": null, "end": 6641, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6634 }, { "analysis_explanation": null, "end": 6666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6647 }, { "analysis_explanation": null, "end": 7347, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7337 }, { "analysis_explanation": null, "end": 7373, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7369 }, { "analysis_explanation": null, "end": 7838, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7826 }, { "analysis_explanation": null, "end": 7867, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7862 }, { "analysis_explanation": null, "end": 7946, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7939 }, { "analysis_explanation": null, "end": 7982, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7975 }, { "analysis_explanation": null, "end": 8001, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7988 } ]
[ "Catabolism of avian and mammalian haptoglobins and their complexes with haemoglobin in chicken.", "\nThe following 125I-labelled preparations of human and chicken haptoglobins (Hph, Hpc) and their complexes with human and chicken haemoglobins (Hph-Hbh, Hpc-Hbc, Hph-Hbc) were injected intravenously to chickens. ", "Hpc exhibited long half-life time (t1/2 = 12.9 hr), whereas the homologous Hpc-Hbc complex disappeared from circulation faster (t1/2 = 3.1 hr). ", "This suggested that the Hpc-Hbc complex was internalized by the receptor-mediated process in the avian liver. ", "Mammalian Hph-Hbh complex was eliminated from chicken circulation rather fast (t1/2 = 0.5 hr) in contrast to \"mixed\" Hph-Hbc complex which was characterized by the relatively long half-life time (t1/2 = 4.4 hr). ", "Hph-Hbc complex displayed 1-2 sites for binding an anti-Hph antibody i.e. less than Hph-Hbh or Hph-Hbc complexes. ", "The Hph binding with Hbc seems to be weaker than with mammalian haemoglobins." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.010526315789473684, 0, 0, 0, 0.0047169811320754715, 0, 0.012987012987012988 ]
0.004033
5
[ { "analysis_explanation": null, "end": 170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150 }, { "analysis_explanation": null, "end": 237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217 }, { "analysis_explanation": null, "end": 346, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 342 }, { "analysis_explanation": null, "end": 356, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 349 }, { "analysis_explanation": null, "end": 448, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442 }, { "analysis_explanation": null, "end": 578, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561 }, { "analysis_explanation": null, "end": 653, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647 }, { "analysis_explanation": null, "end": 770, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 764 }, { "analysis_explanation": null, "end": 911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 908 } ]
[ "Ten Teens Rocking the Food Revolution Scene\n\nConventional wisdom says, and readers who have adolescents seem to support the notion, that teenagers frequently make poor food choices, often as a result of peer pressure.", "\n\nBut does it have to be so? ", "My son will enter middle school this year and while I find it hard to believe he will completely dispense with his healthy eating habits to keep up with the cool crowd, he’s beginning to express his individuality by telling me he’s quite fond of both root beer (yuck) and Coke (gasp).", "\n\nWhat’s a parent to do? ", "Chill out, as my preteen would say. ", "In reporting on school food here and on Civil Eats I run into plenty of anecdotal stories about teens who do the right thing on the food front, think school food is cool food, or are determined to make changes that are both nutritious and delicious in their communities.", "\n\nToday, I want to introduce some of these bright young things to you. ", "Some may be familiar from previous posts. ", "Some come courtesy of two rocking authorities on kids and food, whom I approached for suggestions for this story. ", "Thanks to Ann Cooper (aka The Renegade Lunch Lady) and Susan Rubin (one of the Two Angry Moms) for their picks for this piece. ", "Thanks, as well, to my editor at Civil Eats, Paula Crossfield, whose recent post Kids Radically Changing the Food System reminded me of a couple of teens who deserved to be on this list.", "\n\nI remain optimistic about this next generation. ", "After graduation in June I took my son and one of his buddies to eat at Gather, a newish local restaurant all about eating locally, seasonally and sustainably. ", "Jack, my son’s pal, has always been an adventurous eater, he happily tucked into a pizza with a cashew topping and a salad with nori and declared it “delicious, clean, and fresh tasting.” ", "Two growing Berkeley boys indoctrinated in the delights of farm-to-table food.", "\n\nAt my kid’s elementary school graduation earlier (yes, they have such things, and no, it wasn’t over the top, but rather tastefully done) each of the kids made a speech about how they were going to make a difference in the world.", "\n\nMy boy vowed to graduate from UC Berkeley with a PhD, join the Yankees as second baseman, and then split his multimillion dollar profits from this short-lived sporting career between finding solutions to global warming (his father is an avid environmentalist) and making sure poor people have access to organic produce (I like to think that’s my influence). ", "Way to make a mama proud.", "\n\nBut all the kids — some 65 or so — have grand plans to save the world. ", "That’s what I love about youth. ", "They’re not yet jaded or burned out. ", "Just look at what the kids below are up to — they’re an impressive bunch of budding food activists.", "\n\nOh, and I know, technically there’s more than 10 here, but who’s counting?", "\n\n1. ", "Lashonda Livingston, Aljibri Reed, Henry Walton, Cari Smith and Jakaia Franklin, Chicago: Check out the food-first five from Tilden Career Community High School who took the Cooking up Change challenge run by the non-profit Healthy Schools Campaign all the way to Capitol Hill. ", "Their efforts are featured in the recently released documentary Lunch Line. ", "The annual cooking contest is designed to bring attention to the need for school food reform. ", "This year’s event also highlights efforts to strengthen the Child Nutrition Act, currently up for reauthorization. ", "Watch a trailer of the school food film here. ", "And take a peek at Eat to a New Beat, a resource for kids wanting to revamp their school lunch menu.", "\n\n2. ", "Orren Fox Newburyport, Connecticut: This young man is on a mission to educate the world — young and old — about how to raise chickens with compassion. ", "He’s run a Farm Club after school, started a small business selling his eggs, and developed a following in cyberspace, where folks like writer/friend Susan Orlean sing his praises. ", "Read more about the happy chicken (and bee!) ", "boy on his blog Happy Chickens Lay Healthy Eggs.", "\n\n3. ", "Beebe Sanders, Berkeley: The Berkeley High School student takes the Edible Schoolyard message beyond the classroom. ", "Sanders spoke eloquently at a recent panel on school food reform in Oakland. ", "You can read about it here. ", "She’s also active in Farm Fresh Choice, a program designed to get affordable produce to people in need in the community.", "\n\n4. ", "Koa Halpern, Denver: After researching the environmental and health impacts of the Golden Arches and other fast food franchises, this thirteen-year-old vegetarian launched his own non-profit, Fast Food Free, whose goal is to get kids to ditch Happy Meals from their diet. ", "Halpern, who attends the virtual school Colorado Connections Academy, says he’s slowly but surely winning over skeptics, including many of his friends.", "\n\n5. ", "Nina Gonzalez, Fredericksburg area, Virginia: Recent Stafford High School graduate Gonzalez pushed hard for more vegetarian options on the lunch line, and improved the food at her school for everyone. ", "She talked to lunch ladies, the county nutrition director, and organized taste-testings with food supplied by vendors of vegetarian food. ", "The young activist, who works with Physicians Committee for Responsible Nutrition, a D.C.-based group that champions more plant-based choices in school lunch programs, has appeared on “Good Morning America,” spoken before a Senate briefing about the Healthy School Meals Act of 2010, and been profiled in The Washington Post.", "\n\n6. ", "Sadie Hope-Gund and Safiyah Riddle, New York City: Inspiring children and adults alike in their funny and thought-provoking documentary about kids and food policy called What’s On Your Plate? ", "Reviewed on this site right here.", "\n\n7. ", "Healthy Tara, Illinois : A high school senior’s battle for ingredient transparency in school food. ", "As Healthy Tara sees it, if she can’t get rid of crappy food at school, then she at least wants students to have ingredient information so they can make their own choices. ", "Read her blog about her cafeteria crusade to subtract the additives from school lunch.", "\n\n8. ", "Amelia Marstaller, Freeport, Maine: Dismayed by the funky food served up at her boarding school dining hall in upstate New York, Marstaller started a campaign to bring more local, organic food into the school kitchen. ", "Unperturbed by restrictions on what the Emma Willard School could purchase locally, Marstaller and her supporters decided to start growing food right on campus. ", "Her experience bringing homegrown fresh fruit and vegetables to the school table and partnering with local farmers is chronicled in the recent release Girls Gone Green by Lynn Hirshfield.", "\n\n9. ", "The Rethinkers, New Orleans: A group of mostly middle school students engaged in rethinking and rebuilding schools in the city devastated by Hurricane Katrina. ", "They’ve compiled Twelve Recommendations for Public School Cafeterias (Jamie Oliver must love #1: No more sporks!). ", "Also on the list: buying food from local farmers, preparing regional dishes, and composting waste. ", "Leave it to the kids to come up with commonsense solutions. ", "Watch the rethinkers spread the good word about good food in this engaging video, Real Food Now and on Facebook.", "\n\n10. ", "Araceli Tlatoa, Los Angeles: This teen of Mexican immigrants is active with the organization South Central Farmers, featured in the award-winning documentary film The Garden, reviewed here. ", "Although the farm was relocated to Buttonwill, California, after a bitter battle with the landowner (the site, once a glorious example of urban homesteading, stands empty and unused) Tlatoa remains involved, selling produce on weekends at farmers’ market booths throughout L.A. Her story is also featured in Girls Gone Green.", "\n\nFeeling upbeat about what a difference these kids have made in their communities?", "\n\nDo you know of a young food activist who’s doing good work in your ‘hood? ", "Tell us about him or her below.", "\n\nSo impressive. ", "These teens have a big future ahead of them, I think! ", "Good for them for taking the initiative to do something about what they put into their bodies. ", "Now is the time to learn good habits.", "\n\nYou’re funny, Claudine, moping and surly teens are certainly out there. ", "And I think your point that most of the time your family eats well and the kids know what good food looks like is a great way to get them started on a lifetime habit of healthy eating.", "\n\nThis is one of my all-time favorite posts of yours, Sarah. ", "This is amazing! ", "Thank you for shining the spotlight on these teens. ", "You’ve given me role models that I can share with my niece as she enters high school. ", "She loves to cook (and loves, loves, loves lemons) so many she’ll find inspiration here. ", "Thank you!", "\n\nVery cool blog. ", "Inspiring. ", "Here on Maui we do Taste Education. ", "We take locally grown produce and value added products and compare them to the same brought in from the mainland. ", "Would you rather eat a tomato that traveled over 3,000 miles and cost more than a tomato picked next door and cost half the price?", "\n\nHope springs eternal! ", "As the proud parent of a soon-to-be-middle-schooler myself, I can assure you that this generation’s interest in food and food issues far surpasses that of prior generations. ", "Sure, the vast majority of kids, of people, are still concerned with more trivial matters, but I do feel like the future of food is in good hands. ", "Your post has taken my hope and multiplied it.", "\n\nAlso, I remember listening to the Rethinkers from N.O. at a conference last year. ", "Those are some dedicated kids!", "\n\nOh, you’re a funny one, Alisa. ", "Jokes aside, I have just never developed a taste for that soda, too medicinal for my tastes. ", "Maybe it’s a cultural thing. ", "What say all you Americans who grew up on root beer floats?", "\n\nI watched the documentary film Food Inc and was thinking hopefully someone will start the food revolution. ", "As I was surfing I came across your site and lovely teen stories! ", "It is so nice to see our youngsters taking the lead. ", "My very best wishes to the teens you have mentioned here.", "\n\nRecently, I taught at the Sprouts Cooking Club in Berkeley, the registered kids in the school were preteens. ", "They were pretty well versed in cooking, they even knew how to chiffonade the herbs. ", "I believe our teenagers will do an honest job at revolutionizing how we eat." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.0035211267605633804, 0, 0, 0, 0, 0, 0, 0.015748031496062992, 0.010752688172043012, 0, 0.00625, 0.005319148936170213, 0.01282051282051282, 0, 0.005555555555555556, 0, 0, 0, 0, 0, 0, 0, 0.03237410071942446, 0.013157894736842105, 0, 0, 0, 0, 0, 0.006622516556291391, 0.011049723756906077, 0, 0.020833333333333332, 0, 0.02586206896551724, 0, 0, 0, 0, 0.007352941176470588, 0.006622516556291391, 0, 0.014925373134328358, 0, 0.012307692307692308, 0, 0.005208333333333333, 0, 0, 0.010101010101010102, 0.005813953488372093, 0, 0, 0.009174311926605505, 0.012422360248447204, 0.0053475935828877, 0, 0, 0.008695652173913044, 0, 0, 0.008928571428571428, 0, 0.010526315789473684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01639344262295082, 0, 0, 0, 0, 0, 0, 0, 0.027777777777777776, 0, 0, 0, 0, 0, 0, 0.023809523809523808, 0, 0.030303030303030304, 0, 0, 0, 0, 0, 0, 0, 0.009009009009009009, 0, 0 ]
0.003794
5
[ { "analysis_explanation": null, "end": 286, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277 }, { "analysis_explanation": null, "end": 865, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 860 }, { "analysis_explanation": null, "end": 1105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1095 }, { "analysis_explanation": null, "end": 1151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1140 }, { "analysis_explanation": null, "end": 1273, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1257 }, { "analysis_explanation": null, "end": 1471, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1467 }, { "analysis_explanation": null, "end": 1535, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1529 }, { "analysis_explanation": null, "end": 1611, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1607 }, { "analysis_explanation": null, "end": 1815, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1807 }, { "analysis_explanation": null, "end": 2839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2827 }, { "analysis_explanation": null, "end": 2853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2841 }, { "analysis_explanation": null, "end": 2865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2855 }, { "analysis_explanation": null, "end": 2885, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2870 }, { "analysis_explanation": null, "end": 2894, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2887 }, { "analysis_explanation": null, "end": 2920, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2906 }, { "analysis_explanation": null, "end": 3082, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3070 }, { "analysis_explanation": null, "end": 3263, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3259 }, { "analysis_explanation": null, "end": 3540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3519 }, { "analysis_explanation": null, "end": 3553, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3542 }, { "analysis_explanation": null, "end": 3832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3820 }, { "analysis_explanation": null, "end": 3961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3948 }, { "analysis_explanation": null, "end": 3971, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3963 }, { "analysis_explanation": null, "end": 4071, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4064 }, { "analysis_explanation": null, "end": 4139, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4132 }, { "analysis_explanation": null, "end": 4304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4293 }, { "analysis_explanation": null, "end": 4312, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4306 }, { "analysis_explanation": null, "end": 4444, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4427 }, { "analysis_explanation": null, "end": 4733, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4720 }, { "analysis_explanation": null, "end": 4754, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4735 }, { "analysis_explanation": null, "end": 4764, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4756 }, { "analysis_explanation": null, "end": 4811, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4803 }, { "analysis_explanation": null, "end": 5341, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5337 }, { "analysis_explanation": null, "end": 5403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5388 }, { "analysis_explanation": null, "end": 5422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5408 }, { "analysis_explanation": null, "end": 5437, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5424 }, { "analysis_explanation": null, "end": 5629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5617 }, { "analysis_explanation": null, "end": 5639, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5631 }, { "analysis_explanation": null, "end": 5731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5719 }, { "analysis_explanation": null, "end": 5995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5978 }, { "analysis_explanation": null, "end": 6005, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5997 }, { "analysis_explanation": null, "end": 6012, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6007 }, { "analysis_explanation": null, "end": 6022, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6014 }, { "analysis_explanation": null, "end": 6105, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6097 }, { "analysis_explanation": null, "end": 6543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6528 }, { "analysis_explanation": null, "end": 6546, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6545 }, { "analysis_explanation": null, "end": 6575, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6564 }, { "analysis_explanation": null, "end": 6790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6778 }, { "analysis_explanation": null, "end": 7113, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7099 }, { "analysis_explanation": null, "end": 7126, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7115 }, { "analysis_explanation": null, "end": 7148, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7141 }, { "analysis_explanation": null, "end": 7334, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7324 }, { "analysis_explanation": null, "end": 7346, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7336 }, { "analysis_explanation": null, "end": 7524, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7516 }, { "analysis_explanation": null, "end": 7566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7562 }, { "analysis_explanation": null, "end": 8027, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8019 }, { "analysis_explanation": null, "end": 8319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8314 }, { "analysis_explanation": null, "end": 8615, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8611 }, { "analysis_explanation": null, "end": 9328, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9324 }, { "analysis_explanation": null, "end": 9354, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9345 }, { "analysis_explanation": null, "end": 9416, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9411 }, { "analysis_explanation": null, "end": 9566, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9557 }, { "analysis_explanation": null, "end": 9942, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9934 } ]
[ "Q:\n\nDirective updates to parent scope one step delayed\n\nI moved my simple paging from controller to a directive and got stuck with a strange problem. ", "Every time I update parent scope from within the directive it only gets updated on the next change. ", "So if ng-options are [10,20,30] and I ng-change it to 10 - nothing happens. ", "Then I change it to 20 and it updates to previous value of 10, next change to whatever value gets the model updated to the one I picked before, and so on\nI tried to use $scope.$apply but it does not help. ", "I still get delayed updates. ", "What am I missing? ", "I realize that it is something to do with digest update and $scope.$apply but I cant figure out where to use it. ", "Anything I try just does not work.", "\nRelevant controller parts:\nvm.pages = 0;\nvm.articles = [];\n\nvm.load = { page: { batch: 10, current: 1 }\n , sort: { _id: -1 }\n , filter: {}\n };\n\nvm.getArticles = function() {\n articleS.list(vm.load, function (data){\n vm.pages = data.pages;\n vm.articles = data.articles;\n });\n}\n\nThe directive:\n.directive(\"paging\", function() {\n\n var scope = { update: '&', current: '=', pages: '=', batch: '=' };\n\n function link(s, e, a) {\n s.options = [10,20,50,100];\n\n s.toPage = function(p) {\n\n switch(p) {\n case \"last\":\n if (s.current !", "= s.pages) {\n s.current = s.pages;\n s.update();\n }\n break;\n case \"next\":\n if (s.current < s.pages) {\n s.current ++;\n s.update();\n }\n break;\n case \"prev\":\n if (s.current > 1) {\n s.current --;\n s.update();\n }\n break;\n default:\n s.current = 1;\n s.update();\n }\n\n }\n }\n\n return {\n replace: true,\n scope: scope,\n templateUrl: 'paging.tpl',\n link: link\n }\n});\n\nThe directive template:\n<section class='pages'>\n <select\n ng-model=\"batch\"\n ng-change=\"toPage('first')\"\n ng-options=\"value for value in options\">\n </select>\n <div>\n <button ng-click=\"toPage('first')\"> 1 </button>\n <button ng-click=\"toPage('prev')\"> << </button>\n <div>{{current}}</div>\n <button ng-click=\"toPage('next')\"> >> </button>\n <button ng-click=\"toPage('last')\"> {{pages}} </button>\n </div>\n </section>\n\nDirective call:\n <paging\n update=\"vm.getArticles()\"\n current=\"vm.load.page.current\"\n batch=\"vm.load.page.batch\"\n pages=\"vm.pages\">\n </paging>\n\nA:\n\nOK. ", "I figured this out.", "\nIf I understood correctly, $apply will generate a already in progress error if you run it on an isolated scope variable bound to its parent with '='. ", "I think that '=' triggers the $digest (this is just an observation from trial and error while trying to solve this).", "\nMy problem was that s.update() function was run before the next digest cycle. ", "So local scope variables \"did not have time\" to copy to the parent scope. ", "That's why I could only see the update at the next operation or at the next digest cycle hens always seeing previous change.", "\nPlaying with setTimeout(function(){ s.update() }, 2000) proved it.", "\nIf I delay the execution for a couple of seconds then I see the update with correct changes. ", "Delaying is not a solution though, slowing down application is plain stupid.", "\nThen I found angular's $timeout(function() {})\nThis allows to skip the delay parameter which defaults to 0 and does not actually delay anything, but it does insure that callback runs on the next digest cycle so that the local scope variables can be updated to the parent.", "\nif (s.current < s.pages) {\n s.current ++;\n $timeout(function() {\n s.update();\n });\n}\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0.0017035775127768314, 0.0008156606851549756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.00012
5
[ { "analysis_explanation": null, "end": 1840, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 1831 }, { "analysis_explanation": null, "end": 3158, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3154 }, { "analysis_explanation": null, "end": 3219, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3200 }, { "analysis_explanation": null, "end": 759, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 754 }, { "analysis_explanation": null, "end": 773, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 768 }, { "analysis_explanation": null, "end": 903, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 898 }, { "analysis_explanation": null, "end": 941, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 930 }, { "analysis_explanation": null, "end": 979, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 974 }, { "analysis_explanation": null, "end": 992, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 985 }, { "analysis_explanation": null, "end": 1006, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1001 }, { "analysis_explanation": null, "end": 1022, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1015 }, { "analysis_explanation": null, "end": 1227, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1223 }, { "analysis_explanation": null, "end": 1306, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1302 }, { "analysis_explanation": null, "end": 1320, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1316 }, { "analysis_explanation": null, "end": 1343, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1339 }, { "analysis_explanation": null, "end": 1355, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1351 }, { "analysis_explanation": null, "end": 1452, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1448 }, { "analysis_explanation": null, "end": 1464, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1460 }, { "analysis_explanation": null, "end": 1487, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1483 }, { "analysis_explanation": null, "end": 1589, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1585 }, { "analysis_explanation": null, "end": 1618, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1614 }, { "analysis_explanation": null, "end": 1712, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1708 }, { "analysis_explanation": null, "end": 2402, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2397 }, { "analysis_explanation": null, "end": 2447, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2432 }, { "analysis_explanation": null, "end": 2484, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2469 }, { "analysis_explanation": null, "end": 2509, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2504 }, { "analysis_explanation": null, "end": 3621, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3617 }, { "analysis_explanation": null, "end": 3633, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3629 }, { "analysis_explanation": null, "end": 3646, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3642 } ]
[ "Recently, the performance and functionality of digital cameras and digital movie cameras that use some solid-state image sensor such as a CCD and a CMOS (which will be sometimes simply referred to herein as an “image sensor”) have been enhanced to an astonishing degree. ", "In particular, the size of a pixel structure for use in an image sensor has been further reduced these days thanks to rapid development of semiconductor device processing technologies, thus getting an even greater number of pixels and drivers integrated together in an image sensor. ", "As a result, the resolution of an image sensor has lately increased rapidly from one million pixels to ten million or more pixels in a matter of few years. ", "On top of that, the quality of an image captured has also been improved significantly as well. ", "As for display devices, on the other hand, LCD and plasma displays with a reduced depth now provide high-resolution and high-contrast images, thus realizing high performance without taking up too much space. ", "And such video quality improvement trends are now spreading from 2D images to 3D images. ", "In fact, 3D display devices that achieve high image quality although they require the viewer to wear a pair of polarization glasses have been developed just recently and put on the market one after another.", "\nAs for the 3D image capturing technology, a typical 3D image capture device with a simple arrangement uses an image capturing system with two cameras to capture a right-eye image and a left-eye image. ", "According to the so-called “two-lens image capturing” technique, however, two cameras need to be used, thus increasing not only the overall size of the image capture device but also the manufacturing cost as well. ", "To overcome such a problem, methods for capturing multiple images with parallax by using a single camera have been researched and developed. ", "For example, Patent Document No. ", "1 discloses a scheme that uses two polarizers, of which the transmission axes cross each other at right angles, and a rotating polarization filter.", "\nFIG. ", "10 is a schematic representation illustrating an arrangement for an image capturing system that adopts such a scheme. ", "This image capturing system includes a 0-degree-polarization polarizer 11, a 90-degree-polarization polarizer 12, a reflective mirror 13, a half mirror 14, a circular polarization filter 15, a driver 16 that rotates the circular polarization filter 15, an optical lens 3, and an image capture device 9 for capturing the image that has been produced by the optical lens. ", "In this arrangement, the half mirror 14 reflects the light that has been transmitted through the polarizer 11 and then reflected from the reflective mirror 13 but transmits the light that has been transmitted through the polarizer 12. ", "With such an arrangement, the light rays that have been transmitted through the two polarizers 11 and 12, which are arranged at two different positions, pass through the half mirror 14, the circular polarization filter 15 and the optical lens 3 and then enter the image capture device 9, where an image is captured. ", "The image capturing principle of this scheme is that two images with parallax are captured by rotating the circular polarization filter 15 so that the light rays that have entered the two polarizers 11 and 12 are imaged at mutually different times.", "\nAccording to such a scheme, however, images at mutually different positions are captured time-sequentially by rotating the circular polarization filter 15, and therefore, those images with parallax cannot be captured at the same time, which is a problem. ", "In addition, the durability of such a system is also a question mark because the system uses mechanical driving. ", "On top of that, since all of the incoming light is received by the polarizers and the polarization filter, the quantity of the light received eventually by the image capture device 9 decreases by as much as 50%, which is non-negligible, either.", "\nTo overcome these problems, Patent Document No. ", "2 discloses a scheme for capturing two images with parallax without using such mechanical driving. ", "An image capture device that adopts such a scheme gets the two incoming light rays, which have come from two different directions, condensed by a reflective mirror, and then received by an image capture device in which two different kinds of polarization filters are arranged alternately, thereby capturing two images with parallax without using a mechanical driving section.", "\nFIG. ", "11 is a schematic representation illustrating an arrangement for an image capturing system that adopts such a scheme. ", "This image capturing system includes two polarizers 11 and 12, of which the transmission axes are arranged to cross each other at right angles, reflective mirrors 13, an optical lens 3, and an image capture device 1. ", "On its imaging area, the image capture device 1 has a number of pixels 10 and polarization filters 17 and 18, each of which is provided one to one for an associated one of the pixels 10. ", "Those polarization filters 17 and 18 are arranged alternately over all of those pixels. ", "In this case, the transmission axis directions of the polarization filters 17 and 18 agree with those of the polarizers 11 and 12, respectively.", "\nWith such an arrangement, the incoming light rays are transmitted through the polarizers 11 and 12, reflected from the reflective mirrors 13, passed through the optical lens 3 and then incident on the imaging area of the image capture device 1. ", "Those light rays to be transmitted through the polarizers 11 and 12, respectively, and then incident on the image capture device 1 are transmitted through the polarization filters 17 and 18 and then photoelectrically converted by the pixels that face those polarization filters 17 and 18. ", "If the images to be produced by those light rays that have been transmitted through the polarizers 11 and 12 and then incident on the image capture device 1 are called a “right-eye image” and a “left-eye image”, respectively, then the right-eye image and the left-eye images are generated by a group of pixels that face the polarization filters 17 and a group of pixels that face the polarization filter 18.", "\nAs can be seen, according to the scheme disclosed in Patent Document No. ", "2, two kinds of polarization filters, of which the transmission axes are arranged so as to cross each other at right angles, are arranged alternately over the pixels of the image capture device, instead of using the circular polarization filter disclosed in Patent Document No. ", "1. ", "As a result, although the resolution decreases to a half compared to the method of Patent Document No. ", "1, a right-eye image and a left-eye image with parallax can be obtained at the same time by using a single image capture device.", "\nAccording to such a technique, however, the incoming light has its quantity decreased considerably when being transmitted through the polarizers and the polarization filters, and therefore, the quantity of the light received by the image capture device decreases as significantly as in Patent Document No. ", "1.", "\nAs another approach to the problem that the image capture device comes to receive a decreased quantity of light, Patent Document No. ", "3 discloses a technique for mechanically changing the modes of operation from the mode of capturing multiple images that have parallax into the mode of capturing a normal image, and vice versa. ", "FIG. ", "12 schematically illustrates an arrangement for an image capturing system that uses such a technique. ", "The image capture device shown in FIG. ", "12 includes a light transmitting member 19 that has two polarized light transmitting portions 20 and 21 and that transmits the light that has come from an optical lens 3 only through those transmitting portions, a light receiving member optical filter tray 22 in which particular component transmitting filters 23 that split the light that has come from the polarized light transmitting portions 20 and 21 and color filters 24 are arranged as a set, and a filter driving section 25 that removes the light transmitting member 19 and the particular component transmitting filters 23 from the optical path and inserts the color filters 24 onto the optical path instead, and vice versa.", "\nAccording to this technique, by running the filter driving section 25, the light transmitting member 19 and the particular component transmitting filters 23 are used to capture two images with parallax, while the color filters 24 are used to capture a normal image. ", "However, the two images with parallax are shot in basically the same way as in Patent Document No. ", "2, and therefore, the incoming light can be used much less efficiently than in a normal image capturing session. ", "When a normal color image is shot, on the other hand, the light transmitting member 19 is removed from the optical path and the color filters 24 are inserted instead of the particular component transmitting filters 23. ", "As a result, a color image can be generated with the incoming light used highly efficiently." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0.007380073800738007, 0, 0, 0, 0.004807692307692308, 0, 0, 0.0049504950495049506, 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, 0, 0.2, 0, 0.02564102564102564, 0, 0, 0, 0, 0, 0 ]
0.00476
5
[ { "analysis_explanation": null, "end": 378, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 368 }, { "analysis_explanation": null, "end": 708, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 699 }, { "analysis_explanation": null, "end": 2323, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2321 }, { "analysis_explanation": null, "end": 2578, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2576 }, { "analysis_explanation": null, "end": 2878, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2876 }, { "analysis_explanation": null, "end": 2958, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2956 }, { "analysis_explanation": null, "end": 4482, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4480 }, { "analysis_explanation": null, "end": 4659, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4657 }, { "analysis_explanation": null, "end": 4923, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4921 }, { "analysis_explanation": null, "end": 5219, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5217 }, { "analysis_explanation": null, "end": 5333, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5331 }, { "analysis_explanation": null, "end": 5375, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5373 }, { "analysis_explanation": null, "end": 5547, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5545 }, { "analysis_explanation": null, "end": 5767, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5765 } ]
[ "Q:\n\nwriting to a file using java.nio\n\nI have to use java.nio to create a file of any desired size by populating it with data. ", "I am reading through a document, but am confused about when I need to flip, put, or write and am getting errors. ", "I have successfully done this program using .io but I am testing to see if .nio will make it run faster.", "\nThis is my code so far. ", "args[0] is the size of the file you want to make and args[1] is the name of the file to be written to\npublic static void main(String[] args) throws IOException\n {\n nioOutput fp = new nioOutput();\n FileOutputStream fos = new FileOutputStream(args[1]);\n FileChannel fc = fos.getChannel();\n\n long sizeOfFile = fp.getFileSize(args[1]); \n long desiredSizeOfFile = Long.parseLong(args[0]) * 1073741824; //1 Gigabyte = 1073741824 bytes \n int byteLength = 1024; \n ByteBuffer b = ByteBuffer.allocate(byteLength);\n\n while(sizeOfFile + byteLength < desiredSizeOfFile)\n { \n // b.put((byte) byteLength);\n b.flip();\n fc.write(b);\n sizeOfFile += byteLength; \n }\n int diff = (int) (desiredSizeOfFile - sizeOfFile);\n sizeOfFile += diff;\n\n fc.write(b, 0, diff);\n\n fos.close();\n System.out.println(\"Finished at \" + sizeOfFile / 1073741824 + \" Gigabyte(s)\"); \n }\n\nlong getFileSize(String fileName) \n{\n File file = new File(fileName); \n if (!", "file.exists() || !", "file.isFile()) \n {\n System.out.println(\"File does not exist\");\n return -1;\n }\n return file.length();\n}\n\nA:\n\nsorry everyone, I figured it out. ", "\n while(sizeOfFile + byteLength < desiredSizeOfFile)\n { \n fc.write(b);\n b.rewind();\n sizeOfFile += byteLength; \n }\n int diff = (int) (desiredSizeOfFile - sizeOfFile);\n sizeOfFile += diff;\n\n ByteBuffer d = ByteBuffer.allocate(diff);\n\n fc.write(d);\n b.rewind();\n\n fos.close();\n System.out.println(\"Finished at \" + sizeOfFile / 1073741824 + \" Gigabyte(s)\"); \n }\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0.0057306590257879654, 0, 0.006060606060606061, 0.004545454545454545 ]
0.002042
5
[ { "analysis_explanation": null, "end": 545, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 536 }, { "analysis_explanation": null, "end": 564, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 555 }, { "analysis_explanation": null, "end": 643, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 632 }, { "analysis_explanation": null, "end": 847, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 833 }, { "analysis_explanation": null, "end": 950, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 940 }, { "analysis_explanation": null, "end": 1076, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1066 }, { "analysis_explanation": null, "end": 1629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1619 }, { "analysis_explanation": null, "end": 1733, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1723 }, { "analysis_explanation": null, "end": 35, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 28 }, { "analysis_explanation": null, "end": 59, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 52 }, { "analysis_explanation": null, "end": 655, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 649 }, { "analysis_explanation": null, "end": 696, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 691 }, { "analysis_explanation": null, "end": 759, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 752 }, { "analysis_explanation": null, "end": 895, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 882 }, { "analysis_explanation": null, "end": 1213, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1207 }, { "analysis_explanation": null, "end": 1238, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1225 }, { "analysis_explanation": null, "end": 1442, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1435 }, { "analysis_explanation": null, "end": 1478, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1465 }, { "analysis_explanation": null, "end": 1696, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1692 }, { "analysis_explanation": null, "end": 1864, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1851 }, { "analysis_explanation": null, "end": 1906, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1902 }, { "analysis_explanation": null, "end": 1926, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1920 }, { "analysis_explanation": null, "end": 1951, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1938 }, { "analysis_explanation": null, "end": 788, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 778 }, { "analysis_explanation": null, "end": 815, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 805 }, { "analysis_explanation": null, "end": 1284, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 1274 }, { "analysis_explanation": null, "end": 1997, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 1987 }, { "analysis_explanation": null, "end": 788, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 778 }, { "analysis_explanation": null, "end": 815, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 805 }, { "analysis_explanation": null, "end": 1284, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1274 }, { "analysis_explanation": null, "end": 1997, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1987 } ]
[ "———————————————————————————————————————————————————————————————————————————- The Terry Global Speakers Series Presents Bill McKibben: Notes on the Climate Fight In partnership with the Pacific Institute for Climate Solutions, The Alma Mater…" ]
{ "pile_set_name": "Pile-CC" }
[ 0.008298755186721992 ]
0.008299
5
[ { "analysis_explanation": null, "end": 132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119 } ]
[ "2019-07-08 09:49 ET - News Release\n\nMr. Joshua Bartch reports\n\nNEWLEAF BRANDS SIGNS EXCLUSIVE DISTRIBUTION AGREEMENT WITH BEST STRAINS, LLC\n\nNewleaf Brands Inc. has entered into an exclusive distribution agreement with Best Strains LLC, based out of Tennessee. ", "Under the terms of the agreement, Newleaf Brands will have the rights for distribution of its Kured disposable vape pens, vape cartridges and Fresh Water to convenience stores, liquor stores, novelty/tourist retailers and other big-box retailers throughout Tennessee.", "\n\nBest Strains was founded by the same family that has been in the wholesale wine, beer, beverage and spirits distribution business since 1939, and is currently distributing to over 3,000 retail locations.", "\n\nJason Eskind, executive vice-president of Best Strains, who is fourth-generation to founder Manual Eskind, stated, \"We are extremely excited to be entering this new market segment with a strong brand and partner in Newleaf Brands.\"", "\n\nChief marketing officer of Newleaf Brands Benjamin Martch commented: \"Being that Tennessee is a hub for hemp cultivation, we have been working on getting a distribution agreement with a notable company like Best Strains LLC for the last few months. ", "Their current partners' products are being sold in stores throughout the Tennessee market, and we cannot wait to see what they can do with Kured!\"", "\n\nAbout Newleaf Brands Inc.\n\nNewleaf Brands is an innovative cannabidiol lifestyle company. ", "Through the company's wholly owned subsidiaries, We are Kured and Drink Fresh Water, the company's main business activities encompass the development, marketing and distribution of CBD products (including vaporizer pens and beverages) throughout the United States and internationally. ", "In addition, Newleaf Brands has extensive retail and cultivation land investments in Oregon.", "\n\nWe seek Safe Harbor." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.01532567049808429, 0.00749063670411985, 0, 0.012875536480686695, 0.00796812749003984, 0.00684931506849315, 0.010869565217391304, 0.0035087719298245615, 0.021739130434782608, 0 ]
0.008663
5
[ { "analysis_explanation": null, "end": 10, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 19, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11 }, { "analysis_explanation": null, "end": 53, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40 }, { "analysis_explanation": null, "end": 259, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250 }, { "analysis_explanation": null, "end": 527, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518 }, { "analysis_explanation": null, "end": 669, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 665 }, { "analysis_explanation": null, "end": 745, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 733 }, { "analysis_explanation": null, "end": 838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 825 }, { "analysis_explanation": null, "end": 1022, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1007 }, { "analysis_explanation": null, "end": 1055, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1046 }, { "analysis_explanation": null, "end": 1212, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1193 }, { "analysis_explanation": null, "end": 1296, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1287 }, { "analysis_explanation": null, "end": 1714, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1697 }, { "analysis_explanation": null, "end": 1827, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1821 }, { "analysis_explanation": null, "end": 1848, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1837 }, { "analysis_explanation": null, "end": 106, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 94 } ]
[ "[Kinetics of the glycosidases activity in Schistocerca gregaria Forsk].", "\nExtracts from the alimentary canal of Schistocerca gregaria Forsk allow hydrolysis of a remarkably wide range of oligosaccharides, heterosides and polysaccharides. ", "Sucrose and starch are more rapidly and more intensely attacked, other osides much more slowly. ", "The balance of released monosaccharides shows a clean predominance of glucose but some oses are released in appreciable amount only in case of delayed digestion." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 29, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17 }, { "analysis_explanation": null, "end": 54, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42 }, { "analysis_explanation": null, "end": 122, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110 } ]
[ "Midlaren\n\nMidlaren is a village in the Dutch province of Drenthe. ", "It is a part of the municipality of Tynaarlo, and lies about 14 km southeast of Groningen.", "\n\nThe statistical area \"Midlaren\", which can also include the surrounding countryside, has a population of around 360.", "\n\nReferences\n\nCategory:Populated places in Drenthe\nCategory:Tynaarlo" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0.011111111111111112, 0, 0 ]
0.002778
5
[ { "analysis_explanation": null, "end": 18, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 44, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39 }, { "analysis_explanation": null, "end": 110, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102 }, { "analysis_explanation": null, "end": 155, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146 } ]
[ "/* SPDX-License-Identifier: BSD-3-Clause */\n\n#include \"log.h\"\n#include \"tpm2.h\"\n#include \"tpm2_auth_util.h\"\n#include \"tpm2_options.h\"\n#include \"tpm2_tool.h\"\n\ntypedef struct changeeps_ctx changeeps_ctx;\nstruct changeeps_ctx {\n const char *auth_str;\n tpm2_session *auth_session;\n};\n\nstatic changeeps_ctx ctx;\n\n\nstatic bool on_option(char key, char *value) {\n\n switch (key) {\n case 'p':\n ctx.auth_str = value;\n break;\n }\n\n return true;\n}\n\nstatic bool tpm2_tool_onstart(tpm2_options **opts) {\n\n static struct option topts[] = {\n { \"auth\", required_argument, NULL, 'p' },\n };\n\n *opts = tpm2_options_new(\"p:\", ARRAY_LEN(topts), topts, on_option, NULL, 0);\n\n return *opts !", "= NULL;\n}\n\nstatic tool_rc tpm2_tool_onrun(ESYS_CONTEXT *ectx, tpm2_option_flags flags) {\n\n UNUSED(flags);\n\n tool_rc rc = tpm2_auth_util_from_optarg(ectx, ctx.auth_str,\n &ctx.auth_session,\n false);\n if (rc !", "= tool_rc_success) {\n LOG_ERR(\"Failed loading platform auth.\");", "\n return rc;\n }\n\n return tpm2_changeeps(ectx, ctx.auth_session);\n}\n\nstatic tool_rc tpm2_tool_onstop(ESYS_CONTEXT *ectx) {\n UNUSED(ectx);\n\n return tpm2_session_close(&ctx.auth_session);\n}\n\n// Register this tool with tpm2_tool.c\nTPM2_TOOL_REGISTER(\"changeeps\", tpm2_tool_onstart, tpm2_tool_onrun, tpm2_tool_onstop, NULL)\n" ]
{ "pile_set_name": "Github" }
[ 0.008368200836820083, 0.004366812227074236, 0, 0.0029585798816568047 ]
0.003923
5
[ { "analysis_explanation": null, "end": 200, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173 }, { "analysis_explanation": null, "end": 410, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 404 }, { "analysis_explanation": null, "end": 884, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 878 }, { "analysis_explanation": null, "end": 907, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 901 }, { "analysis_explanation": null, "end": 1075, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1069 }, { "analysis_explanation": null, "end": 1201, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1195 } ]
[ "Targets and objectives\n\nThe ICA analysts homed in on a signal coming from a remote farm in Colorado, USA. ", "The traces were left by a certain Olivia Hall — a 24-year-old cyberactivist who has been working with the Shadow Client all this time. ", "Also known under the hacker name “Delriego”, she leads the cyber division. ", "She was also involved in the Hamsun Oil incident and took out some major corporations back during her college years. ", "She met the Shadow Client in Sierra Leone in 2002. ", "His other collaborators include Sean Rose — a radical activist and bomb maker, responsible for several terrorist attacks, raised in a Marxist collective. ", "As a teenager, Rose fled to Vancouver and was later recruited by The Pristine Army — a terror network committed to fight the spread of civilization. ", "After a job gone wrong, Rose became a freelancer, and amidst his accomplishments there can be found both the bombing of Hamsun Oil rig and the recent kidnapping of Thomas Cross. ", "Nowadays, Sean Rose leads a private militia and the remote farm is used as their training grounds. ", "Besides the Shadow Client, the militia also works closely with the Delgado cartel and there were mentions of CICADA being seen on the perimeter. ", "Right now, Sean Rose is working on eliminating Simon Devaraux — the CEO of Biosphere. ", "Devaraux is mentioned to be \"exactly like Thomas Cross\", meaning impossible to get close to. ", "The way in is a Link 4-brand smartwatch, armed with a bomb. ", "Rose is a guy to whom the ends justify the means — the militia is almost scared of him, thinking there is not a job he wouldn't do. ", "He's also been assembling a huge army mixed and matched from different organizations. ", "It is presumed that he's cracking under pressure and thus has to be treated by Dr. Oscar Lafayette.", "\n\nSean’s private militia needs bests of the bests. ", "He recruits a handful of professionals such as Penelope Graves — an Interpol analyst who previously led a manhunt on Sean Rose himself before ultimately joining his side. ", "According to word of mouth, she has discovered evidence of corruption and abuse of power by the higher levels of the UN and was told to keep quiet by her supervisors, which led her to question the rights and wrongs. ", "In reality, she is working with the Shadow Client behind the scenes, asking difficult questions and trying to get close to Rose. ", "Familiar with IAGO and Cobb’s death, she also met Olivia Hall before this undercover mission.", "\n\nIn turn, everyone who Sean believes is working for him is actually working for the Shadow Client. ", "Ezra Berg — a former Mossad agent, specializing in interrogation techniques and with a particular interest in experimental hypnosis, psychoactives and subliminal mind control. ", "His role is getting information out of a man he holds hostage in the basement of the farm — William Candler, one of the Heralds of Providence. ", "He learns about Providence “Partners” and “Constant” as well as an important yet hidden truth: Providence has their people on every IAGO auction to control what information doesn't get leaked. ", "They stay in the shadows, they don't intervene, they maintain the order and strike only when absolutely necessary.", "\n\nLast but not least, there is Maya Parvati — a former hired killer for the Tamil Tigers. ", "In turn, this role later granted her the position of the militia training instructor on the Colorado farm. ", "She got into the Tamil Tigers thanks to her father, who was one of the leaders of the organization. ", "She grew up raised by soldiers and mercenaries and ended up as a silent infiltrator when she was barely a teenager. ", "The Tamil Tigers disbanded in 2009 and Parvati embarked on a journey with a pirate called The Maelstrom, known for hijacking a TI-class supertanker back in 2014. ", "For some, he’s even seen as a legend. ", "Now, his past has been entirely erased, thanks to the efforts of Olivia Hall. ", "Parvati herself is also connected to Sean Rose in a different way. ", "She allegedly lost an arm to a grenade blast during the Hamsun Oil rig explosion. ", "Both The Maelstrom and Sean Rose were involved in the attack, although it is unknown why she decided to join the terrorist.", "\n\nBesides eliminating the targets, the ICA also wants 47 to get access to the basement of the house located on the Colorado farm. ", "In it, 47 finds out about the underlying conspiracy, all being run by the Shadow Client — his ultimate goal being to destroy Providence. ", "So far, he’s responsible for the kidnapping of Thomas Cross, murdering Providence’s keyholders, and stealing the intelligence from the organization’s vault in New York. ", "He’s also been using the Agency to do his dirty work, working closely with the organization’s Erich Soders, as he himself spends that time observing their best man from a distance. ", "This is also the case in Colorado. ", "As 47 leaves the mission area, the Shadow Client watches him from afar. ", "He’s on a line with none other than his companion Olivia Hall and they discuss the current matters. ", "Olivia’s scared that the ICA is going to continue their pursuit after her but the Shadow Client believes there was additional time bought just by switching the Agency’s attention to Sean Rose and his private militia. ", "He claims he knows 47 better than anyone, as it is revealed that he’s one of his Romanian “brothers”. ", "He relays a tale of their upbringings and their escape from the facility that led them to become a short-lived part of a small farming community which, in turn, was then slaughtered by people who came looking for the runaway boys." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.009433962264150943, 0.007407407407407408, 0, 0, 0.0196078431372549, 0.006493506493506494, 0.006711409395973154, 0.011235955056179775, 0.010101010101010102, 0.013793103448275862, 0.023255813953488372, 0.010752688172043012, 0, 0, 0, 0.010101010101010102, 0, 0.011695906432748537, 0.004629629629629629, 0.007751937984496124, 0.021505376344086023, 0.01, 0.011363636363636364, 0.006993006993006993, 0.0051813471502590676, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0.01282051282051282, 0.014925373134328358, 0, 0.008130081300813009, 0.007692307692307693, 0.0072992700729927005, 0.011834319526627219, 0.011049723756906077, 0, 0.013888888888888888, 0.01, 0.018433179723502304, 0, 0 ]
0.007528
5
[ { "analysis_explanation": null, "end": 99, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91 }, { "analysis_explanation": null, "end": 104, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101 }, { "analysis_explanation": null, "end": 151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140 }, { "analysis_explanation": null, "end": 167, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156 }, { "analysis_explanation": null, "end": 431, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 414 }, { "analysis_explanation": null, "end": 482, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478 }, { "analysis_explanation": null, "end": 525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516 }, { "analysis_explanation": null, "end": 625, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618 }, { "analysis_explanation": null, "end": 657, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653 }, { "analysis_explanation": null, "end": 675, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 666 }, { "analysis_explanation": null, "end": 815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 811 }, { "analysis_explanation": null, "end": 917, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 907 }, { "analysis_explanation": null, "end": 963, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 951 }, { "analysis_explanation": null, "end": 984, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 975 }, { "analysis_explanation": null, "end": 1138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1131 }, { "analysis_explanation": null, "end": 1229, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1220 }, { "analysis_explanation": null, "end": 1270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1256 }, { "analysis_explanation": null, "end": 1303, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1295 }, { "analysis_explanation": null, "end": 1349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1337 }, { "analysis_explanation": null, "end": 1764, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1749 }, { "analysis_explanation": null, "end": 1770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1766 }, { "analysis_explanation": null, "end": 1877, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1862 }, { "analysis_explanation": null, "end": 1941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1932 }, { "analysis_explanation": null, "end": 2329, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2325 }, { "analysis_explanation": null, "end": 2358, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2354 }, { "analysis_explanation": null, "end": 2392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2381 }, { "analysis_explanation": null, "end": 2451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2447 }, { "analysis_explanation": null, "end": 2532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2523 }, { "analysis_explanation": null, "end": 2806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2791 }, { "analysis_explanation": null, "end": 3191, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3179 }, { "analysis_explanation": null, "end": 3338, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3330 }, { "analysis_explanation": null, "end": 3595, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3591 }, { "analysis_explanation": null, "end": 3607, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3600 }, { "analysis_explanation": null, "end": 3721, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3717 }, { "analysis_explanation": null, "end": 3846, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3839 }, { "analysis_explanation": null, "end": 3885, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3876 }, { "analysis_explanation": null, "end": 4020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4011 }, { "analysis_explanation": null, "end": 4233, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4225 }, { "analysis_explanation": null, "end": 4249, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4247 }, { "analysis_explanation": null, "end": 4375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4365 }, { "analysis_explanation": null, "end": 4436, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4424 }, { "analysis_explanation": null, "end": 4458, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4448 }, { "analysis_explanation": null, "end": 4544, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4536 }, { "analysis_explanation": null, "end": 4652, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4640 }, { "analysis_explanation": null, "end": 4760, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4752 }, { "analysis_explanation": null, "end": 4895, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4884 }, { "analysis_explanation": null, "end": 4940, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4934 }, { "analysis_explanation": null, "end": 5125, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5116 }, { "analysis_explanation": null, "end": 5240, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5232 } ]
[ "[Calixarene C-91 stimulates Ca2+ accumulation in the myometrium mitochondria].", "\nCalixarenes, owing to the ability to form supramolecular complexes with biologically important molecules and ions, can influence a course of biochemical processes and, accordingly, be considered as perspective molecular platforms for creation of physiologically active compounds. ", "The work purpose is to study calixarene C-91 influence on systems of active Ca ions transport which are localized in subcellular membrane structures (mitochondria, sarcoplasmic reticulum, plasma membrane) of myometrial cells. ", "It has been shown, that calixarene C-91 addition to incubation medium led to an increase in Ca2+ accumulation level in mitochondria. ", "The maximal stimulating effect was 173% and it was observed at 100 microM concentration. ", "It is suggested, that calixarene C-91 can enter mitochondria with the subsequent precipitation of Ca ions in a matrix therefore calcium capacity increases, and as a consequence, higher Ca2+ accumulation in these structures is observed. ", "In a wide range of concentration (1-100 microM) calixarene C-91 did not influence a level of Ca2+ accumulation in sarcoplasmic reticulum of myometrial cells. ", "Titration of solubilized Ca2+, Mg2+-ATPase by calixarene C-91 (0,1-100 microM) did not cause changes in its activity. ", "Thus, calixarene C-91 increases Ca2+ accumulation level in mitochondria, but practically does not influence calcium pumps activity of a plasma membrane and sarcoplasmic reticulum of myometrial cells." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.008849557522123894, 0, 0, 0, 0, 0, 0 ]
0.000983
5
[ { "analysis_explanation": null, "end": 716, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 704 }, { "analysis_explanation": null, "end": 1340, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1325 } ]
[ "Total knee arthroplasty after varus distal femoral osteotomy vs native knee: similar results in a case control study.", "\nThe aim of this study was to investigate the results of total knee arthroplasty (TKA) performed after varus distal femoral osteotomy (VrDFO), in comparison to a control group of TKAs performed as the primary intervention for arthrosis. ", "Main hypothesis was that the medium term results for the two groups would be similar. ", "All TKAs performed after VrDFO were extracted from a single centre, prospective database of 4046 arthroplasties. ", "A case-control study was performed with a control group comprising two TKAs performed as the primary intervention for each TKA after VrDFO, and matched for sex, age at intervention, body mass index, the type of arthrosis and the type of implant. ", "All prostheses used a system of posterior stabilisation by a third median condyle (Laboritoire Tornier-Wright). ", "The primary outcome measure was the post-operative Knee Society Score (KSS). ", "Fourteen TKAs after VrDFO were identified, with a median follow-up of 42 months (12-102 months). ", "The control group comprised 28 patients. ", "There were no significant differences between groups in terms of the matching criteria. ", "Pre-operatively, there were no differences between groups in terms of KSS (knee and function scores), range of motion (fixed-flexion and maximum flexion), and mechanical axes on long leg films. ", "Operative duration was identical for the two groups. ", "In the VrDFO group there was more lateral intra-operative laxity (p = 0.006), more intra-operative complications (patella tendon injuries, p = 0.0008), and more frequent need for screw support for the tibial component due to more severe lower limb deformity (p < 0.0001). ", "No significant difference was found between groups with regards to the post-operative KSS; median knee score was 91.7 in the VrDFO group compared to 82.3 in the control group, and function score 70.6 compared to 77.8. ", "Range of motion was comparable between groups with median maximum flexion in the VrDFO group of 115.7° and 110.9° in the control group. ", "TKAs after VrDFO is uncommon and can carry an increased risk of intra-operative complications. ", "Despite this, the medium term results are comparable to arthroplasty performed as a primary intervention. ", "TKA should not be denied to patients with previous femoral osteotomy, but care must be taken with gap balancing and axis correction. ", "3." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.004219409282700422, 0, 0, 0.0040650406504065045, 0.008928571428571428, 0.025974025974025976, 0, 0, 0, 0.005154639175257732, 0, 0, 0.0045871559633027525, 0, 0, 0, 0.007518796992481203, 0 ]
0.003181
5
[ { "analysis_explanation": null, "end": 470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 465 }, { "analysis_explanation": null, "end": 908, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 882 }, { "analysis_explanation": null, "end": 1013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1008 }, { "analysis_explanation": null, "end": 1067, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1058 }, { "analysis_explanation": null, "end": 1082, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1069 }, { "analysis_explanation": null, "end": 1473, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1468 }, { "analysis_explanation": null, "end": 1863, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1858 }, { "analysis_explanation": null, "end": 2037, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2032 }, { "analysis_explanation": null, "end": 2103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2098 } ]
[ "1. ", "Field of the Invention\nThis invention relates to wheelchair devices and wheeled walker devices for assisting handicapped individuals to move about and, more particularly, to powered wheelchairs and walkers operable by the user or occupant thereof. ", "Specifically, the present invention relates to a wheelchair/walker combination which is adapted to permit the occupant to operate and move the device in a fully sitting position and to rise to an upright position without lower body muscular effort on the part of the handicapped occupant and to also operate and move the device from such an upright position.", "\n2. ", "Description of the Prior Art\nWheelchairs of various types and designs have been utilized for a considerable period of time for the purpose of transporting physically handicapped individuals having limited or no use of their legs, such as paraplegics and quadriplegics. ", "Wheelchair designs have become quite sophisticated as a result of efforts intended to enable handicapped individuals to have a degree of control over their own movements. ", "Thus, powered wheelchairs have incorporated a wide variety of control and safety devices to assist the handicapped operator thereof to achieve relatively independent movement and transportation. ", "A major disadvantage with wheelchairs in general, however, is that such devices, while assisting handicapped individuals in moving about an area, restrict such individuals to a relatively rigid sitting position within the chair which causes continual pressure contact on the same areas of the body. ", "This can lead to serious problems including skin and tissue degeneration, gangrene and the like. ", "In the case of children, lack of weight bearing on the legs can cause growth defects including leg shortness.", "\nWalker devices were designed to overcome some of the aforementioned problems relating to wheelchairs. ", "It has been shown that devices which enable a handicapped individual to remain in a standing position for relatively long periods of time (e.g. 2 or more hours), provide substantial advantages and benefits to handicapped individuals. ", "More specifically, passive standing has been shown to produce beneficial physiological effects which include reduction of bone and calcium loss, reduction of hypercalciuria and urinary calculi, increased muscular tone and maintenance of range of motion, improved orthostatic circulatory regulation, and increased bladder pressure. ", "In addition, substantial psychological benefits result from permitting physically handicapped individuals to remain in a standing position. ", "Such standing positions provide increased independence and morale as well as permit the handicapped individual to position himself so as to be able to work at various working stations. ", "Consequently, walker devices of various types have been developed to permit the handicapped individual to remain in a standing position for periods of at least several hours at a time.", "\nWalkers present a number of problems which are not encountered in wheelchair designs. ", "Such problems arise in part from the fact that a user's body extends substantially above the center of gravity of the walker, thereby leading to the possibility of tipping over. ", "If a walker is designed with a relatively large base area to avoid the tipping problem, maneuverability of the walker is restricted. ", "Additionally, it becomes more difficult to provide support for the user of the walker. ", "Also, movement into a walker is generally much more difficult than transferring to a wheelchair since the user must not only transfer to the device, but must also achieve a standing position, and many users of such devices have no leg control or use whatsoever.", "\nEarly walker devices such as illustrated in U.S. Pat. ", "No. ", "2,168,424 are useful although they have numerous problems and deficiencies. ", "Most particularly is the fact that such early devices require the handicapped operator of the device to utilize his own muscular arm power to maneuver the device about a room or a ground surface area. ", "Thus, the usefulness of the device was dependent entirely on the physical capability and strength of the user.", "\nPowered walker devices were developed which overcame the aforementioned deficiency. ", "Such power devices, as illustrated in U.S. Pat. ", "No. ", "3,872,945, enable the user to stand within the walker and maneuver and move about an area utilizing a battery power pack or the like carried on the walker itself. ", "This particular patent discloses such a device which enables the user to be highly maneuverable in an area.", "\nMany power walker devices have a rear entryway and carry the power pack and other apparatus up front. ", "These designs limit the distance which the operator of the walker may reach forwardly of the walker and thereby restrict usefulness when working at a table or other work space positioned in front of the walker. ", "Thus, in such arrangements, an operator must preferably position himself sideways to a work area in order to provide close proximity thereto. ", "This sideways orientation to a work area presents certain problems in terms of comfort of and flexibility to the user. ", "The device illustrated in U.S. Pat. ", "No. ", "3,872,945 overcomes this problem and enables the user to be stationed within the walker apparatus very close to the front thereof, thereby enabling the user to reach beyond the walker a significant distance.", "\nA major problem inherent with all of the aforementioned powered walker designs, including that of U.S. Pat. ", "No. ", "3,872,945 is that an individual must be assisted into the walker. ", "Moreover, once an individual is positioned within these walkers, they must remain in a standing position. ", "If an individual positioned within the walker wishes to be placed in a seated position, the individual must be entirely removed from the walker. ", "Thus, these designs limit overall usefulness of the walker. ", "Accordingly, there remains a need for a powered walker apparatus which is easy for a handicapped individual to enter and exit unassisted and which enables an operator to move freely from a sitting to a standing position, again unassisted. ", "Furthermore, there remains a need for such a device that will preferably also function as a wheelchair thereby permitting the occupant to move about in a seated position as well and thereby obviate the need for transference between walker and wheelchair." ]
{ "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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 2015, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2000 }, { "analysis_explanation": null, "end": 2262, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2248 }, { "analysis_explanation": null, "end": 2919, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2897 }, { "analysis_explanation": null, "end": 3725, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3721 }, { "analysis_explanation": null, "end": 3729, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3726 }, { "analysis_explanation": null, "end": 4249, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4245 }, { "analysis_explanation": null, "end": 4253, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4250 }, { "analysis_explanation": null, "end": 5134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5130 }, { "analysis_explanation": null, "end": 5138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5135 }, { "analysis_explanation": null, "end": 5454, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5450 } ]
[ "The Wild will hold an open practice at 9 a.m. and a scrimmage at 1 p.m. for fans at TRIA Rink on Saturday, Sept. 14, as part of the \"Flood The Rink\" events taking place that day. ", "Fans can enter TRIA Rink beginning at 8 a.m. There will be no on ice activity from 11 a.m. to 12:45 p.m. on Sept. 14.", "\n\nST. ", "PAUL -- Minnesota Wild General Manager Bill Guerin announced today the National Hockey League (NHL) club will open its 2019 training camp on Friday, Sept. 13 at 9 a.m. at TRIA Rink at Treasure Island Center.", "\n\nMinnesota also announced its training camp roster and schedule today. ", "The Wild's training camp roster currently consists of 40 players, with additions coming from players participating in the 2019 NHL Prospect Tournament in Traverse City, Mich. Player medical examinations and fitness testing will take place the morning of Sept. 12.", "\n\nMinnesota Wild Training Camp Roster (PDF)\n\nPlayer media availability will occur after each practice session. ", "Head Coach Bruce Boudreau will be available to the media following the final practice session each day. ", "For more information, please contact Aaron Sickman (651) 602-6009 or Megan Kogut (651) 312-3439 in the Wild Media Relations Department.", "\n\n\n\n2019 MINNESOTA WILD PRESEASON SCHEDULE\n\nDate Opponent Location Time (CT) Tuesday, Sept. 17 Dallas Stars Xcel Energy Center 7 p.m. Wednesday, Sept. 18 at Winnipeg Jets Bell MTS Place 7 p.m. Saturday, Sept. 21 Colorado Avalanche Xcel Energy Center 5 p.m. Sunday, Sept. 22 at Colorado Avalanche Pepsi Center 6 p.m. Thursday, Sept. 26 at Dallas Stars American Airlines Center 7:30 p.m. Sunday, Sept. 29 Winnipeg Jets Xcel Energy Center 1 p.m.\n\n\n\nMinnesota Wild preseason tickets are on sale now at the Xcel Energy Center Box Office and Ticketmaster.com. ", "Single-game tickets for the 2019-20 season will go on sale on Saturday, Sept. 14, at 9 a.m. at the Xcel Energy Center Box Office and at 10 a.m. on wild.com and Ticketmaster.com. ", "11-game, half season and full season tickets for the Minnesota Wild's 2019-20 season are currently available for purchase. ", "Please visit tickets.wild.com or contact a Wild Ticket Sales Representative by calling or texting 651-222-WILD for more information." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.00558659217877095, 0.008547008547008548, 0, 0.01932367149758454, 0, 0, 0.009009009009009009, 0.009615384615384616, 0.02962962962962963, 0.010830324909747292, 0.016853932584269662, 0.008130081300813009, 0 ]
0.00904
5
[ { "analysis_explanation": null, "end": 45, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39 }, { "analysis_explanation": null, "end": 71, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65 }, { "analysis_explanation": null, "end": 115, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97 }, { "analysis_explanation": null, "end": 177, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169 }, { "analysis_explanation": null, "end": 223, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217 }, { "analysis_explanation": null, "end": 283, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262 }, { "analysis_explanation": null, "end": 295, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287 }, { "analysis_explanation": null, "end": 351, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340 }, { "analysis_explanation": null, "end": 367, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 362 }, { "analysis_explanation": null, "end": 424, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 420 }, { "analysis_explanation": null, "end": 458, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442 }, { "analysis_explanation": null, "end": 468, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 462 }, { "analysis_explanation": null, "end": 518, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509 }, { "analysis_explanation": null, "end": 577, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572 }, { "analysis_explanation": null, "end": 705, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 701 }, { "analysis_explanation": null, "end": 746, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 733 }, { "analysis_explanation": null, "end": 841, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 818 }, { "analysis_explanation": null, "end": 977, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 963 }, { "analysis_explanation": null, "end": 1054, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1046 }, { "analysis_explanation": null, "end": 1106, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1093 }, { "analysis_explanation": null, "end": 1136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1125 }, { "analysis_explanation": null, "end": 1196, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1192 }, { "analysis_explanation": null, "end": 1282, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1265 }, { "analysis_explanation": null, "end": 1289, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1283 }, { "analysis_explanation": null, "end": 1321, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1315 }, { "analysis_explanation": null, "end": 1341, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1322 }, { "analysis_explanation": null, "end": 1380, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1374 }, { "analysis_explanation": null, "end": 1399, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1381 }, { "analysis_explanation": null, "end": 1444, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1438 }, { "analysis_explanation": null, "end": 1461, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1445 }, { "analysis_explanation": null, "end": 1503, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1497 }, { "analysis_explanation": null, "end": 1522, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1504 }, { "analysis_explanation": null, "end": 1573, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1564 }, { "analysis_explanation": null, "end": 1590, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1574 }, { "analysis_explanation": null, "end": 1630, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1624 }, { "analysis_explanation": null, "end": 1643, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1634 }, { "analysis_explanation": null, "end": 1784, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1766 }, { "analysis_explanation": null, "end": 1822, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1804 }, { "analysis_explanation": null, "end": 1833, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1827 }, { "analysis_explanation": null, "end": 1885, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1878 }, { "analysis_explanation": null, "end": 1940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1929 }, { "analysis_explanation": null, "end": 2004, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1990 }, { "analysis_explanation": null, "end": 1740, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1724 }, { "analysis_explanation": null, "end": 1897, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1889 }, { "analysis_explanation": null, "end": 1918, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1902 }, { "analysis_explanation": null, "end": 2072, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2056 }, { "analysis_explanation": null, "end": 1121, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1107 }, { "analysis_explanation": null, "end": 1151, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1137 } ]
[ "Comas Handlebar Aluminium H115mm\n\n54,90 €incl. ", "19% Tax excl. ", "Shipping costs\n\nThis is the new Comas 7075-T6 aluminium handlebar with an exclusive geometrie, especially orientated on modern trends.", "With the higher overall hight and extreme less angulation provides greater riding mobility.", "\n\nThis handlebar is perfect in combination with the Comas 20° stem – for a low gravity point with natural handlebar position – without negative angle!", "\n\nThe tube has three different wall thicknesses for maximum stiffness and low weight." ]
{ "pile_set_name": "Pile-CC" }
[ 0.02127659574468085, 0, 0, 0, 0, 0 ]
0.003546
5
[ { "analysis_explanation": null, "end": 106, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 104 } ]
[ "freakydr2cheekz chaturbate record\n\nI enjoy the pool you & your wife have freakydr2cheekz chaturbate . ", "I push it deep in my wet pussy, hard. ", "I want you to sit right there and pull out your cock. ", "Don't drool too much as you look at my wrinkled soles. ", "No, I want that cum and I crave it hardcore. ", "freakydr2cheekz record Aren't you a little old to be Trick-or-Treating. ", "Join #TheASSassins my #SRFamilyARMYI went to visit @MissLollipopMFC for her birthday,all she wanted as a present was to claim my anal strapon virginity and FUCK my ass good. ", "Cam show starts off with some deepthroat and gagging, spit, and then ride ride ride a big dildo in pussy in ass, gapes & squirt. ", "There is no getting out of it anymore. ", "I spread my ass cheeks and my pussy says hi to the camera. ", "This 14 minute Public-Play/Flashing extravaganza has Bella dressed up as cute Kitty Cat, including her butt plug she inserts on her first Uber ride." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0.013888888888888888, 0.005747126436781609, 0.007751937984496124, 0, 0, 0.02027027027027027 ]
0.004333
5
[ { "analysis_explanation": null, "end": 384, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 371 }, { "analysis_explanation": null, "end": 781, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 772 }, { "analysis_explanation": null, "end": 825, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 820 }, { "analysis_explanation": null, "end": 854, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 845 } ]
[ "Glossary of spider terms\n\nThis glossary describes the terms used in formal descriptions of spiders; where applicable these terms are used in describing other arachnids.", "\n\nTerms\n\nA\n\nAbdomen or opisthosoma: One of the two main body parts (tagmata), located towards the posterior end; see also Abdomen: Other animals\n\nAccessory claw: Modified setae at the tip of the tarsus in web-building spiders; used with tarsal claws to grip strands of the web\n\nAnal tubercle: A small protuberance (tubercule) above the spinnerets through which the anus opens\n\nApophysis (plural apophyses): An outgrowth or process changing the general shape of a body part, particularly the appendages; often used in describing the male pedipalp → retrolateral tibial apophysis\n\nAtrium (plural atria): An internal chamber at the entrance to the copulation duct in female haplogyne spiders\n\nB\nBidentate: Having two teeth\n\nBook lungs: Respiratory organs on the ventral side (underside) of the abdomen, in front of the epigastric furrow, opening through narrow slits; see also Book lungs\n\nBranchial operculum: → operculum\n\nBulbus → palpal bulb\n\nC\nCalamistrum (plural calamistra): Modified setae (bristles) on the metatarsus of the fourth leg of spiders with a cribellum, arranged in one or more rows or in an oval shape, used to comb silk produced by the cribellum; see also Calamistrum\n\nCaput (plural capita): → cephalic region\n\nCarapace: A hardened plate (sclerite) covering the upper (dorsal) portion of the cephalothorax; see also Carapace\n\nCarpoblem: The principal tibial apophysis on the male pedipalp; also just called the tibial apophysis\n\nCephalic region: The front part of the cephalothorax, separated from the thoracic region by the cervical groove\n\nCephalothorax or prosoma: One of the two main body parts (tagmata), located towards the anterior end, composed of the head (cephalic region or caput) and the thorax (thoracic region), the two regions being separated by the cervical groove; covered by the carapace and bearing the eyes, legs, pedipalps and mouthparts\n\nCervical groove: A shallow U-shaped groove, separating the cephalic and thoracic regions of the carapace\n\nChelate: A description of a chelicera where the fang closes against a tooth-like process\n\nChelicera (plural chelicerae): One of two appendages at the front of the carapace, made up of basal portion, the paturon, and the fang; sometimes called the jaw; see also Chelicerae\n\nCheliceral furrow: A shallow groove on the basal portion of a chelicera accommodating the fang, usually having teeth on its margins\n\nCheliceral tooth: A tooth-like extension on the margin of the cheliceral furrow\n\nChilum: A small hardened plate (sclerite) at the base of the chelicerae, under the clypeus\n\nClaw → tarsal claw\n\nClaw tuft: A dense group of hairs or bristles (setae) underneath the paired tarsal claws, usually well developed in hunting spiders\n\nClypeus: The area of the carapace between the anterior (frontmost) eyes and the anterior edge of the carapace\n\nColulus: A short protuberance in the middle of the underside of the abdomen in front of the spinnerets, considered to be a modification of the cribellum\n\nConductor → palpal bulb\n\nCopulatory opening: An opening in the ventral abdomen of female spiders; in entelegyne spiders, a double opening in the epigyne through which the embolus is inserted; in haplogyne spiders, a single opening through which male palpal bulb is inserted\n\nCoxa → segments\n\nCrenulate: Having longitudinal ridges\n\nCribellum: A sieve-like plate in front of the spinnerets, used in conjunction with the calamistrum; spiders with a cribellum are called cribellate, those without ecribellate; see also Cribellum\n\nCymbium (plural cymbia): The end part of the tarsus of the pedipalp in a mature male, usually hollowed out and bearing the palpal bulb\n\nD\nDionychous: With two claws on the tarsus of each leg; a feature of spiders in the clade Dionycha\n\nDorsal groove → fovea\n\nDorsum: The upper (dorsal) portion or surface of the body or abdomen; the adjective dorsal may be applied to the upper portion or surface of any part of the body; → ventrum\n\nE\nEcribellate → cribellum\n\nEmbolus → palpal bulb\n\nEndite → maxilla\n\nEndosternite: An internal hardened plate (sclerite)\n\nEntelegyne: A spider whose female has an epigyne and separate ducts leading to spermathecae for sperm storage and to the uterus for fertilization, creating a \"flow-through\" system; → haplogyne; see also Entelegynae\n\nEpigastric furrow or epigastric fold: A transverse slit towards the front (anterior) of underside of the abdomen; the front pair of book lungs open at the edge of this furrow as do the genital openings (gonopores)\n\nEpigyne or epigynum (plural epigynes): A hardened plate on the underside of the female abdomen in which the copulatory openings are located; only fully developed in mature females of entelegyne spiders; see also Epigyne\n\nEyes: The basic number of eyes is eight, arranged in two rows (e.g. as in Gnaphosidae); the front row are the anterior eyes, the row behind the posterior eyes; the four eyes to the edges are the lateral eyes, the four eyes in the centre the median eyes; the number of eyes, their sizes and arrangement varies widely and is characteristic of spider families → main eye, secondary eye\n\nF\nFang: The final hinged part of the chelicera, normally folded down into a groove in the basal part of the chelicera; venom is injected via an opening near the tip of the fang\n\nFemur → segments\n\nFertilization duct: A duct in female entelegyne spiders leading from the spermathecae to the uterus\n\nFolium: A broad leaf-like marking along the medial line of the top of the abdomen\n\nFovea (also called thoracic furrow or dorsal groove): A depression or pit in the centre of the carapace of a spider marking an inward projection of the exoskeleton to which stomach muscles are attached\n\nG\nGenital opening → gonopore\n\nGnathocoxa → maxilla\n\nGonopore: The genital opening; located in the epigastric furrow; the opening of the duct from the uterus in females and from the testes in males; see also Gonopore\n\nH\nHaematodocha → palpal bulb\n\nHaplogyne: A spider whose female lacks an epigyne and in which the same ducts are used to transport sperm to the uterus and to the spermathecae; → entelegyne\n\nHeart mark: A narrow marking along the top of the abdomen roughly corresponding to the location of the heart\n\nL\nLabio-sternum mound: A mound separating the labium from the sternum, found in found in some tarantulas, where it can be a diagnostic feature\n\nLabium (plural labia): A hardened plate (sclerite) between the maxillae at the front of the sternum; see also Arthropod mouthparts: Labium\n\nLabrum (plural labra): A component (the \"upper lip\") of the mouthparts, concealed by the chelicerae; see also Arthropod mouthparts: Labrum\n\nLateral (applied to appendages): Viewed from above or below, the sides of the leg or pedipalp, i.e. the surfaces parallel to the line of sight; → prolateral, retrolateral\n\nLaterigrade: With legs directed to the side, hence appearing like and moving like a crab; → prograde\n\nleg formula: The legs are numbered from the front from I to IV; the relative length of the legs can be represented by four numbers from the longest to the shortest; e.g. 1423 = first leg (leg I) is longest and third leg (leg III) is shortest\n\nM\nMain eye: One of the two anterior median eyes (AME) that have the light-detecting units (rhabdomeres) pointing towards the source; particularly enlarged in the families Salticidae and Thomisidae; → secondary eye, eyes\n\nMastidion (plural mastidia): A projection or bump on the chelicerae (not to be confused with teeth)\n\nMaxilla (also called endite or gnathocoxa): Modified coxa of the pedipalp, used in feeding; not the structure called by this name in other arthropods, for which see Maxilla (arthropod mouthpart)\n\nMetatarsus → segments\n\nO\nOperculum or branchial operculum (plural opercula): One of the plates on the ventral surface of the abdomen, just in front of the epigastric furrow, covering the book lungs, often pale, yellow or orange in colour; two pairs in Mygalomorphae, one pair in other spiders\n\nOpisthosoma → abdomen\n\nP\nPalp → pedipalp\n\nPalpal bulb (also called bulbus, palpal organ, genital bulb): The copulatory organ of the male spider, carried on the modified last segment of the pedipalp, used to transfer sperm to the female; see also Palpal bulb\n\nConductor: A part of the palpal bulb that accompanies and supports the embolus\n\nEmbolus: The final part of the palpal bulb containing the end of the sperm duct, usually thin, sharp-tipped and strongly hardened (sclerotized)\n\nHaematodocha (plural haematodochae): A membranous, inflatable part of the palpal bulb\n\nMedian apophysis: A projection (apophysis) of the palpal bulb, below the conductor\n\nSubtegulum: A hardened part of the palpal bulb nearer its base than the tegulum\n\nTegulum: The main hardened part of the palpal bulb\n\nParacymbium: An outgrowth of the cymbium on the male pedipalp\n\nPatella → segments\n\nPaturon: The basal segment of a chelicera to which the fang connects\n\nPedicel or pedicel: The narrow connection between the cephalothorax and abdomen\n\nPedipalp (plural pedipalps or pedipalpi; also called just palp): The second appendage of the cephalothorax in front of the first leg; bears the palpal bulb in male spiders; → segments\n\nPlumose setae are hairs having outgrowths or appendages on two sides, giving a feather-like appearance; the appendages vary in number, size and arrangement\n\nPluridentate: Having multiple teeth\n\nProcurved: Used to describe a structure which is curved in such a way that the outer edges are in front of the central part; opposite recurved\n\nProlateral: Viewed from above or below, the side of a leg or pedipalp nearest the mouth, i.e. the side facing forward; opposite retrolateral (includes diagram)\n\nPromarginal: The side of the cheliceral furrow facing forward; particularly used for describing teeth; opposite retromarginal\n\nProsoma → cephalothorax\n\nR\nRastellum (plural rastella): An often rake-like structure at end of the chelicera in mygalomorph spiders; used in burrowing\n\nRebordered: Having a thickened edge (i.e. border) (more rarely seen as reborded, from the French , e.g. in Levy (1984)); particularly used of the labium\n\nReceptaculum (plural receptacula) → spermatheca\n\nRecurved: Used to describe a structure which is curved in such a way that the outer edges are behind the central part; opposite procurved\n\nRetrolateral: Viewed from above or below, the side of a leg or pedipalp furthest from the mouth, i.e. the side facing backwards; opposite prolateral\n\nRetrolateral tibial apophysis: A backward-facing projection on the tibia of the male pedipalp; distinguishing feature of the RTA clade\n\nRetromarginal: The side of the cheliceral furrow facing backward (towards the posterior end of the spider); particularly used for describing teeth; opposite promarginal\n\nS\nSclerite: A single hardened (sclerotized) part of the external covering (tegument, exoskeleton)\n\nScopula (plural scopulae): A brush of hairs (setae); called a claw tuft when on the end of the foot (tarsus), where it improves adhesion\n\nScutum (plural scuta): A hardened (sclerotized) plate on the abdomen of some spiders\n\nSecondary eye: An eye belonging to the three pairs – anterior lateral eyes (ALE), posterior median eyes (PME) and posterior lateral eyes (PLE) – that are primarily movement detectors and have the light-detecting units (rhabdomeres) pointing away from the source; → main eye, eyes\n\nSegments or articles of the legs and pedipalps:\n\nCoxa (plural coxae): First leg segment, between body and trochanter; the coxa of the pedipalp is heavily modified to form the maxilla or endite\n\nTrochanter: Second leg segment, between coxa and femur\n\nFemur (plural femora): Third leg segment, between trochanter and tibia\n\nPatella (plural patellae): Fourth leg segment, between femur and tibia\n\nTibia (plural tibiae): Fifth leg segment, between patella and metatarsus\n\nMetatarsus (plural metatarsi; also called basitarsus): Sixth leg segment, between tibia and tarsus; absent in the pedipalp\n\nTarsus (plural tarsi; also called telotarsus): Seventh (last) leg segment, after the metatarsus\n\nSeta (plural setae): A bristle; spiders have a variety of hair-like structures of increasing size that are referred to as hairs, bristles (setae) or spines\n\nSigillum (plural sigilla): A circular indentation on the outside of the spider, showing where an internal muscle is attached; particularly on the sternum in some Mygalomorphae and on the dorsum in some Araneomorphae\n\nSperm duct: A duct in the male palpal bulb used to store sperm\n\nSpermatheca (plural spermathecae; also called receptulacum, receptulacum seminis): A structure in the abdomen of female spiders used to store sperm after insemination and before fertilization; see also Spermatheca\n\nSpigot: A small pointed or cylindrical structure at the tip of a spinneret from which silk emerges\n\nSpine: A pointed, rigid structure on body and legs, usually with a basal joint; spiders have a variety of hair-like structures of increasing size that are referred to as hairs, bristles (setae) or spines\n\nSpinneret: An appendage borne on the abdomen, typically one of six arranged in three pairs: anterior (anterior median, AMS), median (posterior median, PMS) and posterior (posterior lateral, PLS); silk emerges from small spigots on the spinnerets; see also Spinneret\n\nSternum: The lower (ventral) portion of the cephalothorax\n\nStridulating organ: A series of thin ridges on a hardened part of the body; rubbing this with a matching series of short, stiff bristles (setae) elsewhere on the body creates a sound\n\nSubtegulum → palpal bulb\n\nT\nTapetum (plural tapeta): A light-reflecting layer in a secondary eye making the eye appear pale\n\nTarsal claw (claw): One of a set of claws at the tip of the tarsus; there may be a single pair, often concealed in a claw tuft, or an additional third central claw, much smaller than the other two\n\nTarsus → segments\n\nTeeth: Pointed growths or bumps along the margins of the cheliceral furrow\n\nTegulum → palpal bulb\n\nThoracic furrow → fovea\n\nTibia → segments\n\nTrachea (plural tracheae): A thin hardened internal tube, part of the respiratory system in many araneomorph spiders; opens on the underside of the abdomen via a tracheal spiracle; see Trachea § Invertebrates\n\nTrichobothrium (plural trichobothria): A slender hair-like structure of variable length on the legs and pedipalps, arising from a special socket; used to detect air movements, including sounds; → seta, spine\n\nTrochanter → segments\n\nU\nUnidentate: Having a single tooth\n\nV\nVenter (or ventrum): The lower (ventral) portion or surface of the body or abdomen; the adjective ventral may be applied to the upper portion or surface of any part of the body; → dorsum\n\nAbbreviations\nSome abbreviations commonly found in descriptions of spider anatomy include:\n\nALE: anterior lateral eyes → eyes\nALS: anterior lateral spinnerets → spinneret\nAME: anterior median eyes → eyes\nDTA: dorsal tegular apophysis, apophysis on the back of the tegulum \nDTiA: dorsal tibial apophysis, apophysis on the back of a tibia \nLTA: lateral tegular apophysis, apophysis on the side of the tegulum \nMOQ: median ocular quadrangle, the quadrangle formed by the four median eyes, → eyes\nPLE: posterior lateral eyes → eyes\nPLS: posterior lateral spinnerets → spinneret\nPME: posterior median eyes → eyes\nPMS: posterior median spinnerets → spinneret\nRCF: retrolateral cymbial fold, fold on the retrolateral surface of the cymbium\nRTA: retrolateral tibial apophysis, apophysis on the retrolateral surface of a tibia\nVTA: ventral tegular apophysis, apophysis on the underside of the tegulum \nVTiA: ventral tibial apophysis, apophysis on the lower surface of a tibia\n\nSee also\n Spider anatomy\n Glossary of entomology terms\n Anatomical terms of location\n\nReferences\n\nBibliography\n \n \n \n \n \n \n\n \nSpider terms" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0.0032370675975880673 ]
0.001619
5
[ { "analysis_explanation": null, "end": 553, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544 }, { "analysis_explanation": null, "end": 1062, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1053 }, { "analysis_explanation": null, "end": 1357, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1339 }, { "analysis_explanation": null, "end": 2399, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2396 }, { "analysis_explanation": null, "end": 3937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3931 }, { "analysis_explanation": null, "end": 4917, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4912 }, { "analysis_explanation": null, "end": 5648, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5643 }, { "analysis_explanation": null, "end": 5886, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5876 }, { "analysis_explanation": null, "end": 6077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6053 }, { "analysis_explanation": null, "end": 6626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6617 }, { "analysis_explanation": null, "end": 6766, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6757 }, { "analysis_explanation": null, "end": 8612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8600 }, { "analysis_explanation": null, "end": 8634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8621 }, { "analysis_explanation": null, "end": 9177, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9168 }, { "analysis_explanation": null, "end": 10197, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10191 }, { "analysis_explanation": null, "end": 10212, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10208 }, { "analysis_explanation": null, "end": 10218, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10214 }, { "analysis_explanation": null, "end": 11619, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11609 }, { "analysis_explanation": null, "end": 11758, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11746 }, { "analysis_explanation": null, "end": 12069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12063 }, { "analysis_explanation": null, "end": 14152, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14145 }, { "analysis_explanation": null, "end": 14337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14330 }, { "analysis_explanation": null, "end": 14574, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14564 }, { "analysis_explanation": null, "end": 15818, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15794 } ]
[ "Unraveling genomic regulatory networks in the simple chordate, Ciona intestinalis.", "\nThe draft genome of the primitive chordate, Ciona intestinalis, was published three years ago. ", "Since then, significant progress has been made in utilizing Ciona's genomic and morphological simplicity to better understand conserved chordate developmental processes. ", "Extensive annotation and sequencing of staged EST libraries make the Ciona genome one of the best annotated among those that are publicly available. ", "The formation of the Ciona tadpole depends on simple, well-defined cellular lineages, and it is possible to trace the lineages of key chordate tissues such as the notochord and neural tube to the fertilized egg. ", "Electroporation methods permit the targeted expression of regulatory genes and signaling molecules in defined cell lineages, as well as the rapid identification of regulatory DNAs underlying cell-specific gene expression. ", "The recent sequencing of a second Ciona genome (C. savignyi) permits the use of simple alignment algorithms for the identification of conserved noncoding sequences, including microRNA genes and enhancers. ", "Detailed expression profiles are now available for almost every gene that encodes a regulatory protein or cell-signaling molecule. ", "The combination of gene-expression profiles, comparative genome analysis, and gene-disruption assays should permit the determination of high-resolution genomic regulatory networks underlying the specification of basic chordate tissues such as the heart, blood, notochord, and neural tube." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.012195121951219513, 0.010416666666666666, 0.0058823529411764705, 0, 0.0047169811320754715, 0, 0, 0, 0 ]
0.00369
5
[ { "analysis_explanation": null, "end": 68, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63 }, { "analysis_explanation": null, "end": 132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127 }, { "analysis_explanation": null, "end": 176, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161 }, { "analysis_explanation": null, "end": 397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 394 }, { "analysis_explanation": null, "end": 523, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518 }, { "analysis_explanation": null, "end": 990, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 979 } ]
[ "---\nauthor:\n- 'Vinod M. Prabhakaran and Manoj M. Prabhakaran [^1]'\ntitle: 'Assisted Common Information with an Application to Secure Two-Party Sampling'\n---\n\nAcknowledgements {#acknowledgements .unnumbered}\n================\n\nThe example in is based on a suggestion by Jürg Wullschleger. ", "The first author would like to gratefully acknowledge discussions with Venkat Anantharam, Péter Gács, and Young-Han Kim. ", "We thank Hemanta Maji and Mike Rosulek for discussions at an early stage in this work. ", "We also thank Suhas Diggavi and the anonymous referees for carefully reviewing our drafts and making several insightful comments that have helped us greatly improve the paper.", "\n\n[1]{}\n\nR. Ahlswede and J. Körner, “On common information and related characteristics of correlated information sources,” in [*Proc. ", "of the 7th Prague Conference on Information Theory*]{}, 1974.", "\n\nD. Beaver, “Correlated pseudorandomness and the complexity of private computations,” in [*Proc.", " $28$th STOC*]{}, pp. ", "479–488, ACM, 1996.", "\n\nD. Beaver, “Precomputing oblivious transfer,” in Don Coppersmith, editor, [*CRYPTO*]{}, vol. ", "963 of [*Lecture Notes in Computer Science*]{}, pp. ", "97–109, Springer, 1995.", "\n\nT. M. Cover and J. A. Thomas, [*Elements of Information Theory*]{}, 2ed, Wiley, 2006.", "\n\nI. Csiszár and R. Ahlswede, “On oblivious transfer capacity,” in [*Proc. ", "International Symposium on Information Theory (ISIT)*]{}, pp. ", "2061–2064, 2007.", "\n\nI. Csiszár and J. Körner, , 1ed, Akadémiai Kiadó, Budapest, 1981.", "\n\nY. Dodis and S. Micali, “Lower bounds for oblivious transfer reductions,” in Jacques Stern, editor, [*EUROCRYPT*]{}, vol. ", "1592 of [ *Lecture Notes in Computer Science*]{}, pp. ", "42–55, Springer, 1999.", "\n\nA. El Gamal and Y.-H. Kim, , Cambridge, 2012.", "\n\nP. Gács and J. Körner, “Common information is far less than mutual information,” , vol. ", "2, no. ", "2, pp. ", "119–162, 1973.", "\n\nM. Gastpar, B. Rimoldi, and M. Vetterli, “To code or not to code: Lossy source-channel communication revisited,” [*IEEE Transactions on Information Theory*]{}, vol. ", "49, no. ", "5, pp. ", "1147–1158, 2003.", "\n\nR. M. Gray and A. D. Wyner, “Source coding for a simple network,” [*Bell System Technical Journal*]{}, vol. ", "53, no. ", "9, pp. ", "1681–1721, 1974.", "\n\nH. Imai, K. Morozov, and A. C. A. Nascimento, “On the oblivious transfer capacity of the erasure channel,” in [*Proc. ", "International Symposium on Information Theory (ISIT)*]{}, pp. ", "1428–1431, 2006.", "\n\nH. Imai, K. Morozov, and A. C. A. Nascimento, “Efficient oblivious transfer protocols achieving a non-zero rate from any non-trivial noisy correlation,” in [*Proc. ", "International Conference on Information Theoretic Security (ICITS)*]{}, 2007.", "\n\nH. Imai, K. Morozov, A. C. A. Nascimento, and A. Winter, “Efficient protocols achieving the commitment capacity of noisy correlations,” in [*Proc. ", "International Symposium on Information Theory (ISIT)*]{}, pp. ", "1432–1436, 2006.", "\n\nH. Imai, J. Müller-Quade, A. C. A. Nascimento, and A. Winter, “Rates for bit commitment and coin tossing from noisy correlation,” in [*Proc. ", "International Symposium on Information Theory (ISIT)*]{}, pp. ", "45, 2004.", "\n\nY. Ishai, E. Kushilevitz, R. Ostrovsky, and A. Sahai, “Extracting Correlations.” ", "in [*Proc.", " $50$th FOCS*]{}, pp. ", "261–270, IEEE, 2009.", "\n\nS. Kamath and V. Anantharam, “A new dual to the Gács-Körner common information defined via the Gray-Wyner system,” in [*Proc. ", "48th Allerton Conf. ", "on Communication, Control, and Computing*]{}, pp. ", "1340–1346, 2010.", "\n\nJ. Kilian, “Founding cryptography on oblivious transfer,” in [*Proc.", " $20$th STOC*]{}, pp. ", "20–31, ACM, 1988.", "\n\nJ. Kilian, “More general completeness theorems for secure two-party computation,” in [*Proc.", " $32$nd STOC*]{}, pp. ", "316–324, ACM, 2000.", "\n\nD. Marco and M. Effros, “On lossless coding with coded side information,” [*IEEE Transactions on Information Theory*]{}, vol. ", "55, no. ", "7, pp. ", "3284–3296, 2009.", "\n\nV. M. Prabhakaran and M. M. Prabhakaran, “Assisted common information,” in [*Proc. ", "International Symposium on Information Theory (ISIT)*]{}, pp. ", "2602-2606, 2010.", "\n\nV. M. Prabhakaran and M. M. Prabhakaran, “Assisted common information: Further results,” in [*Proc. ", "International Symposium on Information Theory (ISIT)*]{}, pp. ", "2861 - 2865, 2011.", "\n\nM. M. Prabhakaran and V. M. Prabhakaran, “On secure multiparty sampling for more than two parties,” in [Proc. ", "IEEE Information Theory Workshop (ITW)]{}, pp. ", "99 - 103, 2012.", "\n\nM. Rabin. “", "How to exchange secrets by oblivious transfer,” Technical Report TR-81, Harvard Aiken Computation Laboratory, 1981.", "\n\nStephen Wiesner. “", "Conjugate coding,” Sigact News, vol. ", "15, pp.", " 78–88, 1983.", "\n\nS. Winkler and J. Wullschleger. “", "On the Efficiency of Classical and Quantum Oblivious Transfer Reductions,” in Tal Rabin, editor, [*CRYPTO*]{}, vol. ", "6223 of [*Lecture Notes in Computer Science*]{}, pp. ", "707–723, Springer, 2010.", "\n\nA. Winter, A. C. A. Nascimento, and H. Imai. “", "Commitment capacity of discrete memoryless channels,” in Kenneth G. Paterson, editor, [*IMA Int. ", "Conf.*]{}, ", "vol. ", "2898 of [*Lecture Notes in Computer Science*]{}, pp. ", "35–51, Springer, 2003.", "\n\nH. S. Witsenhausen, “On sequences of pairs of dependent random variables,” , 28:100–113, 1975.", "\n\nS. Wolf and J. Wullschleger. “", "Oblivious Transfer Is Symmetric,” , vol. ", "4004 of [*Lecture Notes in Computer Science*]{}, pp. ", "222–232, Springer, 2006.", "\n\nS. Wolf and J. Wullschleger. “", "New monotones and lower bounds in unconditional two-party computation,” , vol. ", "54, no. ", "6, pp. ", "2792–2797, 2008.", "\n\nJ. Wullschleger. ", "Oblivious-Transfer Amplification. ", "Ph.D. thesis, Swiss Federal Institute of Technology, Zürich, 2008. ", "<http://arxiv.org/abs/cs.CR/0608076>.", "\n\nA. D. Wyner, “The common information of two dependent random variables,” , vol. ", "21, no. ", "2, pp. ", "163–179, 1975.", "\n\nA. D. Wyner and J. Ziv, “Rate-distortion function for source coding with side information at the decoder,” , vol. ", "22, no. ", "1, pp. ", "1–11, 1976.", "\n\nH. Yamamoto, “Coding theorems for Shannon’s cipher system with correlated source outputs, and common information,” , vol. ", "40, no. ", "1, pp. ", "85–95, 1994.", "\n\n[^1]: This work was presented in part at IEEE International Symposia on Information Theory (ISIT) 2010 and 2011 [@PrabhakaranPr10; @PrabhakaranPr11]. ", "Vinod M. Prabhakaran’s work was supported in part by a Ramanujan Fellowship from the Department of Science and Technology, Government of India. ", "Manoj M. Prabhakaran’s work was supported in part by NSF CAREER award 07-47027 and NSF grant 12-28856.", "\n\n Vinod M. Prabhakaran is with the School of Technology and Computer Science, Tata Institute of Fundamental Research, Mumbai 400 005 India (email: vinodmp@tifr.res.in)\n\n Manoj M. Prabhakaran is with the Department of Computer Science, University of Illinois, Urbana-Champaign, IL 61801 USA (email: mmp@illinois.edu)\n" ]
{ "pile_set_name": "ArXiv" }
[ 0.010452961672473868, 0.024793388429752067, 0.022988505747126436, 0.005714285714285714, 0.014925373134328358, 0, 0, 0, 0.05263157894736842, 0.010526315789473684, 0, 0, 0.022988505747126436, 0.013333333333333334, 0.016129032258064516, 0, 0.029850746268656716, 0.024193548387096774, 0, 0, 0.02127659574468085, 0.011111111111111112, 0, 0, 0, 0.017964071856287425, 0, 0, 0, 0.01818181818181818, 0, 0, 0, 0.008333333333333333, 0.016129032258064516, 0, 0.006024096385542169, 0.025974025974025976, 0.013422818791946308, 0.016129032258064516, 0, 0.013986013986013986, 0.016129032258064516, 0, 0.03614457831325301, 0, 0, 0.05, 0.0078125, 0.05, 0.02, 0, 0.014285714285714285, 0, 0.058823529411764705, 0.010638297872340425, 0, 0.05263157894736842, 0.0078125, 0, 0, 0, 0.011764705882352941, 0.016129032258064516, 0, 0.00980392156862745, 0.016129032258064516, 0, 0.008928571428571428, 0.02127659574468085, 0, 0, 0.017391304347826087, 0.05, 0.02702702702702703, 0, 0, 0.05714285714285714, 0.02586206896551724, 0, 0, 0.020833333333333332, 0.020618556701030927, 0.09090909090909091, 0, 0, 0.045454545454545456, 0.010416666666666666, 0.03125, 0, 0, 0, 0.03125, 0, 0, 0, 0, 0.05263157894736842, 0, 0.014925373134328358, 0.02702702702702703, 0, 0, 0, 0, 0.008620689655172414, 0, 0, 0, 0.008064516129032258, 0, 0, 0, 0.013157894736842105, 0.013888888888888888, 0.029411764705882353, 0.021671826625386997 ]
0.012333
5
[ { "analysis_explanation": null, "end": 6489, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 6470 }, { "analysis_explanation": null, "end": 6640, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 6624 }, { "analysis_explanation": null, "end": 35, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15 }, { "analysis_explanation": null, "end": 60, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40 }, { "analysis_explanation": null, "end": 285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268 }, { "analysis_explanation": null, "end": 375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 358 }, { "analysis_explanation": null, "end": 387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 377 }, { "analysis_explanation": null, "end": 429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 417 }, { "analysis_explanation": null, "end": 446, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 434 }, { "analysis_explanation": null, "end": 522, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509 }, { "analysis_explanation": null, "end": 689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 678 }, { "analysis_explanation": null, "end": 703, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 694 }, { "analysis_explanation": null, "end": 863, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 859 }, { "analysis_explanation": null, "end": 874, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 865 }, { "analysis_explanation": null, "end": 1000, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 996 }, { "analysis_explanation": null, "end": 1011, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1002 }, { "analysis_explanation": null, "end": 1066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1051 }, { "analysis_explanation": null, "end": 1163, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1155 }, { "analysis_explanation": null, "end": 1169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1165 }, { "analysis_explanation": null, "end": 1182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1171 }, { "analysis_explanation": null, "end": 1199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1187 }, { "analysis_explanation": null, "end": 1242, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1239 }, { "analysis_explanation": null, "end": 1255, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1251 }, { "analysis_explanation": null, "end": 1283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1272 }, { "analysis_explanation": null, "end": 1407, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1392 }, { "analysis_explanation": null, "end": 1433, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1424 }, { "analysis_explanation": null, "end": 1457, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1442 }, { "analysis_explanation": null, "end": 1467, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1459 }, { "analysis_explanation": null, "end": 1473, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1469 }, { "analysis_explanation": null, "end": 1497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1488 }, { "analysis_explanation": null, "end": 1565, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1552 }, { "analysis_explanation": null, "end": 1656, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1651 }, { "analysis_explanation": null, "end": 1666, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1658 }, { "analysis_explanation": null, "end": 1672, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1668 }, { "analysis_explanation": null, "end": 1685, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1674 }, { "analysis_explanation": null, "end": 1699, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1696 }, { "analysis_explanation": null, "end": 1712, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1703 }, { "analysis_explanation": null, "end": 1718, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1714 }, { "analysis_explanation": null, "end": 1727, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1720 }, { "analysis_explanation": null, "end": 1741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1732 }, { "analysis_explanation": null, "end": 1835, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1831 }, { "analysis_explanation": null, "end": 1847, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1837 }, { "analysis_explanation": null, "end": 1859, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1849 }, { "analysis_explanation": null, "end": 1876, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1865 }, { "analysis_explanation": null, "end": 2004, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2002 }, { "analysis_explanation": null, "end": 2032, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2028 }, { "analysis_explanation": null, "end": 2044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2034 }, { "analysis_explanation": null, "end": 2060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2049 }, { "analysis_explanation": null, "end": 2144, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2142 }, { "analysis_explanation": null, "end": 2172, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2168 }, { "analysis_explanation": null, "end": 2181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2174 }, { "analysis_explanation": null, "end": 2193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2183 }, { "analysis_explanation": null, "end": 2218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2199 }, { "analysis_explanation": null, "end": 2369, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2354 }, { "analysis_explanation": null, "end": 2378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2371 }, { "analysis_explanation": null, "end": 2390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2380 }, { "analysis_explanation": null, "end": 2415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2396 }, { "analysis_explanation": null, "end": 2611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2607 }, { "analysis_explanation": null, "end": 2620, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2613 }, { "analysis_explanation": null, "end": 2632, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2622 }, { "analysis_explanation": null, "end": 2653, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2634 }, { "analysis_explanation": null, "end": 2668, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2659 }, { "analysis_explanation": null, "end": 2837, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2833 }, { "analysis_explanation": null, "end": 2846, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2839 }, { "analysis_explanation": null, "end": 2863, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2848 }, { "analysis_explanation": null, "end": 2884, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2865 }, { "analysis_explanation": null, "end": 2899, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2890 }, { "analysis_explanation": null, "end": 3050, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3042 }, { "analysis_explanation": null, "end": 3060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3052 }, { "analysis_explanation": null, "end": 3076, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3062 }, { "analysis_explanation": null, "end": 3090, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3078 }, { "analysis_explanation": null, "end": 3104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3096 }, { "analysis_explanation": null, "end": 3184, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3180 }, { "analysis_explanation": null, "end": 3195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3186 }, { "analysis_explanation": null, "end": 3397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3382 }, { "analysis_explanation": null, "end": 3408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3399 }, { "analysis_explanation": null, "end": 3505, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3501 }, { "analysis_explanation": null, "end": 3516, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3507 }, { "analysis_explanation": null, "end": 3639, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3635 }, { "analysis_explanation": null, "end": 3649, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3641 }, { "analysis_explanation": null, "end": 3663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3654 }, { "analysis_explanation": null, "end": 3769, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3767 }, { "analysis_explanation": null, "end": 3797, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3793 }, { "analysis_explanation": null, "end": 3816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3799 }, { "analysis_explanation": null, "end": 3838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3821 }, { "analysis_explanation": null, "end": 3978, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3961 }, { "analysis_explanation": null, "end": 4000, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3983 }, { "analysis_explanation": null, "end": 4140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4136 }, { "analysis_explanation": null, "end": 4159, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4142 }, { "analysis_explanation": null, "end": 4181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4164 }, { "analysis_explanation": null, "end": 4313, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4309 }, { "analysis_explanation": null, "end": 4323, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4315 }, { "analysis_explanation": null, "end": 4441, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4437 }, { "analysis_explanation": null, "end": 4458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4443 }, { "analysis_explanation": null, "end": 4518, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4507 }, { "analysis_explanation": null, "end": 4530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4520 }, { "analysis_explanation": null, "end": 4550, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4535 }, { "analysis_explanation": null, "end": 4641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4632 }, { "analysis_explanation": null, "end": 4746, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4742 }, { "analysis_explanation": null, "end": 4757, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4748 }, { "analysis_explanation": null, "end": 4778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4759 }, { "analysis_explanation": null, "end": 4791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4784 }, { "analysis_explanation": null, "end": 4871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4852 }, { "analysis_explanation": null, "end": 4976, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4968 }, { "analysis_explanation": null, "end": 4982, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4978 }, { "analysis_explanation": null, "end": 5002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4984 }, { "analysis_explanation": null, "end": 5077, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5073 }, { "analysis_explanation": null, "end": 5086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5079 }, { "analysis_explanation": null, "end": 5106, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5091 }, { "analysis_explanation": null, "end": 5221, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5213 }, { "analysis_explanation": null, "end": 5227, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5223 }, { "analysis_explanation": null, "end": 5236, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5229 }, { "analysis_explanation": null, "end": 5256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5241 }, { "analysis_explanation": null, "end": 5273, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5260 }, { "analysis_explanation": null, "end": 5341, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5339 }, { "analysis_explanation": null, "end": 5369, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5365 }, { "analysis_explanation": null, "end": 5386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5371 }, { "analysis_explanation": null, "end": 5481, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5475 }, { "analysis_explanation": null, "end": 5487, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5483 }, { "analysis_explanation": null, "end": 5538, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5527 }, { "analysis_explanation": null, "end": 5609, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5607 }, { "analysis_explanation": null, "end": 5635, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5631 }, { "analysis_explanation": null, "end": 5648, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5637 }, { "analysis_explanation": null, "end": 5659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5653 }, { "analysis_explanation": null, "end": 5753, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5751 }, { "analysis_explanation": null, "end": 5776, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5766 }, { "analysis_explanation": null, "end": 5789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5778 }, { "analysis_explanation": null, "end": 5902, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5900 }, { "analysis_explanation": null, "end": 5926, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5915 }, { "analysis_explanation": null, "end": 6030, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6026 }, { "analysis_explanation": null, "end": 6039, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6035 }, { "analysis_explanation": null, "end": 6098, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6078 }, { "analysis_explanation": null, "end": 6242, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6222 }, { "analysis_explanation": null, "end": 6345, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6325 }, { "analysis_explanation": null, "end": 6447, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6441 }, { "analysis_explanation": null, "end": 6461, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6456 }, { "analysis_explanation": null, "end": 6516, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6496 }, { "analysis_explanation": null, "end": 6611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6606 }, { "analysis_explanation": null, "end": 5524, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 5490 }, { "analysis_explanation": null, "end": 6489, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6478 }, { "analysis_explanation": null, "end": 6640, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6628 }, { "analysis_explanation": null, "end": 2166, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 2157 }, { "analysis_explanation": null, "end": 5524, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 5517 }, { "analysis_explanation": null, "end": 6300, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 6292 }, { "analysis_explanation": null, "end": 5524, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 5517 } ]
[ "1. ", "Field of the Invention\nThe present invention relates to an image forming apparatus such as electro-photographing apparatus, printer, etc. ", "and in particular to an image forming apparatus equipped with a photo-conductor and developing rollers which are brought in contact with each other only when developing images for forming developing images on the photosensitive belt.", "\n2. ", "Description of the Related Art\nIn image forming apparatus such as color copying machines, color printers, etc. ", "to obtain color images according to electro-photographing system, an apparatus has been developed for obtaining a full color image using 4 color toners of yellow (Y), magenta (M), cyan (C), black (K). ", "In this apparatus, four developing devices filled with respective color toners are brought in contact with or separating from a photosensitive belt or an intermediate transferring body according to colors of latent images to be formed on the photosensitive belt and after developing and superposing toner images in respective colors on the photosensitive belt or the intermediate transferring body, the images are collectively transferred on a recording paper.", "\nIn such the image forming apparatus, when bringing the photosensitive belt and plural developing devices are brought in contact with or separated from the photosensitive belt or separated therefrom, while the photosensitive belt is kept stationary, one of plural developing devices is moved or while the developing devices is kept stationary, the photosensitive belt is moved selectively to a position opposing to a prescribed developing device of the photosensitive belt, and the photosensitive belt and the developing rollers are thus contacted or separated.", "\nHowever, when toner images in desired colors are formed on the photosensitive belt in order by bringing the photosensitive belt in contact with developing rollers or separating them, even when either the photosensitive belt or the developing devices are moved, the tensile force of the photosensitive belt differs when the photosensitive belt is in contact with the developing rollers or when they are separated, and the running speed of the photosensitive belt may fluctuate.", "\nTherefore, as an image forming apparatus to move the developing devices to bring in contact with the photosensitive belt or separating from it, the technology to prevent fluctuation in the running speed of the photosensitive belt by keeping its tensile force constant by providing a roller to contact to the photosensitive belt or separate therefrom in addition to supporting rollers for stretching the photosensitive belt has been disclosed in Japanese Laid Open Patent Publication No. ", "Hei 11-167277. ", "Further, as an apparatus for moving the photosensitive belt to contact or separate to/from the developing devices, the technology to prevent fluctuation in the running speed of the photosensitive belt by moving plural back-up rollers corresponding to respective developing devices while keeping the running route of the photosensitive belt constant has been disclosed in Japanese Laid Open Patent Publication No. ", "Hei 9-80860.", "\nHowever, the existing technologies mentioned above maintains the tensile force of the entire photosensitive belt constant or maintains the running route of the entire photosensitive belt constant but do not adjusts the pressure produced between the photosensitive belt and the developing rollers nor adjust fluctuation of the tensile force applied to the photosensitive belt in the contacting area of the photosensitive belt with the developing rollers, and in the contacting area of the photosensitive belt and the developing rollers, improper images may be produced because the relative speed between the photosensitive belt and the developing rollers still fluctuates or the running speed of the photosensitive belt changes.", "\nIn particular, in developing devices that make the contact development using one-component developers, a sufficient amount of toner is supplied to the nip portion formed between the photosensitive belt and the developing rollers generally by increasing the running speed of the developing rollers higher than the running speed of the photosensitive belt and toner image fog is reduced. ", "Thus, as the photosensitive belt and the developing rollers run by keeping a prescribed relative speed, if the pressure applied to the nip portion changes and a large pressure is applied between the photosensitive belt and the developing rollers during the running, the relative speed of the photosensitive belt and the developing rollers changes and developing characteristic changes, and improper images many be produced for improper development.", "\nFurther, in recent years, in a full color image forming apparatus, it is demanded to make developing devices and developing rollers small in size for making the entire apparatus small in size and light in weight. ", "Therefore, when the developing rollers is made in a small diameter, in order to get a good image density in a sufficient developing time by performing the developing operation stably, it becomes necessary to secure a contacting area of the photosensitive belt and the developing rollers sufficiently by bringing them in contact with each other so as the developing rollers are intruded into the photosensitive belt. ", "When the developing rollers are intruded into the photosensitive belt so as to intrude into there, even if the developing rollers and the photosensitive belt are not sufficiently paralleled, the developing rollers and the photosensitive belt are almost uniformly contacted each other for the overall length of the main scanning direction (the right angle direction to the running direction) and a uniform image density is obtained.", "\nHowever, if the developing roller is excessively intruded into the photosensitive belt, the tensile force applied to the photosensitive belt changes largely when the photosensitive belt is in contact with the developing roller and when separated, and the running speed of the photosensitive belt may change largely by the change in torque applied to the driving device of the photosensitive belt and as a result, such improper images as elongation or contraction of images or color deviation of toner images in plural colors may be caused.", "\nAccordingly, in order to prevent the deterioration of image quality described above, in an image forming apparatus to get a toner image by bringing the photosensitive belt and the developing rollers in contact with each other or separating them, it has been desired to get an image of good quality by obtaining a stabilized and sufficient developing density without impairing the small sized apparatus, adjusting the pressure applied to the contacting area of the photosensitive belt and the developing rollers, and adjusting the change in the tensile force applied to the photosensitive belt when the photosensitive belt and the developing rollers are in contact with each other and when they are separated.", "\nIt is an object of the present to provide a small size image forming apparatus without deteriorating quality of images.", "\nIt is another object of the present invention to provide an image forming apparatus which forms a good toner image by preventing a large pressure applied to a contact area of a photosensitive belt and developing rollers when developing an image by bringing the photosensitive belt in contact with or separating from the developing rollers and a relative speed of the photosensitive belt and the developing rollers from changing, and stabilizing developing characteristic.", "\nIt is a further object of the present invention to provide an image forming apparatus for forming a good toner image by preventing fluctuation of the tensile force applied to the photosensitive belt when the photosensitive belt is brought contact with the developing rollers irrespective of the developing rollers made small.", "\nAccording to the embodiments of the present invention, an image forming apparatus comprising: an endlessly running image carrier; a latent image forming portion for forming a latent image on the image carrier; developing devices having developing members that are capable of contacting/separating to/from the image carrier after passing the latent image forming portion and forming developing image by supplying developers to the latent image; and supporting members contacting the surface of the image carrier opposite to the surface contacting the developing devices when the developing members contact the image carrier and supporting the image carrier movably according to the contacting force of the developing member with the image carrier is provided.", "\nFurther, according to the present invention, there is provided an image forming apparatus comprising: a belt-shaped photo-conductor; a latent image forming portion for forming a latent image on the photo-conductor; developing devices having developing rollers that are capable of contacting/separating to/from the photo-conductor after passing the latent image forming portion and for forming developing images by supplying developers to the latent image; developing device moving members for moving the developing devices and bringing the developing rollers in contact with or separating from the photo-conductor; and supporting members contacting the surface of the photo-conductor opposite to the surface contacting the developing rollers of the photo-conductor when the developing rollers contact the photo-conductor and support the photo-conductor movably according to the contacting force of the developing rollers with the photo-conductor is provided.", "\nFurther, according to the present invention, there is provided an image forming apparatus comprising: a belt-shaped photo-conductor; a latent image forming portion for forming a latent image on the photo-conductor; developing devices that are capable of contacting/separating to/from the photo-conductor after passing the latent image forming portion and have developing rollers for forming developing images by supplying developers to the latent image; a photo-conductor moving member for moving the photo-conductor to contact or separate the developing rollers; and supporting members that contact the surface of the photo-conductor opposite to the surface contacting the developing rollers when contacting the developing rollers to the photo-conductor and support the photo-conductor movably according to the contacting force of the developing rollers with the photo-conductor." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.002583979328165375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.000096
5
[ { "analysis_explanation": null, "end": 673, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 669 }, { "analysis_explanation": null, "end": 2642, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2634 }, { "analysis_explanation": null, "end": 3070, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3062 }, { "analysis_explanation": null, "end": 4704, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4692 }, { "analysis_explanation": null, "end": 2689, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.4, "start": 2683 } ]
[ "What's behind the global rally?", "\n\nEconomists are split on whether Donald Trump's presidency is behind the boom in the economies and stock markets of Europe, China and Japan. - ", "SAUL LOEB/AFP/Getty Images\n\nJanuary 17, 2018 | 1:29 PM\n\nPresident Donald Trump has claimed credit for falling U.S. unemployment and rising growth figures. ", "But how credible is that claim since there have been similar improvements in other key economies around the world? ", "Since the president’s inauguration a year ago, economic growth has quickened and stock markets have boomed in China, Japan and Europe, partly thanks to rock-bottom interest rates.", "\n\n“Generally speaking, American presidents have a fairly limited impact on economic growth rates, particularly over such a short period of time,” Kenningham said. “", "I don’t believe that Trump has made any significant changes in economic policy yet, apart from the tax cuts, and they have only just been passed. ", "So I certainly don’t think he can take much credit for the overall performance of the economy.”", "\n\nMichael Ben-Gad, professor of economics at City University in London, echoed that view.", "\n\n“In terms of the real economy, I don’t think there is any sign or any reason to believe that Trump’s impact has been positive … or negative,” professor Ben-Gad told Marketplace. “", "The improvements are mostly cyclical, nothing out of the ordinary, and not due to Trump’s election.”", "\n\nBen-Gad did concede that the big jump in U.S. share prices might be due to the president but, he added: “It’s important to keep in mind that we have seen equity markets all over the world rising over the last year.”", "\n\nAnother London-based economist, Simon Tilford of the Tony Blair Institute for Global Change, doubted whether the rise in the U.S. stock market could be attributed to Trump.", "\n\n“I think the so-called ‘Trump Bump’ is nothing of the sort,” Tilford said. “", "I think we would have seen rising share values in the U.S. almost irrespective of who had won the election.” ", "But Tilford admitted that the tax cuts could stimulate economic activity in the U.S. when they do come into effect.", "\n\nOther economists in the British capital believe that Trump has already made a difference to the real economy. ", "Brian Davidson, U.S. economist for Fathom Consulting, said that his firm’s Economic Sentiment Indicator, which aggregates the results of business and consumer surveys, has shown a sharp rise in confidence in the U.S. over the past year. ", "Davidson puts this down to the effect of Trump’s pledge to cut taxes and regulations. ", "And Davidson believes that this has played a part in the rise in growth since Trump's inauguration.", "\n\nRoger Farmer, professor of economics at Warwick University, goes even further. ", "He told Marketplace that just the prospect of lower taxes, less regulation and more spending on infrastructure fueled the rise in the U.S. stock market with important consequences for all Americans.", "\n\n“My research indicates that there’s a very strong influence of the stock market on the real economy. ", "And to the extent that Mr. Trump had positive effects on the stock market, then yes, I would attribute the reduction in the unemployment and potentially faster growth to Mr. Trump,” he said.", "\n\nBut he added that Trump’s benign effect could go into reverse, depending on political developments. ", "Farmer said that if the Democrats win back control of Congress after the mid-term elections, and they impeach the president, that could trigger an stock market crash, hammering the real economy both in the U.S. and around the world." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.006944444444444444, 0.012903225806451613, 0, 0, 0.006097560975609756, 0.00684931506849315, 0, 0.02247191011235955, 0.011049723756906077, 0.01, 0.004608294930875576, 0.017241379310344827, 0.01282051282051282, 0, 0.008695652173913044, 0.008928571428571428, 0.008438818565400843, 0.023255813953488372, 0.020202020202020204, 0.024691358024691357, 0, 0, 0.010526315789473684, 0.00980392156862745, 0.008620689655172414 ]
0.009006
5
[ { "analysis_explanation": null, "end": 78, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64 }, { "analysis_explanation": null, "end": 153, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147 }, { "analysis_explanation": null, "end": 160, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155 }, { "analysis_explanation": null, "end": 170, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165 }, { "analysis_explanation": null, "end": 218, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202 }, { "analysis_explanation": null, "end": 228, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221 }, { "analysis_explanation": null, "end": 252, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240 }, { "analysis_explanation": null, "end": 288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284 }, { "analysis_explanation": null, "end": 489, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 479 }, { "analysis_explanation": null, "end": 559, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 554 }, { "analysis_explanation": null, "end": 566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561 }, { "analysis_explanation": null, "end": 577, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571 }, { "analysis_explanation": null, "end": 653, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645 }, { "analysis_explanation": null, "end": 778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 768 }, { "analysis_explanation": null, "end": 813, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 808 }, { "analysis_explanation": null, "end": 1044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1029 }, { "analysis_explanation": null, "end": 1097, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1091 }, { "analysis_explanation": null, "end": 1215, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1210 }, { "analysis_explanation": null, "end": 1276, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1269 }, { "analysis_explanation": null, "end": 1384, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1379 }, { "analysis_explanation": null, "end": 1405, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1398 }, { "analysis_explanation": null, "end": 1443, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1439 }, { "analysis_explanation": null, "end": 1611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1598 }, { "analysis_explanation": null, "end": 1628, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1622 }, { "analysis_explanation": null, "end": 1659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1646 }, { "analysis_explanation": null, "end": 1743, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1739 }, { "analysis_explanation": null, "end": 1785, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1780 }, { "analysis_explanation": null, "end": 1855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1848 }, { "analysis_explanation": null, "end": 1922, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1918 }, { "analysis_explanation": null, "end": 1984, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1977 }, { "analysis_explanation": null, "end": 2057, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2053 }, { "analysis_explanation": null, "end": 2120, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2113 }, { "analysis_explanation": null, "end": 2147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2142 }, { "analysis_explanation": null, "end": 2213, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2199 }, { "analysis_explanation": null, "end": 2219, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2215 }, { "analysis_explanation": null, "end": 2415, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2411 }, { "analysis_explanation": null, "end": 2434, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2421 }, { "analysis_explanation": null, "end": 2444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2436 }, { "analysis_explanation": null, "end": 2482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2477 }, { "analysis_explanation": null, "end": 2534, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2526 }, { "analysis_explanation": null, "end": 2634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2622 }, { "analysis_explanation": null, "end": 2839, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2835 }, { "analysis_explanation": null, "end": 2898, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2889 }, { "analysis_explanation": null, "end": 3033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3028 }, { "analysis_explanation": null, "end": 3180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3175 }, { "analysis_explanation": null, "end": 3215, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3210 }, { "analysis_explanation": null, "end": 3298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3292 }, { "analysis_explanation": null, "end": 3325, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3316 }, { "analysis_explanation": null, "end": 3502, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3498 } ]
[ "![](", "glasgowmedj76232-0014){#sp1 .186}\n\n![](", "glasgowmedj76232-0015){#sp2 .187}\n\n![](", "glasgowmedj76232-0016){#sp3 .188}\n\n![](", "glasgowmedj76232-0017){#sp4 .189}\n\n![](", "glasgowmedj76232-0018){#sp5 .190}\n\n![](", "glasgowmedj76232-0019){#sp6 .191}\n\n![](", "glasgowmedj76232-0020){#sp7 .192}\n\n![](", "glasgowmedj76232-0021){#sp8 .193}\n\n![](", "glasgowmedj76232-0022){#sp9 .194}\n\n![](", "glasgowmedj76232-0023){#sp10 .195}\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0, 0.02564102564102564, 0, 0, 0.02564102564102564, 0, 0.02564102564102564, 0, 0, 0.02564102564102564, 0 ]
0.009324
5
[ { "analysis_explanation": null, "end": 21, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5 }, { "analysis_explanation": null, "end": 61, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45 }, { "analysis_explanation": null, "end": 101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85 }, { "analysis_explanation": null, "end": 141, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125 }, { "analysis_explanation": null, "end": 181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165 }, { "analysis_explanation": null, "end": 221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205 }, { "analysis_explanation": null, "end": 261, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245 }, { "analysis_explanation": null, "end": 301, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285 }, { "analysis_explanation": null, "end": 381, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 365 } ]
[ "\n\nCraig Newmark's First Notes on Craigslist - dreambird\nhttp://thefastertimes.com/techlife/2010/03/12/craigslist-craig-newmarks-first-notes-from-1995/\n\n======\nojbyrne\nIt would be really cool if the page referenced\n(<http://www.well.com/www/cnewmark/main.html>) was actually available to view\nsomewhere. ", "Checked the internet archive, I guess it predated it, or was behind\na login. ", "Too bad.", "\n\n~~~\nnaner\n<http://en.wikipedia.org/wiki/The_WELL>\n\n" ]
{ "pile_set_name": "HackerNews" }
[ 0.013201320132013201, 0, 0, 0.018867924528301886 ]
0.008017
5
[ { "analysis_explanation": null, "end": 15, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 148, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 54 }, { "analysis_explanation": null, "end": 99, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 89 }, { "analysis_explanation": null, "end": 256, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 214 }, { "analysis_explanation": null, "end": 435, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 398 } ]
[ "Daesh leader for Afghanistan killed in airstrike\n\nJALALABAD (Pajhwok): Local officials in eastern Nangarhar province on Sunday confirmed the killing of Islamic State or Daesh leader for Afghanistan in an airstrike in the Khogyani district last night.", "\n\nThe Daesh leader in Afghanistan, Saad Arhabi, also known as Abu Sayed Orakzai, was killed along with 10 other Daesh fighters in Jungle village last night by joint Afghan and foreign forces, said Attaullah Khogyani, the Nangarhar governor’s spokesman.", "\n\nHe cited intelligence sources and said the airstrike destroyed two depots of light and heavy weapons and a large quantity of explosives.", "\n\nHe said Arhabi was a resident of the Orakzai tribal region of Pakistan. ", "He was appointed as head of the Daesh-Khorasan leader after the killing of his predecessor Abu Saeed Bajuari.", "\n\nBajauri was killed in eastern Kunar province on July 14, 2017.", "\n\nBefore Bajuari, his predecessor Abdul Hasib Logari was killed in a joint operation by Afghan and US forces in Nangarhar province on April 2, 2017.", "\n\nThe third emir, Abu Sayed, was killed in a US strike on the group’s headquarters in Kunar province on July 11, 2017.", "\n\nBefore him the group’s first leader Hafiz Saeed Khan was killed in an airstrike in the Achin district of Nangarhar on July 26, 2016." ]
{ "pile_set_name": "Pile-CC" }
[ 0.008, 0.015873015873015872, 0, 0.02702702702702703, 0.01834862385321101, 0, 0.013513513513513514, 0.00847457627118644, 0.007462686567164179 ]
0.010967
5
[ { "analysis_explanation": null, "end": 28, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17 }, { "analysis_explanation": null, "end": 126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120 }, { "analysis_explanation": null, "end": 165, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152 }, { "analysis_explanation": null, "end": 174, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169 }, { "analysis_explanation": null, "end": 197, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186 }, { "analysis_explanation": null, "end": 229, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221 }, { "analysis_explanation": null, "end": 249, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239 }, { "analysis_explanation": null, "end": 282, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271 }, { "analysis_explanation": null, "end": 295, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284 }, { "analysis_explanation": null, "end": 328, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311 }, { "analysis_explanation": null, "end": 393, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 379 }, { "analysis_explanation": null, "end": 404, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 394 }, { "analysis_explanation": null, "end": 420, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 414 }, { "analysis_explanation": null, "end": 464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446 }, { "analysis_explanation": null, "end": 653, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647 }, { "analysis_explanation": null, "end": 683, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676 }, { "analysis_explanation": null, "end": 709, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 701 }, { "analysis_explanation": null, "end": 819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 802 }, { "analysis_explanation": null, "end": 828, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 821 }, { "analysis_explanation": null, "end": 856, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 851 }, { "analysis_explanation": null, "end": 882, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 869 }, { "analysis_explanation": null, "end": 934, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 916 }, { "analysis_explanation": null, "end": 976, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 970 }, { "analysis_explanation": null, "end": 983, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 981 }, { "analysis_explanation": null, "end": 1029, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1016 }, { "analysis_explanation": null, "end": 1056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1047 }, { "analysis_explanation": null, "end": 1076, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1074 }, { "analysis_explanation": null, "end": 1120, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1115 }, { "analysis_explanation": null, "end": 1146, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1133 }, { "analysis_explanation": null, "end": 1200, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1184 }, { "analysis_explanation": null, "end": 1240, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1235 }, { "analysis_explanation": null, "end": 1262, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1253 }, { "analysis_explanation": null, "end": 1279, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1266 } ]
[ "Q:\n\nHow to retrieve the last created object from Firebase Database on server side\n\nI'm new to Firebase cloud functions so sorry if this is pretty straight forward. ", "I'm trying to receive the latest pushed object in my database. ", "Unfortunately this code returns every object that already was pushed in the database at '/customers'. ", "I already tried .onCreate but that didn't do anything at all.", "\nexports.newCustomer = functions.database.ref('/customers/').onWrite(event => {\n console.log(event.data.val());\n});\n\nA:\n\nThat onWrite event should only capture new data. ", "However maybe you should more specific like this:\nexports.newCustomer = functions.database.ref('/customers/{randomID}').onWrite(event => {\n console.log(event.data.val()); //here is the data that is added\n console.log(event.params.randomID); // random ID\n console.log(event.data.val().firstName); //change firstName to anything you added.", "\n});\n\nThis will capture any write event to /customers/XXX/XXX/\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.006097560975609756, 0, 0, 0.01639344262295082, 0.005847953216374269, 0, 0 ]
0.004048
5
[ { "analysis_explanation": null, "end": 354, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 345 }, { "analysis_explanation": null, "end": 410, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 391 }, { "analysis_explanation": null, "end": 630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 611 }, { "analysis_explanation": null, "end": 401, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 391 }, { "analysis_explanation": null, "end": 434, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 413 }, { "analysis_explanation": null, "end": 497, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 484 }, { "analysis_explanation": null, "end": 621, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 611 }, { "analysis_explanation": null, "end": 654, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 633 }, { "analysis_explanation": null, "end": 727, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 714 }, { "analysis_explanation": null, "end": 788, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 780 }, { "analysis_explanation": null, "end": 844, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 831 } ]
[ "774 F.2d 752\n120 L.R.R.M. (BNA) 2729, 54 USLW 2213,103 Lab.", "Cas. ", " P 11,578\nUNITED RETAIL WORKERS UNION LOCAL 881, chartered by UnitedFood and Commercial Workers International Union,AFL-CIO, Petitioner,v.NATIONAL LABOR RELATIONS BOARD, Respondent,May Department Stores Company, Venture Stores Division,Intervenor-Respondent.", "\nNo. ", "84-2000.", "\nUnited States Court of Appeals,Seventh Circuit.", "\nArgued April 16, 1985.Decided Oct. 1, 1985.", "\n\nMarshal S. Berzon, Altshuler & Berzon, San Francisco, Cal., ", "for petitioner.", "\nJohn Ferguson, Elliott Moore, Washington, D.C., for N.L.R.B. Francis X. Grossi, Jr., Chicago, Ill., for intervenor-respondent.", "\nBefore BAUER and ESCHBACH, Circuit Judges, and PELL, Senior Circuit Judge.", "\nPELL, Senior Circuit Judge.", "\n\n\n1\nPetitioner, United Retail Workers Union Local 881, petitions this court to review an order of the National Labor Relations Board (the Board), which held that the employer, May Department Stores (the Employer) did not commit an unfair labor practice by refusing to bargain with petitioner. ", " Petitioner is the entity created by a merger agreement between the United Retail Workers Union (URW) and the United Food and Commercial Workers International Union (UFCW). ", " The Employer's refusal to bargain followed a vote by the URW members of the bargaining unit to merge with the UFCW. ", " Bargaining unit employees who were not members of the URW could not vote in the merger election.", "\n\n\n2\nThe issue on appeal is whether it was a permissible construction of the National Labor Relations Act (the Act) for the Board to hold that the Employer had no duty to bargain with the post-merger union because the URW had excluded from the merger vote those employees in the bargaining unit who were not members of the URW. ", " The two federal courts of appeals that have addressed the Board's rule in the context of an affiliation election have split on the issue, compare Financial Institution Employees, Local No. ", "1182 v. N.L.R.B., 752 F.2d 356 (9th Cir.1984), cert. ", "granted, --- U.S. ----, 105 S.Ct. ", "2318, 85 L.Ed.2d 838 (1985), with Local Union No. ", "4-14, Oil Workers International Union v. N.L.R.B., 721 F.2d 150 (5th Cir.1983), and, as noted, the Supreme Court has granted certiorari in one of the cases.", "\n\nI. THE FACTS\n\n3\nThe parties are in complete agreement about the facts. ", " Prior to November 1, 1982, the URW was a national independent union, with four local units and approximately 20,500 members. ", " In total, the URW represented 22,400 employees of eleven different employers. ", " In other words, just less than 2,000 of the represented employees were not union members. ", " Two of the four local units consisted solely of stores owned by the Employer. ", " The two locals represented 1,292 employees, of whom seventy-eight were not union members. ", " The collective bargaining agreement between the URW and the Employer contained a union security clause; thus, all employees had to become union members within thirty-one days after their employment began.", "\n\n\n4\nNegotiations for a merger agreement between the URW and the UFCW began in 1981. ", " According to the Agreement and Resolution of the two organizations, petitioner would retain the \"United Retail Workers\" name, manage its own finances, negotiate and ratify its own contract, elect its own officers, and continue its own special programs and benefits. ", " At the same time, however, petitioner would be subject to the UFCW constitution. ", " Furthermore, four non-independent administrative districts within petitioner's organization would replace the four local URW units, with election of officers on an at-large basis and not solely within each unit. ", " All active URW members and all those who would finish their probationary period and apply for membership before the election date were eligible to vote in the election.", "\n\n\n5\nThe URW then mailed to each member, but not to non-union employees, a copy of the merger agreement, a ballot, and a notice of meeting. ", " A number of merger meetings occurred, from which the URW did not exclude non-union employees. ", " The URW sent out 20,548 ballots. ", " Of the 9,235 members who voted, 6,823 favored the merger, and 2,344 opposed it. ", " The URW did not apportion the vote totals among the four local units. ", " After the election, the URW and UFCW signed the merger agreement. ", " In a letter, an officer of the URW informed the Employer that the post-election entity, although affiliated with the UCFW, would undergo no change in officers or organizational structure and would remain independent and autonomous with respect to collective bargaining, grievances, and arbitration. ", " Petitioner would also maintain the URW's contract-ratification procedures.", "\n\n\n6\nThereafter, the Employer refused to recognize petitioner and refused to abide by its collective bargaining agreement with the URW, which did not expire for nearly eighteen more months. ", " The other employers of URW members did not take similar action. ", " In withdrawing recognition, the Employer relied upon the URW's exclusion of nonmembers from the merger vote and the failure of the URW to provide unit-by-unit election results so that the Employer could ascertain whether a majority of its union employees favored the merger.", "\n\n\n7\nPetitioner then filed unfair labor practice charges against the Employer, alleging violations of sections 8(a)(5) and 8(a)(1) of the Act. ", " 29 U.S.C. Sec. ", "158(a)(5) and (1). ", " The Board held, in accord with its decision in Amoco Production Co., 262 N.L.R.B. 1240 (1982), see Part II, infra, that the exclusion of nonmembers from the election rendered the merger improper for lack of sufficient due process safeguards. ", " May Department Stores Co., 268 N.L.R.B. 979 (1984). ", " Therefore, the Board concluded that the Employer did not violate the Act by refusing to bargain with petitioner and by refusing to honor the existing contract.", "\n\n\n8\nPetitioner filed a timely appeal. ", " Despite the fact that the present case involves a merger, petitioner does not attempt to escape the application of Amoco, which involved an affiliation, upon the basis of any factual distinction. ", " Instead, petitioner maintains that two independent reasons mandate the rejection of Amoco. ", " First, petitioner argues that the Board's already existing rule--that an employer need not bargain with a post-election union unless the union is merely a continuation of the old union with a new name and not a substantially different organization--adequately protects employees' representational interests. ", " Thus, petitioner asserts the nonmember voting rule is \"invalid as an entirely gratuitous interference with internal union affairs.\" ", " Petitioner asserts that the merger is an internal union affair, effectively indistinguishable from other matters such as strike votes and contract ratifications, from which, the Board has held, unions may exclude nonmembers' participation.", "\n\n\n9\nSecond, petitioner claims that, because the numerical outcome could not have changed even had all nonmember employees voted against the merger, the Board's own outcome determinative rule for Board-conducted representation elections should apply. ", " Under the \"outcome determinative\" rule, mandated by the Landrum Griffin Act, 29 U.S.C. Sec. ", "482(c), the Board will not overturn a representation election unless it determines that an election without improprieties would have resulted in a different outcome. ", " Petitioner maintains that the same rule should apply here because merger elections are, in a sense, substitutes for representation elections. ", " Finally, petitioner claims that Amoco is internally inconsistent. ", " Petitioner points out that the rule requires a union to allow all unit employees to vote in a merger election, just as in a representation election, because both types of elections implicate the same employee rights. ", " Simultaneously, however, the Board refuses to apply the outcome determinative test to the merger context, somehow differentiating between merger elections and representation elections.", "\n\n\n10\nIn contrast to petitioner's position, the Board contends that its Amoco rule is a permissible construction of the Act, consistent with the Act's fundamental guarantees. ", " The Board maintains that the Amoco rule strikes a reasonable balance of the conflicting legitimate interests at stake. ", " Therefore, in light of the broad deference due to the Board's determinations, the Board contends that we must deny the petition.", "\n\nII. ", "THE HISTORY OF THE AMOCO RULE\n\n11\nIn 1975, the Board, by a vote of two-to-one, adopted an administrative law judge's recommended order requiring Amoco Production Company to recognize and bargain with a union and to cease and desist from certain unfair labor practices. ", " Amoco Production Co., 220 N.L.R.B. 861 (1975). ", " The originally independent, Board-certified union voted to affiliate with an international. ", " No non-union employees in the bargaining unit could vote in the election, although union organizers permitted them to participate in the discussions concerning the election and informed them that they could vote merely by becoming union members. ", " Of the 480 employees in the unit, 383 received ballots. ", " By a vote of 214-71, the employees voted in favor of affiliation. ", " Thus, the margin of victory for the affiliation, 143 votes, was greater than the number of non-union employees who were ineligible to vote, of which there were ninety-seven. ", " Nevertheless, the company refused to recognize petitioner and repudiated the collective bargaining agreement.", "\n\n\n12\nThe Board held the company to its contract, relying upon the fact that participation by the non-union employees would not have altered the result. ", " Id. at 864. ", " The Board further noted that there was neither any procedural challenge to the manner in which the union ran the actual voting nor any employee complaints concerning the affiliation. ", " Id. The Board found that the international was the successor to the independent and held that the change in affiliation did not relieve the company of its bargaining obligation. ", " The Board also observed that, if it voided the merger election, the employees would have no union representation at all because the independent had ceased to exist after affiliation. ", " Id. at 865.", "\n\n\n13\nThe dissent maintained that the entire electoral process was fundamentally flawed because the \"essence of democracy\" is to give an opportunity to participate to all people affected by an electoral decision. ", " Id. at 862 (Member Jenkins, dissenting). ", " The dissent also rejected the majority's reliance upon the fact that there was an insufficient number of non-union employees to change the result of the election.", "\n\n\n14\nExclusion of some of this electorate from the right to vote inhibits their participation in the electoral process, a participation which, through discussion and interchange of views may affect the attitudes and votes of others who are permitted to vote. ", " Thus the effects of the exclusion cannot be measured by a mere numerical tally.", "\n\n\n15\nId.\n\n\n16\nThe company then appealed to the United States Court of Appeals for the Fifth Circuit. ", " In the meantime, however, the Board changed its position with respect to affiliation elections and required unions to allow all unit members to vote before the Board would amend the union's certification as bargaining representative. ", " Jasper Seating Co., 231 N.L.R.B. 1025 (1977). ", " Consequently, the Board requested the Fifth Circuit to remand the Amoco case to the Board for further consideration. ", " By a three-to-two vote, the Board then affirmed its earlier Amoco decision, reversing Jasper Seating Co. and holding, for two reasons, that an affiliation vote limited to union members does not relieve an employer from its duty to bargain with a certified union. ", " Amoco Production Co., 239 N.L.R.B. 1195 (1979). ", " First, the Board declared that an affiliation is basically an internal union affair. ", " The Board stated that an affiliation \"does not create a new organization, nor does it result in the dissolution of an already existing organization.\" ", " Id. The Board also noted that there were a variety of reasons why an employee might favor affiliation and that only union members would be subject to any new constitution imposed by the new parent union. ", " Id. at 1195 & n. 4. ", " The Board emphasized that a decision to affiliate does not alter the existing collective bargaining agreement. ", " Id. at 1195. ", " Consequently, the Board concluded, affiliation election procedures are internal union matters over which the Board has no authority, provided that the election procedures otherwise satisfy basic due process requirements.", "\n\n\n17\nThe second rationale for the Board's decision relied upon the fact that nonmembers sufficiently concerned about an affiliation election could simply join the union to participate in the vote. ", " Id. In that respect, affiliations do not differ from other internal matters, such as strike votes, contract ratifications, and the election of union officers, stewards, and negotiators, in all of which cases the Board has allowed exclusion of nonmembers. ", " The Board also identified the following facts as important: no employee complained about the election procedures or disputed the results; the bylaws, of which all employees were aware when deciding whether to join the union, explicitly limited the ability to vote to union employees; and, \"while not dispositive of the issue, the 97 nonmembers could not have affected the overwhelming vote in favor of affiliation.\" ", " Id.\n\n\n18\nIn a concurring opinion, one member of the majority agreed with the result solely because he concluded that the question of affiliation \"is a matter of exclusive concern to the union members ... so long as the union did not improperly deny membership to [any] employees.\" ", " Id. at 1197 (Member Truesdale, concurring). ", " Member Jenkins again dissented, maintaining that the exclusion of nonmembers established that the election \"did not meet the minimum strictures of due process.\" ", " Id. He also claimed that the majority's reliance upon the fact that interested employees could join the union if they wished to vote ignored the employees' section 7 right to refrain from union activity. ", " Id. at 1198; 29 U.S.C. Sec. ", "157. ", " Member Penello also dissented, but upon different grounds. ", " He maintained that the affiliation of a 382-member independent with a 200,000-member international \"resulted in a substantial change in the identity of the employees' bargaining representative.\" ", " Id. This change raised a \"question concerning representation,\" which only a Board-conducted election, open to all employees, could resolve. ", " Id.\n\n\n19\nThe company's subsequent appeal to the Fifth Circuit resulted in a further remand of the case to the Board. ", " Amoco Production Co. v. N.L.R.B., 613 F.2d 107 (5th Cir.1980). ", " The court noted that, under established precedent, the employer had no duty to bargain with the post-affiliation entity unless the entity was a valid successor to the independent union. ", " Id. at 110. ", " Successorship status turns upon whether the new entity is \" 'a continuation of the old union under a new name or ... a substantially different organization?' \" ", " Id. at 112, quoting J. Ray McDermott & Co. v. N.L.R.B., 571 F.2d 850, 857 (5th Cir.1978), cert. ", "denied, 439 U.S. 893, 99 S.Ct. ", "250, 58 L.Ed.2d 238. ", " The court then questioned the factual basis for the Board's conclusion, in its initial opinion, that there was a valid successorship established, id. at 110-11, and noted that the Board's second decision contained no discussion of the successorship issue, id. at 111. ", " The court concluded that, because it could not determine why the Board had decided that the international was a successor union, the court would remand the decision to the Board to make a factual determination of successorship.", "\n\n\n20\nOn remand for consideration of the successorship issue, the Board, instead, changed its position concerning the ability of a certified union to exclude nonmember employees from an affiliation election. ", " The Board majority, in a three-to-two decision, labeled the exclusion issue a \"threshold question ... for, if the affiliation election were improper, the question of successorship would be moot.\" ", " Amoco Production Co., 262 N.L.R.B. 1240, 1241 (1982). ", " The Board then determined that basic notions of due process required that affiliation elections be open to all employees, including nonmembers. ", " Id. The Board reasoned that the question of affiliation is not a solely internal union matter because, after affiliation, the union will inevitably call upon the Board either to find an unfair labor practice if the employer refuses to bargain or to amend the union's certification. ", " The concomitant invocation of Board processes requires the Board to assure that the election meets due process requirements. ", " Id. The Board equated the affiliation decision with the initial certification process and declared that affiliation differs from such internal matters as strike votes and contract ratifications because only the affiliation decision \"directly impacts upon matters within the breadth of the Act and results in an undermining of the Board's own election and certification procedures.\" ", " Id. The Board asserted that the opportunity for the nonmember employees to join the union before the election did not satisfy due process because section 7 of the Act gives employees the right to refrain from union activities. ", " Id. Finally, as to the argument that inclusion of all employees would not have changed the outcome, the Board repeated Member Jenkins' dissent from the first decision in the case: \"the effects of the exclusion cannot be measured by a mere numerical tally.\" ", " Id. n. 12. ", " In conclusion, the Board declared that the employer did not commit any unfair labor practice by refusing to bargain with the post-affiliation union and held that due process requires that an affiliation election be open to all employees. ", " Id. at 1241.", "\n\n\n21\nThe two dissenters reasserted the rationales proffered in the first two Board decisions in the case. ", " First, noting that it was the union's internal rule to require membership as a prerequisite to being able to vote in an affiliation election, the dissenters continued to maintain that such an election is an internal union matter in which the Board should not interfere. ", " Id. at 1242 (Members Fanning and Zimmerman, dissenting). ", " They also claimed that the matters previously recognized as internal, such as contract ratifications and strike votes, have at least as much impact upon nonmembers as an affiliation election, and yet the majority did not even question the exclusion of nonmembers in those situations. ", " Id. The dissenters saw no tension between the exclusion of a nonmember and an employee's section 7 right to refrain from union activity: \"If he has not joined, and was not unfairly barred from doing so, he is responsible for his own disenfrachisement.\" ", " Id. If he has demonstrated no interest in internal union affairs by not joining, then the union should have no obligation to \"solicit his views\" concerning affiliation. ", " Id. The dissenters maintained that the unionized employees are those most affected by an affiliation and that any effects upon nonmembers are indirect. ", " They again noted that the outcome would not have changed had the nonmembers had the opportunity to vote. ", " Id. at 1243 n. 21.", "\n\n\n22\nThe Fifth Circuit affirmed the Board's order. ", " Local Union No. ", "4-14, Oil Workers International Union v. N.L.R.B., 721 F.2d 150 (5th Cir.1983). ", " Initially, the court acknowledged that \" 'Congress has entrusted the Board with a wide degree of discretion in establishing the procedures and safeguards necessary to ensure the fair and free choice of bargaining representatives by employees.' \" ", " Id. at 153, quoting N.L.R.B. v. A.J. Tower Co., 329 U.S. 324, 330, 67 S.Ct. ", "324, 327, 91 L.Ed. ", "322 (1946). ", " The court also remarked that the Board's collective experience could justify a change in its position. ", " The court then noted the Board's prior vacillations on the issue and found \"clearly articulated reasonable grounds\" for the Board's new position. ", " Id. The court concluded:\n\n\n23\n[W]e are unable to say that the general ruling that now requires the participation of nonunion members in an affiliation election is irrational or inconsistent with the Act, or that it is beyond the wide discretion of the Board to establish procedures in an affiliation election that will ensure the fair and free choice of the bargaining representative of all the employees.", "\n\n\n24\nId. at 152-53.", "\n\nIII. ", "THE NINTH CIRCUIT DECISION\n\n25\nThe United States Court of Appeals for the Ninth Circuit has held, in a two-to-one decision, that the Amoco rule is irrational and inconsistent with the Act. ", " Financial Institution Employees, Local No. ", "1182 v. N.L.R.B., 752 F.2d 356 (9th Cir.1984) (F.I.E.), rehearing denied, 750 F.2d 757, cert. ", "granted, --- U.S. ----, 105 S.Ct. ", "2318, 85 L.Ed.2d 838 (1985). ", " In the F.I.E. case, an independent union sought affiliation with an international union, with the affiliation vote confined to union members. ", " Only 2,624 of the 4,800 unit employees were union members. ", " Of the union members, only 1,980 voted; 1,206 voted for affiliation and 774 voted against it. ", " After finding continuity between the pre- and post-affiliation unions, the Board amended the union's certification. ", " Seattle-First National Bank, 241 N.L.R.B. 751 (1979). ", " When the employer then refused to bargain, the Board found the employer guilty of an unfair labor practice. ", " Financial Institution Employees, 245 N.L.R.B. 700 (1979). ", " After the Board adopted its new Amoco rule, however, it reversed itself in this case as well. ", " Reasoning that the exclusion of nonmembers violates fundamental due process standards, the Board revoked the amended certification and dismissed the unfair labor practice charge against the employer. ", " Seattle-First National Bank, 265 N.L.R.B. 426 (1982).", "\n\n\n26\nThe Ninth Circuit reversed, noting that, prior to Amoco, the Board had undertaken two inquiries when examining affiliation elections. ", " First, the Board had always required that unions conduct the elections with sufficient due process protections to ensure that the results accurately reflected the wishes of a majority of the union members. ", " 752 F.2d at 360-61. ", " The new rule now requires, as a threshold due process requirement, that all employees participate, thereby importing a consideration of the nonmembers' section 7 rights into the due process inquiry. ", " Id. The second inquiry, not altered by Amoco, is whether there is a continuity of representation between the pre- and post-affiliation unions, an inquiry which addresses the section 7 interests of both members and nonmembers. ", " Id. at 361. ", " If continuity exists, then the Board has traditionally considered an affiliation to be an internal union affair. ", " Id.\n\n\n27\nThe court disapproved of the Amoco rule for three reasons. ", " First, it held that the \"rule violates a longstanding federal policy avoiding unnecessary interference in internal union affairs.\" ", " Id. at 362. ", " The court's reasoning on this issue was somewhat confusing. ", " At the outset of its opinion, the court rejected the Board's assertion that affiliations are rarely simply internal matters, stating that some affiliations have such minimal effects upon nonmembers that they could be nothing but internal union affairs, while conceding that others have significant external effects upon nonmembers. ", " Id. n. 9. ", " The difference in effect usually depends upon the amount of authority ceded to the international, which is the subject of the continuity inquiry. ", " Id. Nevertheless, because the continuity inquiry adequately protected nonmembers' rights, the court determined that \"all affiliation decisions [are] internal union affairs.\" ", " Id. The court conceded that the Board could interfere with internal matters if the questioned union rule \"significantly impinges on a policy of the NLRA.\" ", " Id. The court also conceded that the Board could interfere with internal matters if the questioned union rule \"significantly impinges on a policy of the NLRA.\" ", " Id. at 363. ", " The court then concluded that the Amoco rule interferes with an internal union practice that impairs no statutory labor policy: \"Under the new rule, by requiring a unit-wide vote even when continuity exists between a pre- and post-affiliation union, the Board inevitably interferes in internal union affairs without justification.\" ", " Id. at 364.", "\n\n\n28\nSecond, the court concluded that the new rule contravenes \"the strong national policy of maintaining stability in the bargaining representative to achieve the NLRA's primary purpose preserving industrial peace.\" ", " Id. The Board contrasted, for example, the Board's section 9(c) decertification procedures, under which the Board will not consider a decertification petition unless at least thirty percent of the employees sign the petition, 29 C.F.R. Sec. ", "101.18, with the new rule, which effectively decertifies the post-election union without any examination \"into the character of the union or its support among employees.\" ", " Id. at 365. ", " The Amoco rule thus allows an employer to avoid a contract, without any indication that the union has lost its majority status, if the union affiliates without the participation of all employees.", "\n\n\n29\nFinally, the court held that the new rule is irrational for two reasons. ", " First, the previous procedures adequately protect both all employees' rights to be represented only by an entity approved by a majority of the unit's employees and union members' rights to run internal affairs without outside interference. ", " Id. at 366. ", " The continuity requirement adequately protects nonmembers' section 7 rights, and, if a sizeable percentage of the employees become disenchanted, they retain the right to petition for decertification. ", " Id. Second, the court determined that the Board's notions of \"fundamental due process\" for all employees does not support the new rule. ", " Id. at 367. ", " Previously, the due process inquiry only looked at the effect of voting procedures upon union members' rights to manage internal union affairs, while the continuity inquiry protected nonmembers' rights. ", " Furthermore, the court maintained, the new rule is duplicative because, if the Board determines after an Amoco- imposed unit-wide election that there is a question of continuity raised by the affiliation, the Board would then conduct a formal unit-wide representation election. ", " Id. Finally, the court found unpersuasive the Board's contention that, because affiliations usually result in amendments to certifications, the integrity of Board processes would be questioned without the new rule. ", " The court \"fail[ed] to see how imposing a non-Board-supervised election, even when no representation question arises, enhances the integrity of the Board's certification and election procedures.\" ", " Id. (footnote omitted).", "\n\n\n30\nIn dissent, Judge Wright found the new rule neither irrational nor inconsistent with the Act. ", " Id. at 368 (Wright, J., dissenting). ", " The judge relied upon the Fifth Circuit's opinion, a desire to avoid an \"unwarranted\" intercircuit conflict over the rationality of the Board's decision, and the broad deference due to the Board. ", " Id. at 368-69. ", " For similar reasons, six judges dissented from the subsequent denial of the employer's petition for rehearing with suggestion for rehearing en banc. ", " Financial Institution Employees, Local No. ", "1182 v. N.L.R.B., 750 F.2d 757 (9th Cir.1984).", "\n\n\n31\nThe Supreme Court has granted the separate petitions for certiorari filed by the Board, N.L.R.B. v. Financial Institution Employees, Local 1182, --- U.S. ----, 106 S.Ct. ", "28, 87 L.Ed.2d ----, (1985), and the employer, Seattle-First National Bank v. Financial Institution Employees, Local 1182, --- U.S. ----, 106 S.Ct. ", "28, 87 L.Ed.2d ----, (1985). ", " Despite the Supreme Court's decision to grant certiorari, however, we have determined, for two reasons, to resolve the present dispute at this time. ", " First, our decision might finally resolve this case should the parties seek no further review, thus making further delay unnecessary. ", " Second, it is conceivable that the Supreme Court might not resolve the precise issue before us. ", " Significantly, the question raised in the present case with respect to the Board's failure to impose an outcome determinative limitation upon the Amoco rule is wholly absent from the F.I.E. case. ", " In the latter case, the number of employees excluded from the vote vastly exceeded the margin of victory by which the affiliation election carried. ", " Thus, even if the Supreme Court were to agree with the Board's position in the F.I.E. case, we would still have to determine whether the Board's decision not to apply the outcome determinative test to affiliation elections is justifiable.", "\n\n\n32\nFinally, we note that the validity of the Amoco rule is also presently before the United States Court of Appeals for the District of Columbia Circuit. ", " United Food and Commercial Workers International Union Local 568 v. N.L.R.B., petition for review docketed, No. ", "84-1243 (D.C.Cir. ", "June 14, 1984) (reviewing F.W. Woolworth Co., 268 N.L.R.B. 805 (1984)).", "\n\nIV. ", "THE INTERNAL UNION AFFAIR ISSUE\n\n33\nPetitioner contends that a merger election is an internal union affair. ", " Traditionally, the Board, with court approval, has taken a deferential approach to internal union affairs, intervening only when a particular procedure does not meet \"adequate due process standards.\" ", " See, e.g., United Steelworkers v. Sadlowski, 457 U.S. 102, 102 S.Ct. ", "2339, 72 L.Ed.2d 707 (1982) (campaign contributions by nonmembers in election of union officers); N.L.R.B. v. Boeing Co., 412 U.S. 67, 93 S.Ct. ", "1952, 36 L.Ed.2d 752 (1973) (union discipline); Scofield v. N.L.R.B., 394 U.S. 423, 89 S.Ct. ", "1154, 22 L.Ed.2d 385 (1969) (limits on piece work); N.L.R.B. v. Allis-Chalmers Manufacturing Co., 388 U.S. 175, 87 S.Ct. ", "2001, 18 L.Ed.2d 1123 (1967) (union discipline); Amoco Production Co., 262 N.L.R.B. at 1241 (Board distinguishes affiliations from strike votes, contract ratifications, and choice of contract negotiators, into which, the Board concedes, it normally would not intrude). ", " In its Amoco decision, however, the Board determined that an affiliation election is not a solely internal union matter because of its impact upon the Board's certification process. ", " We must determine whether the Board's characterization of affiliation and merger elections is sustainable.", "\n\n\n34\nOur appellate function in the present case is a narrow one. ", " The Act confers upon the Board the authority to implement and interpret the Act. ", " See N.L.R.B. v. Insurance Agents' International Union, 361 U.S. 477, 499, 80 S.Ct. ", "419, 432, 4 L.Ed.2d 454 (1960). ", " Thus, as long as the Board's explication of a rule \"is not inadequate, irrational or arbitrary,\" we must sustain its position. ", " N.L.R.B. v. Erie Resistor Corp., 373 U.S. 221, 236, 83 S.Ct. ", "1139, 1149, 10 L.Ed.2d 308 (1963). ", " As the Supreme Court has recently stated, in an analogous context, if the Act\n\n\n35\nhas not directly addressed the precise question at issue, the court does not simply impose its own construction of the statute, as would be necessary in the absence of an administrative interpretation. ", " Rather, if the statute is silent or ambiguous with respect to the issue, the question for the court is whether the agency's answer is based on a permissible construction of the statute.", "\n\n\n36\n... Sometimes the legislative delegation [of authority] to an agency on a particular question is implicit rather than explicit. ", " In such a case, a court may not substitute its own construction of a statutory provision for a reasonable interpretation made by the administrator of an agency.", "\n\n\n37\nWe have long recognized that considerable weight should be accorded to an executive department's construction of a statutory scheme it is entrusted to administer, and the principle of deference to administrative interpretations 'has been consistently followed by this Court whenever decision as to the meaning or reach of a statute has involved reconciling conflicting policies....' \"\n\n\n38\nChevron, U.S.A., Inc. v. Natural Resources Defense Council, Inc., --- U.S. ----, 104 S.Ct. ", "2778, 2782-83, 81 L.Ed.2d 694 (1984) (footnotes omitted), quoting United States v. Shimer, 367 U.S. 374, 382, 81 S.Ct. ", "1554, 1560, 6 L.Ed.2d 908 (1961).", "\n\n\n39\nThe present case requires just such a reconciliation of conflicting statutory policies. ", " The parties agree that the two fundamental labor policies involved are, first, stability in bargaining relations and industrial peace and, second, free choice and majority rule in the determination of a unit's bargaining agent. ", " See N.L.R.B. v. Food Employers Council, Inc., 399 F.2d 501, 504 (9th Cir.1968). ", " The act includes a number of provisions designed to limit labor strife and instability. ", " E.g., Sec. ", "8(b)(7)(A), 29 U.S.C. Sec. ", "158(b)(7)(A) (prohibits recognitional picketing where unit employees already are represented by a recognized union); Sec. ", "8(b)(7)(B), 29 U.S.C. Sec. ", "158(b)(7)(B) (bars recognitional picketing for one year after a valid election); Sec. ", "9(c)(3), 29 U.S.C. Sec. ", "159(c)(3) (prohibits election in unit that has had an election within previous year). ", " See generally N.L.R.B. v. A.J. Tower Co., 329 U.S. at 331, 67 S.Ct. ", "at 328. ", " The Board has adopted a number of other rules to achieve the same end. ", " Brooks v. N.L.R.B., 348 U.S. 96, 75 S.Ct. ", "176, 99 L.Ed. ", "125 (1954) (Board may invest union with an irrebuttable presumption of majority status for one year after certification); Pioneer Inn Associates v. N.L.R.B., 578 F.2d 835, 838 (9th Cir.1978) (upholding \"contract bar\" rule that Board will not conduct decertification election during life of contract even if majority of employees withdraws support from union); 29 C.F.R. Sec. ", "101.18 (1984) (decertification petition requires support of at least thirty percent of employees). ", " The Amoco rule implicates the stability policy by threatening to destroy an established bargaining relationship.", "\n\n\n40\nThe interest in employee free choice of bargaining representatives is also one of the fundamental policies underlying the Act. ", " For instance, section 7 states:\n\n\n41\nEmployees shall have the right to self-organization, to form, join or assist labor organizations, to bargain collectively through representatives of their own choosing, and to engage in other concerted activities for the purpose of collective bargaining or other mutual aid or protection, and shall also have the right to refrain from any or all such activities....\n\n\n42\n29 U.S.C. Sec. ", "157 (emphasis added). ", " Furthermore, section 9(a) of the Act provides:\n\n\n43\nRepresentatives designated or selected for the purposes of collective bargaining by a majority of the employees in a unit appropriate for such purposes, shall be the exclusive representatives of all the employees in such unit for the purposes of collective bargaining in respect to rates of pay, wages, hours of employment, or other conditions of employment.", "\n\n\n44\n29 U.S.C. Sec. ", "159(a). ", " The exclusive character of the bargaining representative requires the union to represent the interests of those employees who choose to exercise their section 7 right to refrain from union activities. ", " N.L.R.B. v. Allis-Chalmers Manufacturing Co., 388 U.S. at 180, 87 S.Ct. ", "at 2006. ", " The impact of the Amoco rule upon the free choice interest is obvious.", "\n\n\n45\nAn affiliation or merger election limited to union members presents particularly acute tensions between these conflicting policies. ", " If the Board refuses to amend its certification or find an unfair labor practice should an employer refuse to bargain with the post-merger entity, it is most likely that the bargaining relationship will cease. ", " On the other hand, if the Board permits the post-merger entity to represent all unit employees upon the basis of an exclusive election, a substantial possibility exists that a majority of the unit-wide work force would not favor that representation. ", " To resolve the tensions presented by merger cases, the Board has resorted to a two-part test, as delineated above. ", " First, the Board inquires whether the election procedures included adequate due process safeguards. ", " Second, if the procedures are sufficient, the Board determines whether continuity exists between the pre- and post-merger organizations. ", " The present case concerns only the first step of the Board's inquiry: As a matter of due process, Amoco requires a union to allow all employees in a bargaining unit to vote in the merger election.", "\n\n\n46\nPreliminarily, petitioner contends that, because the Amoco rule represents an allegedly sharp change of agency course, the agency \"bears the burden of fully justifying the necessity for its shift in position.\" ", " In support of its contention, the union cites Atchison, Topeka & Santa Fe Ry. ", "v. Witchita Board of Trade, 412 U.S. 800, 93 S.Ct. ", "2367, 37 L.Ed.2d 350 (1973), in which the Court stated that an agency must clearly explain its departure from a \"settled course of behavior.\" ", " Id. at 807-08, 93 S.Ct. ", "at 2374-2375. ", " Yet, as the history of the Amoco case demonstrates, see Part II, supra, the Board's approach to the affiliation issue has been anything but settled. ", " In an effort to resolve an unsettled area of its jurisprudence, the Board has now established its Amoco rule. ", " As the United States Court of Appeals for the Ninth Circuit has stated, with reference to an area as fraught with indecision as is the affiliation issue, \"the Board may alter its standards provided that its new rules are both rational and consistent with the Act.\" ", " N.L.R.B. v. Best Products Co., 765 F.2d 903, 911 (9th Cir.1985). ", " Thus, as long as the Amoco rule is rational and consistent with the Act, we will uphold it notwithstanding that the new rule resolves an unsettled area of union election law.", "\n\n\n47\nTo comply with the limited review mandated by Chevron, see page 761, supra, we must give special deference to Board rules related to the choice of a bargaining representative: \"as a matter of policy 'the soundness of an election rule is not the business of the reviewing court.' \" ", " N.L.R.B. v. Tom Wood Datsun, Inc., 767 F.2d 350, 352 (7th Cir.1985), quoting Mosey Manufacturing Co. v. N.L.R.B., 701 F.2d 610, 615 (7th Cir.1983) (en banc). ", " Petitioner contends that the Amoco rule is not an election rule, but is, instead, an unwarranted intrusion by the Board into an internal union affair. ", " Included in petitioner's contention, however, is a presupposition that a merger is an internal union affair. ", " Yet, that is precisely the question presented by this petition. ", " The Amoco rule that a merger is not a solely internal union affair represents a balancing of the stability and free choice interests. ", " We must determine whether the Board's balancing of the interests and conclusion that mergers are not solely internal union affairs reflect a reasonable construction of the Act. ", " Beth Israel Hospital v. N.L.R.B., 437 U.S. 483, 501, 98 S.Ct. ", "2463, 2473, 57 L.Ed.2d 370 (1978).", "\n\n\n48\nIn Board-conducted representation elections, the Board has delineated a fairly elaborate set of procedures to be followed. ", " In Amoco, the Board has merely redefined what it will consider to be adequate due process in the context of union-run merger elections. ", " As a matter of internal union structure, a merger is virtually indistinguishable from other matters that the Board holds to be internal union affairs; a merger affects the relationship between a union and its members in such the same way as contract ratifications and elections of union officers. ", " In one crucial aspect, however, a merger election differs from the other internal union affairs: Its effects are not limited to the relationship between a union and its members. ", " Instead, it has external ramifications. ", " For example, after an affiliation or merger, a union inevitably seeks an amendment to its certification, as in Amoco, or files unfair labor practice charges with the Board, as in the present case. ", " Thus, because petitioner invoked the external authority of the Board in an attempt to establish that the employer had committed an unfair labor practice, the Board could rationally require an additional indicium of unit-wide majority support for the merger, while avoiding the imposition of the entire set of procedures required in a Board-conducted election. ", " The additional indicium that Amoco requires is that all unit employees have the opportunity to vote.", "\n\n\n49\nWe consider Amoco's limited procedural imposition upon the union's ability to conduct an election to be a rational balancing of the conflicting interests in stability and free choice. ", " Furthermore, the imposition of the unit-wide eligibility requirement reconciles the union's dual status as a voluntary organization and as a certified or recognized bargaining agent. ", " See R. Williams, NLRB Regulation of Union Bargaining Rights when Affiliation Changes 24 (U.Pa.1982). ", " We do not suggest that Amoco is the only rational balance that the Board could have reached. ", " The Board's pronouncements are not subject to such an exacting standard. ", " We hold only that the Board's conclusion that a merger election is not a solely internal union affair is rational, consistent with the Act, and not arbitrary.", "\n\n\n50\nWe decline to agree with the approach adopted by the Ninth Circuit in the F.I.E. case for much the same reasons that Judge Wright offered in his dissent from that opinion. ", " The majority in F.I.E. set forth three reasons for rejecting Amoco. ", " First, the rule unnecessarily interferes with internal union affairs. ", " 752 F.2d at 362-64. ", " As we have just concluded, however, we find that the Board's holding that a merger is not a solely internal union affair is rational and consistent with the Act. ", " See id. at 368-69 (Wright, J., dissenting). ", " Second, the Ninth Circuit found that the rule contradicted the policy of promoting stability in the bargaining representative. ", " Id. at 364-66. ", " Yet, as Judge Wright noted, Amoco will not increase instability because, \"[u]nder the new rule, nonmembers may not force affiliation [or merger] because the decision to hold an affiliation election remains the province of the union. ", " The Board's rule will promote stability more effectively than did its former position.\" ", " Id. at 369 (Wright, J., dissenting). ", " As we point out subsequently herein the firm establishment of Amoco rule, if followed by unions, might result in less post-merger litigation, and less industrial instability, than under prior Board approaches). ", " Finally, the F.I.E. majority asserted that the new rule was irrational because previously followed procedures adequately protected all relevant interests. ", " Id. at 366. ", " On this issue, we find ourselves in complete agreement with Judge Wright: \"The adequacy of the old procedure is irrelevant. ", " We should instead determine whether the new rule is rational and consistent with the Act. ", " The merit or sufficiency of the previous rule should not control.\" ", " Id. at 369 (Wright, J., dissenting).", "\n\n\n51\nBecause a merger election is not solely internal, the Board was free to pass upon the propriety of the election procedures followed by the union. ", " Its determination that all unit members must vote before it will sanction the results of an affiliation election is a reasonable accommodation of the conflicting policies present in this case. ", " Consequently, we must sustain the Board's action in this case, provided that we reject petitioner's next claim.", "\n\nV. THE OUTCOME DETERMINATIVE TEST\n\n52\nPetitioner claims that, even if we sustain the Board's universal suffrage requirement, we must reverse the Board's disposition of this case because of the failure of the Board to apply an outcome determinative limitation to the Amoco rule. ", " Petitioner notes that, in Board-conducted representation elections, the Board will not overturn the election results unless the alleged errors in tabulation or voting procedures could have affected the outcome. ", " See N.L.R.B. v. Speedway Petroleum, Division of Ermo Marketing Co., 768 F.2d 151, 154 (7th Cir.1985). ", " Because a merger election is, in effect, a substitute for a representation election, which explains the Board's involvement in the regulation of merger elections, see Part IV, supra, petitioner asserts that the Board must apply the same outcome determinative test. ", " Furthermore, petitioner claims that the Board failed to offer \"any explanation of consequence\" for refusing to apply the limitation.", "\n\n\n53\nPetitioner's final contention is clearly without merit. ", " The Board did proffer a justification for its refusal to apply an outcome determinative limitation when it announced the Amoco rule. ", " The justification was that \"the effects of the exclusion cannot be measured by a mere numerical tally.\" ", " 262 N.L.R.B. at 1241. ", " Surely, this view is a rational assessment of the effects of a group exclusion upon the outcome of an election. ", " With the knowledge that the union has forbidden them from voting, nonmembers have little incentive to air their views about the merits of a merger. ", " Consequently, conflicting analyses of the proposed merger remain unarticulated. ", " The resultant distortion of the election atmosphere easily could affect the votes of union members; exposure to conflicting views could either spur otherwise abstaining members to vote or convince voting union members to change their minds. ", " Either way, the presentation of alternative opinions might lead union employees to adopt the viewpoints presented by non-union unit members and thus extend the influence of the non-union employees beyond their numerical representation within the bargaining unit. ", " Although the contexts are different, we find that the pronouncements of the Supreme Court relative to group exclusions from jury service capture the manner in which group exclusions from an election can have effects greater than the mere number of excluded voters. ", " See, e.g., Peters v. Kiff, 407 U.S. 493, 503-04, 92 S.Ct. ", "2163, 2168-69, 33 L.Ed.2d 83 (1972) (opinion of Marshall, J.) (exclusion of blacks for jury service \"deprives the jury of a perspective on human events that may have unsuspected importance in any case that may be presented\"); Ballard v. United States, 329 U.S. 187, 193-94, 67 S.Ct. ", "261, 264, 91 L.Ed.2d 181 (1946) (exclusion of women from juries eliminates \"the subtle interplay of influence\" from the jury room).", "\n\n\n54\nEven apart from the effect of the exclusion of nonmembers upon the conduct of union employees, we hesitate to endorse the election of a union that has deliberately disenfranchised an entire group of otherwise eligible voters. ", " Notions of participatory democracy lie at the very center of the Act, and full participation is impossible to achieve if entire segments of a given electorate do not receive the opportunity to vote. ", " Consequently, we consider the Board's statement that \"the effects of the exclusion cannot be measured by a mere numerical tally\" to be an \"explanation of consequence\" for the rule.", "\n\n\n55\nPetitioner's argument that the fact that the Board applies an outcome determinative test to its own representation elections somehow renders irrational the Board's decision not to apply the same test to union-run merger elections is also without merit. ", " Petitioner correctly asserts that the product of both a Board representation election and a union affiliation election is the same: to determine an exclusive bargaining representative. ", " Yet, there is no logical reason why the Board must analyze the results of the two types of elections in an identical fashion, just as there is no requirement that the entity running the election must observe the same procedures. ", " We have described above how the procedures required in an election depend upon whether the Board or the union runs the election. ", " Rather than requiring unions to conform to all the procedural safeguards found in a Board-run election, the Board only requires that the union provide every employee an opportunity to register his or her opinion. ", " It is not fatally inconsistent for the Board to apply different rules to fundamentally different procedures, even though the result of both procedures determines the exclusive bargaining agent for an employee unit.", "\n\n\n56\nFurther, a significant, apples-oranges, distinction exists between the two types of elections. ", " No group of employees within the appropriate unit is disenfranchised. ", " Those who assert they are in the unit may cast a ballot even though it may be challenged. ", " It is the challenged votes, nevertheless votes, which are not counted if their numbers would not be determinative of the outcome. ", " The several distinctions between the two procedural mechanisms dispose of the contention that the Board must impose the same mode of analysis in both contexts.", "\n\n\n57\nAccording to petitioner, the independent union ceased to exist after the merger. ", " Thus, the decision effectively to void the election would leave the employees without representation, at least temporarily. ", " Petitioner complains about this \"draconian\" result. ", " If the Board was correct, however, about its resolution of the internal union affairs issue, and we already have held that it was, then petitioner is to blame for not allowing the non-union employees to vote. ", " Although a majority of the unit employees had agreed to representation by the independent, the independent no longer exists. ", " Furthermore, the Board reasonably concluded that, because nonunion employees did not vote, no recognizable majority of the unit employees had agreed to representation by the post-election entity. ", " Therefore, petitioner cannot invoke Board processes to force the Employer to bargain with it.", "\n\n\n58\nTwo considerations deprive the allegedly draconian result of much of its sting. ", " First, in the particular employment relationship at issue in the present case, nothing prevents petitioner from attempting to reorganize the Employer's work force. ", " If petitioner succeeds in obtaining an indication of majority support, and the Employer refuses to recognize it, petitioner can compel a unit-wide, Board-conducted election, with binding results. ", " Second, on a systemic level, the Amoco rule should result in a decrease in the amount of litigation on merger issues. ", " Under Amoco, a union is certain to include all unit employees in a merger vote. ", " If the vote carries, employers faced with certain majority support for the post-merger organization might be dissuaded from further contesting the validity of the merger.", "\n\n\n59\nIt is on the systemic level that an outcome detemrinative limitation upon Amoco would divest the rule of its efficacy. ", " If a union knew that it could disenfranchise nonmember employees and still have the results stand, provided the margin of victory was greater than the number of disenfranchised employees, there would be some incentive to continue to exclude nonmembers. ", " If, on the other hand, the majority were not sufficiently large, there would have to be a unit-wide election, again run by the union. ", " Even after such an election, if the question of the continuity of the post-merger union arose, a third election, this one conducted by the Board, would take place. ", " The Board's refusal to impose an outcome determinative limitation eliminates the incentive for a union to gamble by disenfranchising the nonmember employees in the first instance. ", " As such, the Board's refusal to limit Amoco rationally implements the fundamental NLRA policy of employee democracy.", "\n\nVI. ", "CONCLUSION\n\n60\nWe have considered all the arguments of petitioner and find them to be without merit. ", " Accordingly, the petition for review is DENIED.", "\n\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0, 0.2, 0.03875968992248062, 0, 0, 0.041666666666666664, 0, 0.03225806451612903, 0, 0.0234375, 0.04, 0.07142857142857142, 0.013605442176870748, 0.017341040462427744, 0.008547008547008548, 0.020618556701030927, 0.012195121951219513, 0.010526315789473684, 0, 0, 0.02, 0.01282051282051282, 0.0136986301369863, 0.007936507936507936, 0.012658227848101266, 0, 0, 0, 0.009708737864077669, 0.023529411764705882, 0.00749063670411985, 0, 0.004694835680751174, 0.005917159763313609, 0.007142857142857143, 0.010526315789473684, 0.029411764705882353, 0, 0.014084507042253521, 0.029850746268656716, 0.006666666666666667, 0.013333333333333334, 0.005263157894736842, 0.015384615384615385, 0.007272727272727273, 0, 0, 0, 0.00823045267489712, 0.018518518518518517, 0.00625, 0, 0.005076142131979695, 0.010869565217391304, 0.003215434083601286, 0, 0.008264462809917356, 0.00796812749003984, 0.010752688172043012, 0.006024096385542169, 0, 0.014925373134328358, 0, 0.005405405405405406, 0.017142857142857144, 0.025, 0.015503875968992248, 0, 0.007434944237918215, 0.02040816326530612, 0.010752688172043012, 0, 0, 0, 0, 0, 0.006535947712418301, 0, 0.005434782608695652, 0.005555555555555556, 0.005434782608695652, 0, 0, 0.023255813953488372, 0, 0, 0, 0.0196078431372549, 0.00851063829787234, 0.020833333333333332, 0.03389830508474576, 0.011363636363636364, 0.02, 0.011627906976744186, 0.006622516556291391, 0.004807692307692308, 0.045454545454545456, 0.008928571428571428, 0, 0.00904977375565611, 0.005050505050505051, 0.0038910505836575876, 0.002380952380952381, 0, 0.021739130434782608, 0.006172839506172839, 0, 0, 0, 0, 0, 0.006944444444444444, 0.01694915254237288, 0.015384615384615385, 0, 0, 0, 0.01020408163265306, 0, 0, 0.007434944237918215, 0.008771929824561403, 0.004807692307692308, 0.005076142131979695, 0.017857142857142856, 0.006896551724137931, 0.007042253521126761, 0.015873015873015872, 0.005208333333333333, 0.004329004329004329, 0.007692307692307693, 0, 0.0041841004184100415, 0, 0.009345794392523364, 0.0036900369003690036, 0, 0, 0, 0, 0, 0, 0, 0.038461538461538464, 0, 0.0125, 0.008097165991902834, 0.01282051282051282, 0, 0, 0.009615384615384616, 0.013605442176870748, 0.002457002457002457, 0, 0, 0.021164021164021163, 0.022222222222222223, 0.010638297872340425, 0, 0, 0.006993006993006993, 0, 0, 0.008547008547008548, 0.017857142857142856, 0.009174311926605505, 0.016666666666666666, 0.021052631578947368, 0.004975124378109453, 0.01818181818181818, 0.02142857142857143, 0.004830917874396135, 0.047619047619047616, 0, 0.0043859649122807015, 0, 0.008771929824561403, 0.014492753623188406, 0, 0, 0, 0.003003003003003003, 0, 0, 0, 0.012578616352201259, 0.012195121951219513, 0, 0.005988023952095809, 0, 0.0045871559633027525, 0.012244897959183673, 0, 0, 0.00510204081632653, 0, 0, 0, 0, 0.007246376811594203, 0, 0, 0.007168458781362007, 0.009216589861751152, 0.01015228426395939, 0, 0.01, 0.05263157894736842, 0.015228426395939087, 0, 0, 0, 0, 0.022727272727272728, 0.006756756756756757, 0, 0.006666666666666667, 0, 0.010309278350515464, 0.015228426395939087, 0, 0.016736401673640166, 0.012738853503184714, 0.008695652173913044, 0, 0.028169014084507043, 0, 0.009259259259259259, 0.004975124378109453, 0.028169014084507043, 0, 0, 0.00819672131147541, 0.011111111111111112, 0.01639344262295082, 0.009345794392523364, 0, 0.012195121951219513, 0, 0, 0.0078125, 0.015873015873015872, 0, 0.0034965034965034965, 0, 0, 0, 0.008213552361396304, 0.008403361344537815, 0, 0, 0, 0.012195121951219513, 0, 0.16666666666666666, 0, 0, 0, 0, 0, 0, 0.014285714285714285, 0, 0.013888888888888888, 0.022727272727272728, 0, 0.007957559681697613, 0, 0.008849557522123894, 0, 0, 0, 0.0024330900243309003, 0, 0.125, 0, 0, 0, 0.014084507042253521, 0, 0.004739336492890996, 0.00398406374501992, 0.008620689655172414, 0.009900990099009901, 0.007246376811594203, 0.010101010101010102, 0.004629629629629629, 0.012345679012345678, 0.0196078431372549, 0.007042253521126761, 0, 0, 0.013333333333333334, 0.018018018018018018, 0.011278195488721804, 0, 0.005714285714285714, 0.006944444444444444, 0.01875, 0.013157894736842105, 0, 0, 0.007407407407407408, 0.0056179775280898875, 0.015625, 0, 0.015503875968992248, 0.014598540145985401, 0.0033444816053511705, 0, 0, 0.010101010101010102, 0.008310249307479225, 0.009900990099009901, 0.005263157894736842, 0, 0.0196078431372549, 0.02127659574468085, 0.013513513513513514, 0.006289308176100629, 0.016853932584269662, 0.028985507246376812, 0, 0.047619047619047616, 0.006134969325153374, 0.044444444444444446, 0.0078125, 0, 0.008547008547008548, 0.011235955056179775, 0.05128205128205128, 0.009433962264150943, 0.00641025641025641, 0, 0.007936507936507936, 0, 0, 0.05263157894736842, 0.006578947368421052, 0, 0.008928571428571428, 0.014285714285714285, 0.009433962264150943, 0.019230769230769232, 0.007518796992481203, 0.007518796992481203, 0, 0.014925373134328358, 0, 0, 0, 0, 0, 0, 0, 0.0037593984962406013, 0.016666666666666666, 0.007017543859649123, 0, 0, 0, 0.0055248618784530384, 0.007722007722007722, 0.0053475935828877, 0.004347826086956522, 0.007692307692307693, 0.009345794392523364, 0.004651162790697674, 0, 0, 0, 0, 0.00625, 0, 0, 0, 0.004761904761904762, 0, 0.005076142131979695, 0.010638297872340425, 0, 0.006060606060606061, 0.01015228426395939, 0.008403361344537815, 0.012345679012345678, 0, 0.008, 0, 0, 0.006060606060606061, 0.0055248618784530384, 0.02564102564102564, 0, 0, 0, 0 ]
0.008882
5
[ { "analysis_explanation": null, "end": 30, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27 }, { "analysis_explanation": null, "end": 334, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327 }, { "analysis_explanation": null, "end": 399, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 391 }, { "analysis_explanation": null, "end": 426, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401 }, { "analysis_explanation": null, "end": 445, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436 }, { "analysis_explanation": null, "end": 480, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 467 }, { "analysis_explanation": null, "end": 517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 504 }, { "analysis_explanation": null, "end": 532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 519 }, { "analysis_explanation": null, "end": 544, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 534 }, { "analysis_explanation": null, "end": 550, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546 }, { "analysis_explanation": null, "end": 564, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 556 }, { "analysis_explanation": null, "end": 583, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566 }, { "analysis_explanation": null, "end": 588, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585 }, { "analysis_explanation": null, "end": 597, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 590 }, { "analysis_explanation": null, "end": 603, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 599 }, { "analysis_explanation": null, "end": 711, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 707 }, { "analysis_explanation": null, "end": 747, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 735 }, { "analysis_explanation": null, "end": 1036, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1026 }, { "analysis_explanation": null, "end": 1941, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1933 }, { "analysis_explanation": null, "end": 1995, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1991 }, { "analysis_explanation": null, "end": 2038, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2034 }, { "analysis_explanation": null, "end": 2111, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2103 }, { "analysis_explanation": null, "end": 2315, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2290 }, { "analysis_explanation": null, "end": 2926, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2911 }, { "analysis_explanation": null, "end": 3037, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3033 }, { "analysis_explanation": null, "end": 4556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4546 }, { "analysis_explanation": null, "end": 4806, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4779 }, { "analysis_explanation": null, "end": 5300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5290 }, { "analysis_explanation": null, "end": 5310, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5302 }, { "analysis_explanation": null, "end": 5413, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5409 }, { "analysis_explanation": null, "end": 5612, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5608 }, { "analysis_explanation": null, "end": 6548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6538 }, { "analysis_explanation": null, "end": 6786, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6778 }, { "analysis_explanation": null, "end": 7116, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7106 }, { "analysis_explanation": null, "end": 7294, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7284 }, { "analysis_explanation": null, "end": 8359, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8355 }, { "analysis_explanation": null, "end": 8395, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8385 }, { "analysis_explanation": null, "end": 8621, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8613 }, { "analysis_explanation": null, "end": 8631, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8627 }, { "analysis_explanation": null, "end": 10333, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10326 }, { "analysis_explanation": null, "end": 11224, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11220 }, { "analysis_explanation": null, "end": 11361, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11349 }, { "analysis_explanation": null, "end": 11641, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11633 }, { "analysis_explanation": null, "end": 11652, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11648 }, { "analysis_explanation": null, "end": 13640, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13631 }, { "analysis_explanation": null, "end": 13669, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13662 }, { "analysis_explanation": null, "end": 14599, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14591 }, { "analysis_explanation": null, "end": 14627, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14619 }, { "analysis_explanation": null, "end": 15042, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15034 }, { "analysis_explanation": null, "end": 15100, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15096 }, { "analysis_explanation": null, "end": 15874, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15862 }, { "analysis_explanation": null, "end": 16078, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16074 }, { "analysis_explanation": null, "end": 16084, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16080 }, { "analysis_explanation": null, "end": 17384, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17377 }, { "analysis_explanation": null, "end": 19180, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19176 }, { "analysis_explanation": null, "end": 19302, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19294 }, { "analysis_explanation": null, "end": 19607, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19599 }, { "analysis_explanation": null, "end": 19635, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19631 }, { "analysis_explanation": null, "end": 19683, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19679 }, { "analysis_explanation": null, "end": 20478, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20468 }, { "analysis_explanation": null, "end": 20613, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20605 }, { "analysis_explanation": null, "end": 20708, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20704 }, { "analysis_explanation": null, "end": 20751, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20747 }, { "analysis_explanation": null, "end": 20767, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20761 }, { "analysis_explanation": null, "end": 21207, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21199 }, { "analysis_explanation": null, "end": 21217, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21213 }, { "analysis_explanation": null, "end": 21383, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21379 }, { "analysis_explanation": null, "end": 21731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21727 }, { "analysis_explanation": null, "end": 26714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26708 }, { "analysis_explanation": null, "end": 26802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26796 }, { "analysis_explanation": null, "end": 26806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26804 }, { "analysis_explanation": null, "end": 27240, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27232 }, { "analysis_explanation": null, "end": 27427, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27423 }, { "analysis_explanation": null, "end": 27470, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27466 }, { "analysis_explanation": null, "end": 27575, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27571 }, { "analysis_explanation": null, "end": 27618, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27614 }, { "analysis_explanation": null, "end": 28189, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28183 }, { "analysis_explanation": null, "end": 28429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28423 }, { "analysis_explanation": null, "end": 28735, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28703 }, { "analysis_explanation": null, "end": 28856, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28849 }, { "analysis_explanation": null, "end": 28865, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28858 }, { "analysis_explanation": null, "end": 28880, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28867 }, { "analysis_explanation": null, "end": 28925, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28917 }, { "analysis_explanation": null, "end": 28935, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28931 }, { "analysis_explanation": null, "end": 29294, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29285 }, { "analysis_explanation": null, "end": 29346, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29342 }, { "analysis_explanation": null, "end": 29427, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29419 }, { "analysis_explanation": null, "end": 29451, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29447 }, { "analysis_explanation": null, "end": 29454, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29452 }, { "analysis_explanation": null, "end": 29469, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29465 }, { "analysis_explanation": null, "end": 29491, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29487 }, { "analysis_explanation": null, "end": 29522, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29514 }, { "analysis_explanation": null, "end": 29534, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29526 }, { "analysis_explanation": null, "end": 29585, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29581 }, { "analysis_explanation": null, "end": 29620, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29612 }, { "analysis_explanation": null, "end": 29685, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29681 }, { "analysis_explanation": null, "end": 29708, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29704 }, { "analysis_explanation": null, "end": 29773, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29769 }, { "analysis_explanation": null, "end": 30447, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30443 }, { "analysis_explanation": null, "end": 30496, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30492 }, { "analysis_explanation": null, "end": 30634, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30626 }, { "analysis_explanation": null, "end": 30667, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30663 }, { "analysis_explanation": null, "end": 30697, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30687 }, { "analysis_explanation": null, "end": 30719, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30715 }, { "analysis_explanation": null, "end": 31893, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31887 }, { "analysis_explanation": null, "end": 31952, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31948 }, { "analysis_explanation": null, "end": 32004, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32000 }, { "analysis_explanation": null, "end": 32048, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32035 }, { "analysis_explanation": null, "end": 32068, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32064 }, { "analysis_explanation": null, "end": 32093, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32088 }, { "analysis_explanation": null, "end": 32098, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32094 }, { "analysis_explanation": null, "end": 32119, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32115 }, { "analysis_explanation": null, "end": 32453, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32445 }, { "analysis_explanation": null, "end": 32852, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32844 }, { "analysis_explanation": null, "end": 32906, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32896 }, { "analysis_explanation": null, "end": 32991, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32978 }, { "analysis_explanation": null, "end": 33016, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33008 }, { "analysis_explanation": null, "end": 33044, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33040 }, { "analysis_explanation": null, "end": 33169, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33165 }, { "analysis_explanation": null, "end": 33206, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33202 }, { "analysis_explanation": null, "end": 33296, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33288 }, { "analysis_explanation": null, "end": 33354, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33346 }, { "analysis_explanation": null, "end": 33586, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33582 }, { "analysis_explanation": null, "end": 34721, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34716 }, { "analysis_explanation": null, "end": 34795, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34790 }, { "analysis_explanation": null, "end": 35007, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34999 }, { "analysis_explanation": null, "end": 35053, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35049 }, { "analysis_explanation": null, "end": 35078, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35074 }, { "analysis_explanation": null, "end": 36563, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36555 }, { "analysis_explanation": null, "end": 36623, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36619 }, { "analysis_explanation": null, "end": 36664, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36660 }, { "analysis_explanation": null, "end": 37875, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37867 }, { "analysis_explanation": null, "end": 37900, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37879 }, { "analysis_explanation": null, "end": 37979, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37971 }, { "analysis_explanation": null, "end": 38035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38025 }, { "analysis_explanation": null, "end": 38692, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38684 }, { "analysis_explanation": null, "end": 38702, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38698 }, { "analysis_explanation": null, "end": 38754, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38750 }, { "analysis_explanation": null, "end": 40579, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40568 }, { "analysis_explanation": null, "end": 41073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41067 }, { "analysis_explanation": null, "end": 41122, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41116 }, { "analysis_explanation": null, "end": 41187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41181 }, { "analysis_explanation": null, "end": 41510, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41504 }, { "analysis_explanation": null, "end": 41514, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41512 }, { "analysis_explanation": null, "end": 41691, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41685 }, { "analysis_explanation": null, "end": 42010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42004 }, { "analysis_explanation": null, "end": 42014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42012 }, { "analysis_explanation": null, "end": 42259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42253 }, { "analysis_explanation": null, "end": 42479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42473 }, { "analysis_explanation": null, "end": 42707, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42701 }, { "analysis_explanation": null, "end": 42711, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42709 }, { "analysis_explanation": null, "end": 43194, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43180 }, { "analysis_explanation": null, "end": 43468, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43458 }, { "analysis_explanation": null, "end": 43681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43673 }, { "analysis_explanation": null, "end": 45622, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45608 }, { "analysis_explanation": null, "end": 45632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45628 }, { "analysis_explanation": null, "end": 45644, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45638 }, { "analysis_explanation": null, "end": 45689, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45685 }, { "analysis_explanation": null, "end": 45711, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45703 }, { "analysis_explanation": null, "end": 45715, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45713 }, { "analysis_explanation": null, "end": 45890, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45883 }, { "analysis_explanation": null, "end": 45907, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45894 }, { "analysis_explanation": null, "end": 45917, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45913 }, { "analysis_explanation": null, "end": 45970, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45966 }, { "analysis_explanation": null, "end": 46947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46937 }, { "analysis_explanation": null, "end": 204, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 200 }, { "analysis_explanation": null, "end": 408, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 401 }, { "analysis_explanation": null, "end": 28864, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 28858 }, { "analysis_explanation": null, "end": 40657, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 40653 } ]
[ "Q:\n\nIs Autovacuum global setting applied to all tables?", "\n\nI have autovacuum globally enabled, sql query:\nselect * from pg_settings where category like 'Autovacuum'\n\nshows that autovacuum setting is \"on\".", "\nDoes that mean all tables in the database will be subjected to autovacuum periodically, or I need to additionally set autovacuum to \"on\" individually for every table in order to autovacuum it?", "\n\nA:\n\nYes, that means it's globally enabled. ", "\nYou don't need to turn on manually for each table.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.01818181818181818, 0, 0, 0, 0, 0 ]
0.00303
5
[]
[ "tag:blogger.com,1999:blog-2899304538602254665.post939116670968023083..comments2017-08-10T14:43:46.633+02:00Comments on Ullhärvan: FNwFCarin@Ullhärvanhttp://www.blogger.com/profile/18151120034508509678noreply@blogger.comBlogger4125tag:blogger.com,1999:blog-2899304538602254665.post-17405344970839328462017-08-10T14:43:46.633+02:002017-08-10T14:43:46.633+02:00Beautiful little dress, a talented stitcher. :)", "Beautiful little dress, a talented stitcher. :)", "Ellie Morkhttps://www.blogger.com/profile/14825209611404799792noreply@blogger.comtag:blogger.com,1999:blog-2899304538602254665.post-38541156541860575762017-08-10T03:00:07.680+02:002017-08-10T03:00:07.680+02:00Such a pretty knitted dress 👗\nWOW 1 already sadl...Such a pretty knitted dress 👗 <br />WOW 1 already sadly I also can&#39;t play the video.Mariahttps://www.blogger.com/profile/15151975887674467122noreply@blogger.comtag:blogger.com,1999:blog-2899304538602254665.post-80147893807106407552017-08-10T00:17:40.036+02:002017-08-10T00:17:40.036+02:00The dress is a beauty! ", "I couldn&#39;t get the vid...The dress is a beauty! ", "I couldn&#39;t get the video to play but I can imagine how cute he is. :) ", "Hope his birthday was wonderful.Janethttps://www.blogger.com/profile/17104565945520530658noreply@blogger.comtag:blogger.com,1999:blog-2899304538602254665.post-38526227822783606442017-08-09T23:58:02.325+02:002017-08-09T23:58:02.325+02:00Hi Carin oh the little dress is so very cute,well ...Hi Carin oh the little dress is so very cute,well done my friend and happy birthday to your little man xxI amhttps://www.blogger.com/profile/04067353138965879669noreply@blogger.com" ]
{ "pile_set_name": "Pile-CC" }
[ 0.0049382716049382715, 0, 0.0034782608695652175, 0, 0, 0.008528784648187633 ]
0.002824
5
[ { "analysis_explanation": null, "end": 233, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 156 }, { "analysis_explanation": null, "end": 538, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 472 }, { "analysis_explanation": null, "end": 881, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 815 }, { "analysis_explanation": null, "end": 1266, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 1200 }, { "analysis_explanation": null, "end": 1624, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 1561 }, { "analysis_explanation": null, "end": 667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 454 }, { "analysis_explanation": null, "end": 1452, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1447 }, { "analysis_explanation": null, "end": 367, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 149 }, { "analysis_explanation": null, "end": 667, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 464 }, { "analysis_explanation": null, "end": 1009, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 807 }, { "analysis_explanation": null, "end": 1393, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 1192 }, { "analysis_explanation": null, "end": 1624, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 1553 }, { "analysis_explanation": null, "end": 15, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4 }, { "analysis_explanation": null, "end": 73, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 21 }, { "analysis_explanation": null, "end": 716, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 707 }, { "analysis_explanation": null, "end": 804, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 796 }, { "analysis_explanation": null, "end": 1060, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1052 }, { "analysis_explanation": null, "end": 333, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 327 }, { "analysis_explanation": null, "end": 638, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 632 }, { "analysis_explanation": null, "end": 981, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 975 }, { "analysis_explanation": null, "end": 1366, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1360 } ]
[ "Everything is in a state of flux; it is the natural order of things – one of the principles of the universe – a law of physics – part of a soul’s journey. ", "Indeed everything changes continuously, everyone experiences change – the ‘self initiated’ change OR the ‘imposed upon us’ change. ", "Change is quite simply something we cannot escape, avoid, or live without for it is integral to life and growth – it is the essential nature of reality.", "\n\nChange – the Inevitable\n\n“Change is inevitable – unquestionable … the question is, do you accept change passively or take the lead and direct its flow …”\n\nChange can be a time of tumultuous activity, emotions, and instability which has the potential to throw us off balance. ", "For most, we understand that without change the process of evolvement or ‘newness’ cannot occur. ", "However, in saying that – change can create unsteadiness, evoke fear, throw out our equilibrium or just plain de-rail us! ", "And it is at this point that rather than surrender to, or embrace change, we have the tendency to dig our heels in, run for cover or tremble in our boots. ", "The more we come to understand that change is inevitable leaves us feeling helpless, not in control and powerless in its wake.", "\n\nYes – everything is in a state of flux! ", "Yes – often times it is as though it is entirely out of our control! ", "Yes – change is a natural state of life and growth! ", "The good news is – whilst change is inevitable – we have the power to direct the flow!", "\n\nDaisaku Ikeda (Buddhist and founder of several educational, cultural and research institutions) wrote – “Buddhism holds that everything is in constant flux. ", "Thus the question is whether we are to accept change passively and be swept away by it or whether we are to take the lead and create positive changes with our own initiative. ", "While conservatism and self-protection might be likened to winter, night, and death, the spirit of pioneering and attempting to realize ideals evokes images of spring, morning, and birth.”", "\n\nIf it is so that everything is in a state of flux, this notion does not predispose a counter-notion that we are therefore at the mercy of change. ", "Rather, and imperatively so, (and as purported by this great man Daisaku Ikeda in the previous quote), we can be creative – GET creative – and use the power of our inherent creativity to direct the flow of change. ", "Ah … do I hear gasps in response to my use of inherent? ", "Yes … I unequivocally assert inherently! ", "We are all inherently creative by virtue of being part of the essence of creativity itself – Spirit and Nature. ", "And so, we can use the power of our inherent creativity to direct the flow of change." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004672897196261682, 0, 0, 0.008928571428571428, 0 ]
0.000648
5
[ { "analysis_explanation": null, "end": 1476, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1463 }, { "analysis_explanation": null, "end": 1486, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1478 }, { "analysis_explanation": null, "end": 1860, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1854 }, { "analysis_explanation": null, "end": 1961, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1955 }, { "analysis_explanation": null, "end": 1970, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1963 }, { "analysis_explanation": null, "end": 2208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2195 } ]
[ "Effect of formaldehyde on the circular dichroism of chicken erythrocyte chromatin.", "\nFormaldehyde (HCHO) fixation of chicken erythrocyte chromatin produces a marked decrease in its positive circular dichroism (CD), above 260 nm, and the appearance of s small negative ellipticity around 295 nm. ", "The ultraviolet spectrum of chromatin is unaffected, nor does HCHO produce any changes in the uv or CD spectra of chicken erythrocyte DNA. ", "The extent of the circular dichroism transition from the native chromatin to the suppressed spectrum is dependent on the concentration of HCHO and salt concentration. ", "The kinetics of the reactions are complex, implicating at least two reactive species. ", "Studies of the reaction of HCHO with chromatin in ethylene glycol and CD measurements of aqueous chromatin solution with added glutaraldehyde preclude simple dehydration and general cross-linking effects as causes of the CD changes observed. ", "The results are interpreted as indicating a conformational change of the DNA in chromatin caused by histone-DNA or histone-histone cross-linking." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.007194244604316547, 0.005988023952095809, 0, 0.004132231404958678, 0 ]
0.002473
5
[]
[ "World poverty is a problem that is seemingly impossible for us to solve. ", "But why is it such a terrible problem to begin with? ", "Some people might not be able to relate very well to the problem because they have always been blessed with a good life with enough to sustain them (or more), so when they hear about the problem of poverty they find it hard to empathize.", "\n\nSo maybe this post about the top 5 facts on world poverty will help enlighten a few people and help them to gain a bit more empathy. ", "Here are a few things about the world’s problem on poverty.", "\n\nI mentioned before that obesity is actually linked to poverty, because of the poor quality of food available to those who cannot afford it. ", "In developed countries such as the UK, there are varying factors that contribute to the risk of obesity for the poor.", "\n\nThe first problem is that people who are living in low-income households typically do not have a lot of choices regarding food. ", "First of all, low-income communities rarely have big supermarkets close by, and the high cost of commute is often too much. ", "On top of that, healthy whole foods are more costly than high fat, processed foods that have long shelf lives but are also high in calories.", "\n\nKids workout video:\n\nThis phenomenon is so prevalent that social psychologists and economists have a word for it: “food desert”. ", "These communities experience “food deserts” not because they lack food, but because they lack good food. ", "Wholesome food is hard to come by, and there is junk food and processed food a plenty because they are cheap, have a long shelf life, and are made with substandard ingredients. ", "They have almost no nutritional value and are just high in sodium and cholesterol.", "\n\nOne of the most affected of increased risks of obesity due to poverty are children. ", "Children who experience obesity are more prone to the health risks associated with it.", "\n\nLuckily, there are some free exercises for children if they need some help staying healthy and getting active. ", "Gym memberships are expensive and they are often subjected to a sedentary life due to lack of money.", "\n\nPublic playgrounds\nOne solution to keep kids active for free is to use public playgrounds. ", "I have always lobbied for adding parks and playgrounds close to low income communities and so far, some of them have been successful. ", "Children naturally love to play, and climb, and jump, so expose them to playgrounds.", "\n\nWhat I like about playgrounds is that there is an element of natural play, which is exciting for children of all ages. ", "Instead of being forced to do physical activity that they do not like, public playgrounds give them an opportunity to battle obesity in a fun and cheap way.", "\n\nStreet games\nI find that nowadays, children do not really play on the streets any more. ", "I think we should bring back the different street games, from kick the can to hopscotch, which provide children in impoverished areas a way to interact with each other while also getting a bit of much needed exercise.", "\n\nHome exercises\nIf the above choices are not available, home exercises are always a good alternative for children who are at risk of obesity. ", "If they happen to have access to television or to the internet, they can follow along through many free exercise shows so that they will always have a choice to stay fit on the cheap.", "\n\nChildren who are experiencing problems staying fit and are part of communities that are food deserts should be able to get as much exercise as they need for free.", "\n\nI regularly volunteer at a homeless shelter, giving out food and blankets and helping out with the poor. ", "Along with my time and experience, I also donate money to the organization to help them keep operating. ", "I have made friends with a number of people there, especially regulars who are in a tight spot.", "\n\nOne day, one of my closest friends came up to me, asking me for help. ", "He was in trouble with the police and was in the middle of a criminal investigation. ", "He was accused of benefit fraud, for allegedly faking his information in order to receive housing benefit, despite being homeless.", "\n\nI referred him to Stuart Miller Solicitors, whom he called up and hired for his case. ", "He used his own savings to hire them, because he still had a job despite being homeless.", "\n\nLuckily for him, Stuart Miller Solicitors pushed through for him – they were able to prove his innocence by helping the police discover that it was actually my friend’s former landlord who had faked the documents for housing benefits. ", "He was using my friend’s name despite evicting him several months ago.", "\n\nWhile I am glad that my friend’s innocence was proven thanks to Stuart Miller Solicitor’s excellent work, I cannot help but think of how poverty is so interconnected with crime. ", "Some people are not as resilient as my friend, and will resort to poverty due to desperation.", "\n\nSome people simply have no other choice. ", "So why is it that poverty is so interconnected with crime? ", "Here are some theories:\n\nLack of Education\n\nAmong the poorer populations, education is hard to come by. ", "In other countries where free education is unavailable, the problem is even worse.", "\n\nLack of education often leads to ignorance of the law as well – some people simply are not aware of the law and break them in the process.", "\n\nWealth and inequality\n\nIn areas where the gap between the rich and the poor are so great, inequality often leads to crime. ", "If wealth is openly displayed and flaunted, feelings of bitterness and envy could push the poor into a life of crime. ", "Robbery and theft are the most common crimes that result out of the display of wealth and inequality.", "\n\nDepression and desperation\n\nMany individuals who are pushed to the brink because of poverty will resort to crime due to desperation. ", "They have no other choice, and if they are to survive, they often have no other choice but to commit a crime.", "\n\nPoverty also leads to increased levels of depression, which in turn may lead to drug use. ", "Drug fueled crime is a big problem even in countries like the UK.", "\n\nIf we could eliminate poverty in our society, many researchers agree that crime will also likely go down. ", "Satisfaction with life, dignity, and equality go a long way in preventing crime.", "\n\nPoverty is one of the world’s biggest problems. ", "It has been for a very long time and it still is today. ", "It is a pervasive issue that many politicians and humanitarians have debated on for ages, and with good reason. ", "For some reason, despite all of our best efforts (not just ours but the world over!), ", "we just can’t seem to get rid of the problem of world poverty. ", "But before we even begin to work on that problem, we should at first try to address the issue within our own borders.", "\n\nI can’t say that I have ever lived a life of poverty. ", "I have been fortunate enough to have never had to worry about losing the roof over my head.", "\n\nHowever I have seen many who suffer…and I can see that it affects entire families. ", "Most obviously, it affects their health.", "\n\nPeople Living in Poverty Have Little Choice with FoodDespite the fact that those who are unemployed or getting by on a low income in the UK get benefits to aid them, it is often that these people don’t get much choice what food they eat. ", "This is because they have to make do with what they can afford, or if not, then they have to make do with what they are given at the food banks. ", "And as a result…\n\nMalnutritionThe first thing that happens of course is malnutrition. ", "Depending on what the family is able to eat, the malnutrition can range from slight to quite severe. ", "This can result in an unhealthy appearance—dark circles under the eyes, brittle nails, easily breakable hair, dull skin and hair…\n\nBut what most people don’t know is that it can also cause…\n\nObesityI often hear the comment “if they’re so poor, then why are they so fat?” ", "from people who have simply no clue why obesity is often linked to poverty. ", "Here’s a quick explanation: people who live in poverty have no choice what they eat, or if they do, then they have very little choice. ", "Often they get what they can afford or what they are given.", "\n\nSo if they can only get their hands on the cheapest food, most often that will mean it is processed, with all sorts of additives and preservatives. ", "Often those processed foods are loaded with sugar and with fat. ", "This sort of food often has little to no nutritional value. ", "And it’s alright to eat once in a while, but eat it with regularity…and obesity is one of the most common outcomes (apart from a host of other problems).", "\n\nPets are Affected TooPets are extensions of families and believe it or not… their health gets affected by poverty too. ", "They too get dull coats and dry noses. ", "If the family can’t afford wet and dry pet food, then often the pets will have to make do with the same food that the family does.", "\n\nSo again… poverty is an issue that needs to be addressed. ", "Or at the very least, unemployment (and underemployment) should be an issue that should be addressed. ", "Families deserve to be able to eat properly and at least be able to maintain decent health." ]
{ "pile_set_name": "Pile-CC" }
[ 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, 0, 0.011363636363636364, 0, 0.004219409282700422, 0, 0.005555555555555556, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.000258
5
[ { "analysis_explanation": null, "end": 734, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 732 }, { "analysis_explanation": null, "end": 3777, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3770 }, { "analysis_explanation": null, "end": 4098, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4074 }, { "analysis_explanation": null, "end": 4535, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4517 }, { "analysis_explanation": null, "end": 4624, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4601 }, { "analysis_explanation": null, "end": 5975, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5973 }, { "analysis_explanation": null, "end": 6266, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6261 }, { "analysis_explanation": null, "end": 6356, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6352 }, { "analysis_explanation": null, "end": 6977, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6966 }, { "analysis_explanation": null, "end": 7056, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7054 } ]
[ "The invention relates to a pontoon boat cover system and, more particularly, to a boat cover system utilizing a bimini frame positionable to support the cover.", "\nPontoon boats typically have multiple seating and accessory options available for a single sized platform. ", "Usually, multiple seating and accessory arrangements require boat companies to inventory several covers to accommodate the variations. ", "Multiple cover configurations as well as multiple color combinations result in costly inventory requirements for the boat companies.", "\nU.S. Pat. ", "No. ", "7,270,075 (Jones) describes a dual purpose storage and cruising cover. ", "Jones discusses the use of a unitary fabric cover that is used in positions one and two." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0.09090909090909091, 0, 0, 0 ]
0.011364
5
[ { "analysis_explanation": null, "end": 539, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 535 }, { "analysis_explanation": null, "end": 565, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 560 }, { "analysis_explanation": null, "end": 625, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620 } ]
[ "Super God Gene Chapter 1147\n\nGo To Chapter\n\nView Mode\n\nEven more creatures were joining the fray; a dozen insects, each a meter long, began to rise from the lake.", "\n\nThe super creatures were bee-lining for Han Sen, that much was clear.", "\n\nThey wanted nothing more than to dine on Xiang Yin’s flesh, but they had previously been unable to disrupt her ascension. ", "Now that Yaksha had appeared, proving formidable enough to do so and give the creatures what they desired, they had hope. ", "But Han Sen had come along to stop Yaksha, and with only him in their way, they all thought it best to chip in and stop the meddler.", "\n\nHan Sen had done what he could in the time he had, but under fire from so many super creatures, he knew it would now be best to run.", "\n\nWhile he wished to save Xiang Yin and ensure her success, Disloyal Knight and the Blue Dinosaur were not enough to repel the assault of a dozen super creatures.", "\n\nEven if Han Sen did stay and fight, Yaksha would be free to fly towards that door while the super creatures kept his foe occupied. ", "Remaining there would be a pointless endeavor, and stopping Yaksha any further would be silly.", "\n\n“Run!” ", "Han Sen yelled back towards Queen and the Blue Dinosaur.", "\n\nBlue Dinosaur was no sharper than a bag of socks, but even it wasn’t dumb enough to try to withstand a dozen super creatures. ", "It knew it was time to run, and so it did.", "\n\nQueen was atop it, and she rode it back into the tunnels they had come from.", "\n\nHan Sen tried to veil the seven senses of the creatures, so they could neither hear nor see him.", "\n\nBut its effectiveness on super creatures was practically null, and it did not quell their raging stampede towards him. ", "All Han Sen could do was focus on his flight out.", "\n\n“You had it coming!” ", "Yaksha coldly mocked, before turning to go for the door.", "\n\nThe nine steps Xiang Yin had traversed were brutal and endowed with a hungry fire that ravaged all who sought to ascend. ", "She was little more than a shadow at this point, and that shadow was flickering faintly, as if it was about to be completely dispelled by a dazzling light.", "\n\nXiang Yin had been aware of what was occurring outside of the door, and she had been touched by Han Sen’s bravery in trying to secure safe passage for her.", "\n\nWhen he fled from the attacks of the super creatures, she completely understood.", "\n\nNearing the end of her painful journey, Xiang Yin decided to forget about Yaksha who was now homing in on her. ", "She now had to focus on completing what she had started.", "\n\nShe concentrated on withstanding the fire that sought to incinerate her. ", "She could not allow her mind to waver, falter, or be distracted by the incoming threat. ", "If her mind wandered for a second, it’d be her demise.", "\n\n“Maybe this is my fate.” ", "Xiang Yin was still composed, and she didn’t feel hatred for the one who came for her.", "\n\nHan Sen had already fought on her behalf for a while, but she hadn’t yet been able to make that final step. ", "Even if Yaksha wasn’t there to disturb her, she was teetering on the brink of failure.", "\n\nThis was a life and death moment for her. ", "This was the single moment that would decide her future, for there would be no return to the present.", "\n\nXiang Yin had no choice now but to ascend. ", "She could not return; she could only go on. ", "Go on or fall.", "\n\nThe jellylike fruit would vaporize shortly after becoming ripe, so she couldn’t eat it anywhere else at any other time.", "\n\nYaksha had now reached the door. ", "He could tell Xiang Yin was about to fail, even if he hadn’t come to meddle with her ascension.", "\n\n“It is a shame you have become my enemy, but I cannot allow you to go to the Fourth God’s Sanctuary,” Yaksha said as he watched her burn.", "\n\nXiang Yin paid no heed to his words and maintained her focus on the task at hand.", "\n\nAlthough she looked like she was going to fail, just in case, Yaksha pulled out something to throw beyond the door.", "\n\nYaksha had not yet opened ten gene locks, so he was not foolish enough to enter himself. ", "If he went inside, he’d be turned into soot in a matter of seconds.", "\n\nSo, aware of this, he had an item. ", "If he threw this item inside, there was a high chance it would secure her demise.", "\n\nWhat Yaksha was holding was a black-metal fruit called a “Crimson Fruit.” ", "It was attuned with the element of fire, and it had been obtained from a king spirit tree.", "\n\nIf he threw it inside, it could pollute the holy, cleansing fire.", "\n\nThe holy fire cleansed those who walked through it. ", "It rinsed and burned away past sins and removed your old body to provide a new one that was spotless. ", "It was a necessary process to become a demi-god.", "\n\nOnce the tenth step had been reached, you would become a demi-god.", "\n\nYaksha wanted to pollute the holy fire, though. ", "The dirt of the fruit was said to warp and sour the cleansing process and provide greater damage to whoever walked through it.", "\n\n“Xiang Yin, I will take your place in the Fourth God’s Sanctuary and find Ancient Devil Emperor.” ", "Yaksha smiled as he prepared to chuck the fruit inside.", "\n\nXiang Yin believed there now to be no hope. ", "Seeing the fruit leave Yaksha’s hand, she sighed.", "\n\nBut the moment the fruit was about to cross through the doorframe, it stopped. ", "It appeared as if something was pulling it back.", "\n\nIn the next second, the flight of the fruit was course-corrected, and it ended up flying in the opposite direction. ", "A hand then grabbed the Crimson Fruit.", "\n\nYaksha saw it happen, and he realized that someone had just claimed his fruit.", "\n\n“It’s you!” ", "Yaksha and Xiang Yin both exclaimed.", "\n\nHan Sen, all bloodied, now possessed the fruit. ", "He smiled and said, “You are a noob who does not even have ten gene locks open. ", "You’re using this to disrupt her ascension? ", "Cheap. ", "It’s a shame it’s mine now.”" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.014084507042253521, 0.008064516129032258, 0.00819672131147541, 0.007575757575757576, 0, 0.012345679012345678, 0.015037593984962405, 0, 0, 0.017857142857142856, 0, 0, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0.012738853503184714, 0, 0.017699115044247787, 0, 0, 0, 0, 0, 0.011627906976744186, 0, 0.011627906976744186, 0, 0, 0.022222222222222223, 0, 0, 0, 0, 0.010526315789473684, 0.007194244604316547, 0.024096385542168676, 0.008547008547008548, 0, 0, 0, 0, 0.013157894736842105, 0, 0, 0, 0, 0, 0, 0, 0, 0.02, 0.01818181818181818, 0.021739130434782608, 0.02040816326530612, 0, 0, 0, 0.02631578947368421, 0, 0, 0.027777777777777776, 0, 0, 0, 0, 0 ]
0.005072
5
[ { "analysis_explanation": null, "end": 210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203 }, { "analysis_explanation": null, "end": 283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274 }, { "analysis_explanation": null, "end": 370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 364 }, { "analysis_explanation": null, "end": 488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481 }, { "analysis_explanation": null, "end": 518, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512 }, { "analysis_explanation": null, "end": 617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 610 }, { "analysis_explanation": null, "end": 776, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 767 }, { "analysis_explanation": null, "end": 919, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 912 }, { "analysis_explanation": null, "end": 946, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 940 }, { "analysis_explanation": null, "end": 1101, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1095 }, { "analysis_explanation": null, "end": 1144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1137 }, { "analysis_explanation": null, "end": 1170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1165 }, { "analysis_explanation": null, "end": 1207, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1194 }, { "analysis_explanation": null, "end": 1447, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1440 }, { "analysis_explanation": null, "end": 1667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1660 }, { "analysis_explanation": null, "end": 1733, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1727 }, { "analysis_explanation": null, "end": 1808, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1799 }, { "analysis_explanation": null, "end": 2070, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2061 }, { "analysis_explanation": null, "end": 2166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2157 }, { "analysis_explanation": null, "end": 2347, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2338 }, { "analysis_explanation": null, "end": 2378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2372 }, { "analysis_explanation": null, "end": 2716, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2707 }, { "analysis_explanation": null, "end": 2801, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2794 }, { "analysis_explanation": null, "end": 2916, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2910 }, { "analysis_explanation": null, "end": 3142, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3133 }, { "analysis_explanation": null, "end": 3361, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3355 }, { "analysis_explanation": null, "end": 3411, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3402 }, { "analysis_explanation": null, "end": 3592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3586 }, { "analysis_explanation": null, "end": 3631, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3622 }, { "analysis_explanation": null, "end": 3772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3766 }, { "analysis_explanation": null, "end": 3826, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3820 }, { "analysis_explanation": null, "end": 3975, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3956 }, { "analysis_explanation": null, "end": 4105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4099 }, { "analysis_explanation": null, "end": 4601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4595 }, { "analysis_explanation": null, "end": 4780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4771 }, { "analysis_explanation": null, "end": 4874, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4868 }, { "analysis_explanation": null, "end": 4933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4924 }, { "analysis_explanation": null, "end": 4997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4991 }, { "analysis_explanation": null, "end": 5164, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5149 }, { "analysis_explanation": null, "end": 5307, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5301 }, { "analysis_explanation": null, "end": 5398, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5392 }, { "analysis_explanation": null, "end": 5412, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5403 }, { "analysis_explanation": null, "end": 5436, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5429 } ]
[ "/*=============================================================================\n Copyright (c) 2001-2008 Joel de Guzman\n Copyright (c) 2001-2008 Hartmut Kaiser\n http://spirit.sourceforge.net/\n\n Distributed under the Boost Software License, Version 1.0. (", "See accompanying\n file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n=============================================================================*/\n#ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_PARSE_TREE_FWD\n#define BOOST_SPIRIT_INCLUDE_CLASSIC_PARSE_TREE_FWD\n#include <boost/spirit/home/classic/tree/parse_tree_fwd.hpp>\n#endif\n" ]
{ "pile_set_name": "Github" }
[ 0.011627906976744186, 0.008797653958944282 ]
0.010213
5
[ { "analysis_explanation": null, "end": 105, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96 }, { "analysis_explanation": null, "end": 132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106 }, { "analysis_explanation": null, "end": 146, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137 }, { "analysis_explanation": null, "end": 346, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 310 }, { "analysis_explanation": null, "end": 479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429 }, { "analysis_explanation": null, "end": 194, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 164 }, { "analysis_explanation": null, "end": 346, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 310 } ]
[ "Dash cam footage capturing collisions between cyclists and vehicles usually incite heated debates over who was at fault, but not this time.", "\n\nA Western Australian cyclist received no sympathy for riding into flowing traffic at a Mandurah intersection where he was hit and injured.", "\n\nThe clip, timestamped 1.20pm on May 4, shows cars turning right at an intersection on a green arrow, while one cyclist waits at a pedestrian crossing.", "\n\nView photos The cyclist, who is not wearing a helmet, is seen cutting across lanes of stopped traffic. ", "Source: Dash Cam Owners Australia / Facebook More\n\nWhile the vehicles are turning, a second cyclist appears in view of the dash cam.", "\n\nThis rider, who is not wearing a helmet, is seen cutting across lanes of stopped traffic until he collides with a turning ute that is towing a trailer.", "\n\nThe cyclist is thrown off his bike and is slammed, shoulder first, onto the road.", "\n\nThe ute stops in the middle of the intersection, just metres ahead, before the clip cuts out.", "\n\n“Paramedics and police were on scene immediately as they were in the traffic behind,” read the caption on the Dash Cam Owners Australia Facebook video, shared on Friday night.", "\n\nView photos The cyclist collides with a ute towing a trailer and is thrown off his bike. ", "Source: Dash Cam Owners Australia / Facebook More\n\n“Rider suffered dislocated shoulder and head injury, was transferred to hospital.\"", "\n\nMost of the 1,000 comments on the thread blamed the cyclist for the crash.", "\n\nOne wrote: “Red light? ", "Check! ", "No helmet or any other protective gear? ", "Check! ", "Weaving in and out of traffic? ", "Check!Trifecta of stupidity. ", "Fully deserved.”", "\n\nAnother agreed, saying: “No helmet, no patience, no clue, no sympathy.”", "\n\n“If that's not the cyclist's fault, I don't know what is,” a third wrote.", "\n\nIn just 17 hours, the video has been viewed more than 107,000 times and achieved more than 1,800 interactions.", "\n\nDo you have a story tip? ", "Email: newsroomau@yahoonews.com.", "\n\nYou can also follow us on Facebook, download the Yahoo News app from iTunes or Google Play and stay up to date with the latest news with Yahoo’s daily newsletter. ", "Sign up here." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.007142857142857143, 0, 0, 0.007575757575757576, 0, 0, 0, 0.005649717514124294, 0, 0.007518796992481203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03125, 0.01818181818181818, 0 ]
0.002974
5
[ { "analysis_explanation": null, "end": 1935, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 1911 }, { "analysis_explanation": null, "end": 160, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142 }, { "analysis_explanation": null, "end": 235, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227 }, { "analysis_explanation": null, "end": 307, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301 }, { "analysis_explanation": null, "end": 316, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311 }, { "analysis_explanation": null, "end": 1168, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1156 }, { "analysis_explanation": null, "end": 1784, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1771 }, { "analysis_explanation": null, "end": 2087, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2082 }, { "analysis_explanation": null, "end": 1935, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1922 } ]
[ "Q:\n\nClick in ModalPopup IFrame changes URL in Parent Window\n\nI'm using Visual Studio 2008 and ASP.NET MVC 1.", "\nI have a View where i open another View in a modal popup using fancybox. ", "In this popup users can edit some data. ", "It works great and the data is presented by the modalpopup, but when i click on the save button, the parent window changes to the modal popup content.", "\n<script type=\"text/javascript\">\n $(document).ready(function() {\n $(\"a#iframe\").fancybox({\n 'hideOnContentClick': false,\n 'zoomSpeedIn': 300,\n 'zoomSpeedOut': 300,\n 'frameWidth': 640,\n 'callbackOnClose': function() { location.refresh(); }\n });\n });\n </script>\n\nand the link looks like this\n<a href=\"/Client/Edit/idOfClient\" id=\"iframe\">Edit</a>\n\nWhat can I do, that the response after clickin the save button remains in the modal popup.", "\nThanks in advance\n\nA:\n\nI'm not clear if this is the solution you're looking for. ", "With this function, send data via GET in \"response\" parameter,\n'callbackOnClose': function(response) { \n\n var getparm = \"?\";", "\n\n //if what it returns is an array\n if ($.isArray(response))\n response = $(response).toJSON();\n\n if (window.location.href.indexOf(\"?\")!=-1)\n getparm = \"&\"\n\n window.location = window.location.href + getparm + \"response=\" + response;\n}\n\nArray to JSON\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0.0018181818181818182, 0, 0, 0 ]
0.000227
5
[ { "analysis_explanation": null, "end": 23, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13 }, { "analysis_explanation": null, "end": 878, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 871 }, { "analysis_explanation": null, "end": 1122, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1105 }, { "analysis_explanation": null, "end": 101, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 94 }, { "analysis_explanation": null, "end": 693, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 682 }, { "analysis_explanation": null, "end": 1258, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1235 }, { "analysis_explanation": null, "end": 1331, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1313 } ]
[ "Trend of bacterial meningitis in Bahrain from 1990 to 2013 and effect of introduction of new vaccines.", "\nMeningitis is among the 10 commonest infectious causes of death worldwide. ", "This retrospective analysis of reported cases of meningitis in Bahrain aimed to assess the trend in the incidence of bacterial meningitis from 1990 to 2013, before and after the introduction of new vaccines. ", "Of 1455 reported cases of meningitis during the study period 73.1% were viral and 26.9% were bacterial etiology (tuberculous meningitis 8.3%; Streptococcus pneumoniae 4.9%, Haemophilus influenzae 3.6% and Neisseria meningitidis 1.7%). ", "There was a peak of meningitis cases in 1995-1996. ", "The incidence of meningitis due to H. influenzae and N. meningitidis showed a marked reduction after the introduction of the corresponding vaccines in 1998 and 2001 respectively, and S. pneumoniae became the predominant organism after Mycobacterium tuberculosis. ", "The changing trend in the etiology of bacterial meningitis points to the need to study vaccination programme modifications, such as pneumococcal vaccine for the adult population, especially high-risk groups." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0.00851063829787234, 0, 0.0038022813688212928, 0 ]
0.001759
5
[ { "analysis_explanation": null, "end": 40, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33 }, { "analysis_explanation": null, "end": 50, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46 }, { "analysis_explanation": null, "end": 248, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241 }, { "analysis_explanation": null, "end": 325, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 321 }, { "analysis_explanation": null, "end": 333, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 329 }, { "analysis_explanation": null, "end": 670, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661 }, { "analysis_explanation": null, "end": 740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 725 }, { "analysis_explanation": null, "end": 827, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 823 }, { "analysis_explanation": null, "end": 836, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 832 }, { "analysis_explanation": null, "end": 868, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 855 } ]
[ "\npackage Paws::SimpleWorkflow::PollForActivityTask;\n use Moose;\n has Domain => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'domain' , required => 1);\n has Identity => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'identity' );\n has TaskList => (is => 'ro', isa => 'Paws::SimpleWorkflow::TaskList', traits => ['NameInRequest'], request_name => 'taskList' , required => 1);\n\n use MooseX::ClassAttribute;\n\n class_has _api_call => (isa => 'Str', is => 'ro', default => 'PollForActivityTask');\n class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::SimpleWorkflow::ActivityTask');\n class_has _result_key => (isa => 'Str', is => 'ro');\n1;\n\n### main pod documentation begin ###\n\n=head1 NAME\n\nPaws::SimpleWorkflow::PollForActivityTask - Arguments for method PollForActivityTask on L<Paws::SimpleWorkflow>\n\n=head1 DESCRIPTION\n\nThis class represents the parameters used for calling the method PollForActivityTask on the\nL<Amazon Simple Workflow Service|Paws::SimpleWorkflow> service. ", "Use the attributes of this class\nas arguments to method PollForActivityTask.", "\n\nYou shouldn't make instances of this class. ", "Each attribute should be used as a named argument in the call to PollForActivityTask.", "\n\n=head1 SYNOPSIS\n\n my $swf = Paws->service('SimpleWorkflow');\n my $ActivityTask = $swf->PollForActivityTask(\n Domain => 'MyDomainName',\n TaskList => {\n Name => 'MyName', # min: 1, max: 256\n\n },\n Identity => 'MyIdentity', # OPTIONAL\n );\n\n # Results:\n my $ActivityId = $ActivityTask->ActivityId;\n my $ActivityType = $ActivityTask->ActivityType;\n my $Input = $ActivityTask->Input;\n my $StartedEventId = $ActivityTask->StartedEventId;\n my $TaskToken = $ActivityTask->TaskToken;\n my $WorkflowExecution = $ActivityTask->WorkflowExecution;\n\n # Returns a L<Paws::SimpleWorkflow::ActivityTask> object.", "\n\nValues for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). ", "Values for complex Types (objects) can be passed as a HashRef. ", "The keys and values of the hashref will be used to instance the underlying object.", "\nFor the AWS API documentation, see L<https://docs.aws.amazon.com/goto/WebAPI/swf/PollForActivityTask>\n\n=head1 ATTRIBUTES\n\n\n=head2 B<REQUIRED> Domain => Str\n\nThe name of the domain that contains the task lists being polled.", "\n\n\n\n=head2 Identity => Str\n\nIdentity of the worker making the request, recorded in the\nC<ActivityTaskStarted> event in the workflow history. ", "This enables\ndiagnostic tracing when problems arise. ", "The form of this identity is\nuser defined.", "\n\n\n\n=head2 B<REQUIRED> TaskList => L<Paws::SimpleWorkflow::TaskList>\n\nSpecifies the task list to poll for activity tasks.", "\n\nThe specified string must not start or end with whitespace. ", "It must not\ncontain a C<:> (colon), C</> (slash), C<|> (vertical bar), or any\ncontrol characters (C<\\u0000-\\u001f> | C<\\u007f-\\u009f>). ", "Also, it must\nnot I<be> the literal string C<arn>.", "\n\n\n\n\n=head1 SEE ALSO\n\nThis class forms part of L<Paws>, documenting arguments for method PollForActivityTask in L<Paws::SimpleWorkflow>\n\n=head1 BUGS and CONTRIBUTIONS\n\nThe source code is located here: L<https://github.com/pplu/aws-sdk-perl>\n\nPlease report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues>\n\n=cut\n\n" ]
{ "pile_set_name": "Github" }
[ 0.0038131553860819827, 0, 0, 0, 0.005747126436781609, 0.009433962264150943, 0.031746031746031744, 0, 0.017937219730941704, 0, 0, 0, 0, 0, 0, 0, 0.009404388714733543 ]
0.004593
5
[ { "analysis_explanation": null, "end": 62, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57 }, { "analysis_explanation": null, "end": 482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474 }, { "analysis_explanation": null, "end": 672, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 662 }, { "analysis_explanation": null, "end": 1270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1256 }, { "analysis_explanation": null, "end": 1465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1462 }, { "analysis_explanation": null, "end": 1603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1579 }, { "analysis_explanation": null, "end": 14, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 12 }, { "analysis_explanation": null, "end": 30, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 28 }, { "analysis_explanation": null, "end": 328, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 326 }, { "analysis_explanation": null, "end": 344, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 342 }, { "analysis_explanation": null, "end": 444, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 442 }, { "analysis_explanation": null, "end": 617, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 615 }, { "analysis_explanation": null, "end": 633, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 631 }, { "analysis_explanation": null, "end": 765, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 763 }, { "analysis_explanation": null, "end": 781, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 779 }, { "analysis_explanation": null, "end": 855, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 853 }, { "analysis_explanation": null, "end": 1023, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 1021 }, { "analysis_explanation": null, "end": 1912, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 1910 }, { "analysis_explanation": null, "end": 1928, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 1926 }, { "analysis_explanation": null, "end": 2300, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 2237 }, { "analysis_explanation": null, "end": 2695, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 2693 }, { "analysis_explanation": null, "end": 2711, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 2709 }, { "analysis_explanation": null, "end": 3136, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 3134 }, { "analysis_explanation": null, "end": 3255, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 3219 }, { "analysis_explanation": null, "end": 3326, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 3283 } ]
[ "This invention is in the area of the prevention, diagnosis and treatment of autoimmune diseases, especially systemic lupus erythematosus.", "\nSystemic lupus erythematosus (SLE) is similar to many other disorders in which autoantibodies are found and thought to be important in etiology and pathogenesis. ", "SLE can be grouped with those diseases that commonly have autoantibodies present but for whom a central role of autoantibody in pathogenesis leading to clinical expression has yet to be fully established or accepted. ", "Other such diseases include Sjogren's syndrome, rheumatoid arthritis, juvenile onset diabetes mellitus, primary biliary cirrhosis, Wegener's granulomatosis, inflammatory bowel disease, and many others.", "\nTypically, autoimmune diseases present with a wide array of symptoms and clinical signs. ", "The production of circulating autoantibodies to ribonucleoprotein complexes (RNPs) is a unifying characteristic of some of the rheumatic autoimmune diseases. ", "The most common antigens in SLE and closely related disorders include: Ro/SSA, La/SSB, nRNP and Sm. ", "Initially, these antibodies were found using double immunodiffusion, but more recently sensitive solid phase assays have been developed to quantitate the autoantibodies.", "\nThe Ro/SSA RNA-protein particle has been found to be a constituent of all human cells evaluated to date. ", "Approximately half of Sjogren's syndrome (SS) and systemic lupus erythematosus (SLE) patients have anti-Ro/SSA precipitins. ", "Approximately 75% of patients with subacute cutaneous lupus erythematosus or complement component C2 deficiency with SLE have anti-Ro/SSA precipitins. ", "Over 80% of mothers of newborns with neonatal lupus dermatitis or complete congenital heart block have this autoantibody. ", "As many as 5% of patients with rheumatoid arthritis, polymyositis, and progressive systemic sclerosis have anti-Ro/SSA, as reported by R. M. Bernstein, et al., ", "Mol. ", "Biol. ", "Med. ", "2:105-120 (1984); and J. B. Harley and K. K. Gaither, Autoantibodies. ", "In Rheumatic Disease Clinics of North American: Systemic Lupus Erythematosus 14:1, 43-56 (1988).", "\nAutoantibodies to the La/SSB ribonucleoprotein antigen are also found in patients with SS and SLE, as reported by Alspaugh, et al., ", "Arthritis Rheum. ", "19:216 (1976) and Mattioli, et al., ", "Arthritis Rheum. ", "17:421 (1974). ", "In addition, these antibodies as reported by Horsfall, et al., ", "J. Autoimmunity 4:165 (1991), thought to be pathogenic to the fetus during pregnancy in some mothers who have anti-La/SSB autoantibodies, where they are associated, along with anti-Ro/SSA, with complete congenital heart block (CCHB).", "\nIt has been an issue of intensive debate as to whether the many autoantibodies found in systemic lupus erythematosus and related diseases represent an antigen specific or a polyclonal, antigen non-specific response. ", "Evidence that autoantibodies are important in the expression of SLE and related syndromes is convincing. ", "Specific depletion in a heart block neonate (Harley, J. B., et al., ", "Arthritis Rheum. ", "28:1321-1325 (1985)) and specific anti-Ro/SSA immunoglobin deposition in human skin (Lee, L. A., et al., ", "J. Clin. ", "Invest. ", "83:1556-1562 (1989)) have been demonstrated. ", "Specific concentration of anti-Ro/SSA has been shown in the immunoglobulin of renal eluates from kidneys affected by lupus nephritis (Maddison, P. J. and Reichlin, M. Arthritis Rheum. ", "22:858-863 (1979)). ", "Anti-Ro/SSA has been found to be specifically concentrated in a parotid gland of a patient with Sjogren's syndrome and primary biliary cirrhosis (Penner, E. and Reichlin, M. Arthritis Rheum. ", "25:1250-1253 (1982)). ", "Observations that infants with transplacentally acquired maternal IgG develop neonatal lupus dermatitis and/or complete congenital heart block (Harley, J. B. and Gaither, K. K.: Autoantibodies. ", "In Rheumatic Disease Clinics of North America: Systemic Lupus Erythematosus 14:1, 43-56 (1988)) strongly suggests that maternal autoantibody (anti-Ro/SSA or anti-La/SSB) transported across the placenta is a critical component required, but not sufficient, for these clinical problems.", "\nThe Ro/SSA family of proteins has now been shown to have several molecular forms which are operationally defined by the molecular weight of the antigen identified. ", "A major form has an apparent molecular weight of 60 kiloDaltons (kD). ", "This protein is associated with one of four hY RNAs. ", "Recently, two additional proteins bound by anti-Ro/SSA sera have been identified by M. D. Rader, et al., ", "J. Clin. ", "Invest. ", "83:1556-1562 (1989), with molecular weights of 52 kD and 54 kD. A 48 kD protein, calmodulin, has been identified as being bound by anti-Ro/SSA sera (McCauliffe, et al., ", "J. Clin. ", "Invest. ", "85:1379-1391 (1990)). ", "The La/SSB protein, a 48 kD peptide, as described by J.C. Chambers and J. D. Keene, Proc. ", "Natl. ", "Acad. ", "Sci. ", "USA 82:2115-2119 (1985), is also a member of this group of autoantibodies, and binds small RNAs with a polyuridine terminus, as reported by J. E. Stephano, Cell 36:145-154 (1984). ", "La/SSB is bound by a third of the anti-Ro/SSA precipitin positive sera. ", "The La/SSB protein has been purified from a variety of tissue sources and shown to be a 46 to 50 kD monomeric phosphoprotein, as reported by Habets, et al., ", "EMBO J. 2:1625 (1983) and Venables, et al., ", "Clin. ", "Exp. ", "Immunol. ", "54:731 (1983). ", "It associates with RNA polymerase III transcripts, as reported by Lerner, et al., ", "Proc. ", "Natl. ", "Acad. ", "Sci. ", "USA. ", "76:5495 (1979) and Steitz, et al., ", "Cold Spring Harbor Symposium Quant. ", "Biol. ", "47:893 (1983), and may function as a termination factor for this enzyme, as reported by Gottlieb, et al., ", "EMBO J. 8:841 (1989). ", "A nucleic acid dependent ATPase/dATPase enzymatic activity has also been attributed to La/SSB by Bachmann, et al., ", "Cell 60:85 (1990).", "\nAnti-Sm antibodies are frequently associated with SLE. ", "These autoantibodies precipitate snRNP containing the U1, U2, U4/U6 and U5 RNA. ", "These complexes form the spliceosome and splice heterogenous nuclear RNA, as reported by Sharp, Science 235:766 (1987) and Maniatis and Reed, Nature 325:673 (1987). ", "Anti-Sm antibodies are directed against one or a combination of six polypeptides: B (26 kDa), B′ (27 kDa), D (13 kDa), E/F (11 kDa doublet) and G (less than 10 kDa).", "\nNearly all rheumatic disease patients who form an anti-Sm precipitin in Ouchterlony immunodiffusion have or eventually develop an anti-nRNP precipitin, as reported by Fisher, et al., ", "Arthritis Rheum. ", "28:1348 (1985). ", "Anti-Sm and anti-nRNP precipitins form a line of partial identify in Ouchterlony immunodiffusion, as discussed by Mattioli and Reichlin, J. Immunol. ", "110:1318 (1973). ", "The basis for this partially shared antigenicity is explained by the composition of the U snRNP particles. ", "The antigen for the anti-nRNP precipitin are the 70 kD, A, and C peptides that are unique to the U1 snRNP, B/B′ and D peptides are also found on the U1 snRNP. ", "The B/B′ and D Ag, but not the 70 kDa, A or C, are found in the U2, U4/U6 and U5 snRNP. ", "Hence, both anti-Sm and anti-nRNP bind anti-U1 snRNP activity, but only anti-Sm binds U2, U4/U6, and U5 snRNP.", "\nU.S. Ser. ", "No. ", "07/648,205 filed Jan. 31, 1991 by John B. Harley for “Assays and Treatments for Autoimmune Diseases”, and U.S. Ser. ", "No. ", "07/472,947 entitled “Assays and Treatments for Autoimmune Diseases” filed Jan. 31, 1990, described a specific method to identify the etiologic or antigenic agent responsible for the production of autoantibodies characteristic of a particular disorder. ", "The antigen is first isolated, using, for example, autoantibodies isolated from one or more patients. ", "The antigen is then divided into overlapping short amino acid sequences, preferably twenty amino acids or less, most conveniently octapeptides. ", "The sequences having the greatest reactivity with the autoantibodies are identified and then compared with all known amino acids sequences using the available computer data bases. ", "The protein having the maximum number or proportion of sequences homologous to the sequences of greatest reactivity with the autoantibodies is among the likeliest candidate of the known sequenced proteins for the etiological agent or immunogen. ", "Once the etiological agent and antigenic sequences are known, it is possible to design assays and reagents for the diagnosis and treatment of patients having either the etiological agent and/or autoantibodies.", "\nThe examples in the earlier applications used peptides derived from the sequence for the 60 kDa Ro/SSA protein and La/SSB, which were reactive with antisera from SLE and SS patients.", "\nIt is therefore an object of the present invention to provide additional diagnostic reagents for identifying and classifying individuals previously exposed to a particular immunogen or expressing autoantibodies reactive with Ro/SSA, La/SSB, nRNP, or Sm B/B′ polypeptides, or the epitopes (or their immune equivalent) eliciting production of the autoantibodies.", "\nIt is a still further object of the present invention to provide methods and compositions for identifying and treating autoimmune disorders, such as Systemic Lupus Erythematosus and Sjogren's syndrome." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0.006134969325153374, 0.004608294930875576, 0.014925373134328358, 0, 0, 0.04, 0, 0, 0.03225806451612903, 0.013245033112582781, 0.00819672131147541, 0.01875, 0, 0, 0, 0.04285714285714286, 0, 0.022556390977443608, 0, 0, 0, 0, 0, 0.012875536480686695, 0, 0.009523809523809525, 0.029411764705882353, 0, 0.02857142857142857, 0.1111111111111111, 0, 0, 0.021739130434782608, 0, 0.010471204188481676, 0, 0.02577319587628866, 0.0035211267605633804, 0, 0, 0, 0.01904761904761905, 0.1111111111111111, 0, 0.01775147928994083, 0.1111111111111111, 0, 0, 0.022222222222222223, 0, 0, 0, 0.005555555555555556, 0.027777777777777776, 0.006369426751592357, 0.022727272727272728, 0.16666666666666666, 0, 0.1111111111111111, 0, 0.024390243902439025, 0, 0, 0, 0, 0, 0.02857142857142857, 0, 0, 0.009433962264150943, 0.045454545454545456, 0.017391304347826087, 0, 0.017857142857142856, 0.0125, 0.006060606060606061, 0, 0.005434782608695652, 0, 0, 0.013422818791946308, 0, 0, 0, 0.022727272727272728, 0.00909090909090909, 0.09090909090909091, 0, 0.017241379310344827, 0, 0, 0, 0, 0, 0.004081632653061225, 0, 0.01639344262295082, 0.008310249307479225, 0.0049504950495049506 ]
0.014322
5
[ { "analysis_explanation": null, "end": 552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545 }, { "analysis_explanation": null, "end": 1043, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1037 }, { "analysis_explanation": null, "end": 1064, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1062 }, { "analysis_explanation": null, "end": 1370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1363 }, { "analysis_explanation": null, "end": 1447, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1440 }, { "analysis_explanation": null, "end": 1598, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1591 }, { "analysis_explanation": null, "end": 1856, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1845 }, { "analysis_explanation": null, "end": 1888, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1873 }, { "analysis_explanation": null, "end": 1901, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1898 }, { "analysis_explanation": null, "end": 1929, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1925 }, { "analysis_explanation": null, "end": 1948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1936 }, { "analysis_explanation": null, "end": 1966, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1953 }, { "analysis_explanation": null, "end": 2030, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2016 }, { "analysis_explanation": null, "end": 2078, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2074 }, { "analysis_explanation": null, "end": 2203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2195 }, { "analysis_explanation": null, "end": 2242, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2238 }, { "analysis_explanation": null, "end": 2256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2248 }, { "analysis_explanation": null, "end": 2295, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2291 }, { "analysis_explanation": null, "end": 2351, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2343 }, { "analysis_explanation": null, "end": 2548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2537 }, { "analysis_explanation": null, "end": 2974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2969 }, { "analysis_explanation": null, "end": 3013, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3001 }, { "analysis_explanation": null, "end": 3019, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3015 }, { "analysis_explanation": null, "end": 3042, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3035 }, { "analysis_explanation": null, "end": 3059, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3047 }, { "analysis_explanation": null, "end": 3089, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3086 }, { "analysis_explanation": null, "end": 3096, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3091 }, { "analysis_explanation": null, "end": 3113, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3106 }, { "analysis_explanation": null, "end": 3141, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3137 }, { "analysis_explanation": null, "end": 3205, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3194 }, { "analysis_explanation": null, "end": 3310, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3302 }, { "analysis_explanation": null, "end": 3317, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3312 }, { "analysis_explanation": null, "end": 3330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3322 }, { "analysis_explanation": null, "end": 3350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3332 }, { "analysis_explanation": null, "end": 3368, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3364 }, { "analysis_explanation": null, "end": 3383, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3372 }, { "analysis_explanation": null, "end": 3475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3468 }, { "analysis_explanation": null, "end": 3528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3526 }, { "analysis_explanation": null, "end": 3541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3533 }, { "analysis_explanation": null, "end": 3561, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3543 }, { "analysis_explanation": null, "end": 3581, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3577 }, { "analysis_explanation": null, "end": 3742, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3737 }, { "analysis_explanation": null, "end": 3754, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3747 }, { "analysis_explanation": null, "end": 3761, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3756 }, { "analysis_explanation": null, "end": 3872, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3868 }, { "analysis_explanation": null, "end": 3932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3921 }, { "analysis_explanation": null, "end": 4291, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4280 }, { "analysis_explanation": null, "end": 4405, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4394 }, { "analysis_explanation": null, "end": 4446, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4435 }, { "analysis_explanation": null, "end": 4463, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4456 }, { "analysis_explanation": null, "end": 4491, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4487 }, { "analysis_explanation": null, "end": 4615, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4604 }, { "analysis_explanation": null, "end": 4649, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4642 }, { "analysis_explanation": null, "end": 4671, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4659 }, { "analysis_explanation": null, "end": 4677, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4673 }, { "analysis_explanation": null, "end": 4763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4752 }, { "analysis_explanation": null, "end": 4810, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4806 }, { "analysis_explanation": null, "end": 4942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4928 }, { "analysis_explanation": null, "end": 4965, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4961 }, { "analysis_explanation": null, "end": 5211, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5197 }, { "analysis_explanation": null, "end": 5217, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5213 }, { "analysis_explanation": null, "end": 5273, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5269 }, { "analysis_explanation": null, "end": 5348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5342 }, { "analysis_explanation": null, "end": 5399, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5395 }, { "analysis_explanation": null, "end": 5475, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5471 }, { "analysis_explanation": null, "end": 5582, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5569 }, { "analysis_explanation": null, "end": 5588, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5584 }, { "analysis_explanation": null, "end": 5722, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5718 }, { "analysis_explanation": null, "end": 5977, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5973 }, { "analysis_explanation": null, "end": 6022, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6018 }, { "analysis_explanation": null, "end": 6274, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6263 }, { "analysis_explanation": null, "end": 6330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6321 }, { "analysis_explanation": null, "end": 6404, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6400 }, { "analysis_explanation": null, "end": 6440, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6419 }, { "analysis_explanation": null, "end": 6487, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6476 }, { "analysis_explanation": null, "end": 6529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6521 }, { "analysis_explanation": null, "end": 6542, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6534 }, { "analysis_explanation": null, "end": 6570, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6566 }, { "analysis_explanation": null, "end": 6779, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6777 }, { "analysis_explanation": null, "end": 6831, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6829 }, { "analysis_explanation": null, "end": 6905, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6903 }, { "analysis_explanation": null, "end": 6919, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6917 }, { "analysis_explanation": null, "end": 6960, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6951 }, { "analysis_explanation": null, "end": 6973, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6966 }, { "analysis_explanation": null, "end": 7030, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7028 }, { "analysis_explanation": null, "end": 7042, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7038 }, { "analysis_explanation": null, "end": 7082, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7069 }, { "analysis_explanation": null, "end": 7100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7086 }, { "analysis_explanation": null, "end": 7162, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7158 }, { "analysis_explanation": null, "end": 7259, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7246 }, { "analysis_explanation": null, "end": 9038, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9031 }, { "analysis_explanation": null, "end": 1565, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1563 }, { "analysis_explanation": null, "end": 5836, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5834 }, { "analysis_explanation": null, "end": 5840, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5838 }, { "analysis_explanation": null, "end": 5844, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5842 }, { "analysis_explanation": null, "end": 5847, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5845 }, { "analysis_explanation": null, "end": 5854, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5852 }, { "analysis_explanation": null, "end": 6779, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6777 }, { "analysis_explanation": null, "end": 6831, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6829 }, { "analysis_explanation": null, "end": 6905, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6903 }, { "analysis_explanation": null, "end": 6909, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6907 }, { "analysis_explanation": null, "end": 6912, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6910 }, { "analysis_explanation": null, "end": 6919, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6917 }, { "analysis_explanation": null, "end": 6973, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6971 }, { "analysis_explanation": null, "end": 7015, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7013 }, { "analysis_explanation": null, "end": 7019, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7017 }, { "analysis_explanation": null, "end": 7022, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7020 }, { "analysis_explanation": null, "end": 7030, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7028 } ]
[ "The image above is actually a crop out of the entire zone of Kalimdor, which I've rendered... but the 128 block height limit destroyed most of it. ", "I'm currently in the process of mapping all the textures in the zone, which total around 5000.", "\n\nSince the last update, the program now properly converts terrain textures to matching blocks. ", "I also fixed a few bugs with invisible walls appearing inside buildings.", "\n\nThe image above is actually a crop out of the entire zone of Kalimdor, which I've rendered... but the 128 block height limit destroyed most of it. ", "I'm currently in the process of mapping all the textures in the zone, which total around 5000.", "\n\nSince the last update, the program now properly converts terrain textures to matching blocks. ", "I also fixed a few bugs with invisible walls appearing inside buildings.", "\n\nThat's amazing! ", "I especially like the way the hills look in the Barrens.", "\nOne thing. ", "Would it be possible to change the Barrens into a desert biome to make the grass look a bit deader?", "\n\nThe image above is actually a crop out of the entire zone of Kalimdor, which I've rendered... but the 128 block height limit destroyed most of it. ", "I'm currently in the process of mapping all the textures in the zone, which total around 5000.", "\n\nSince the last update, the program now properly converts terrain textures to matching blocks. ", "I also fixed a few bugs with invisible walls appearing inside buildings.", "\n\nlooks good, my only suggestion now is to make the barrens more \"barren\" :P\n\nMinecraft doesn't have a \"dry grass\" block, but it does have biomes, which can make the grass look brown. ", "So the only way to accomplish this would be to edit the biomes, which can be done but I'm not doing it at the moment.", "\n\nOriginally Posted by yeast\n\nThat's amazing! ", "I especially like the way the hills look in the Barrens.", "\nOne thing. ", "Would it be possible to change the Barrens into a desert biome to make the grass look a bit deader?", "\n\nIt's an idea I've considered, it will probably come last because editing biomes can't be done from the region file (you need to create a client mod)." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017857142857142856, 0, 0.010101010101010102, 0, 0, 0, 0, 0, 0, 0, 0.017857142857142856, 0, 0.010101010101010102, 0 ]
0.002431
5
[ { "analysis_explanation": null, "end": 69, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61 }, { "analysis_explanation": null, "end": 478, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 470 }, { "analysis_explanation": null, "end": 889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 882 }, { "analysis_explanation": null, "end": 944, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 937 }, { "analysis_explanation": null, "end": 1071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1063 }, { "analysis_explanation": null, "end": 1810, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1803 }, { "analysis_explanation": null, "end": 1865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1858 } ]
[ "Reservations\n\nLoading...\n\n2014 Tillamook County Fair Home Brew Competition\n\nPelican Teams With Main Brew In Hillsboro To Sponsor 2014 Tillamook County Fair Home Brew Competition\n\nDo you have a passion for craft beer? ", "Have you tried your hand at home brewing? ", "Think you might have an award-winning recipe? ", "Here’s your chance to earn bragging rights!", "\n\nPelican Brewing Company is teaming up with Main Brew in Hillsboro to sponsor the 2014 Tillamook County Fair Home Brew Competition. ", "Let's find out if your brewing finesse can make this year's fair “A Fair to Remember!”", "\n\nParticipation in the competition is free and entries can be dropped off at any of the following locations:\n\nPelican Brewery & Tap Room located at 1708 First Street in Tillamook, Oregon\n\nMain Brew located at 23596 NW Clara Lane in Hillsboro, Oregon\n\nEntry's must be submitted no later than 5pm on Friday, July 25th.", "\n\nEligibility\nMust be 21 or older to enter and all entries must be produced by entrants outside of a commercial establishment.", "\n\nHome Brew Registration\nEntrants are limited to one entry per subcategory. ", "An official entry shall consist of 2 full 12-oz bottles, and 1 empty nicely labeled 12 oz. ", "bottle for display at the Tillamook County Fair. ", "Each of the 2 full bottles must be labeled with the official entry form, securely attached with a rubber band. ", "Any other identification must be removed from the bottles. ", "Bottles and shipping containers will not be returned.", "\n\nJudging\nJudging for the Home Brew competition will be held at the Pelican Brewery & Tap Room in Tillamook, Oregon. ", "Categories may be combined if there are not enough entries in a given style category.", "Deadline for entries is Friday July 25th by 5pm. ", "Pelican Brewing Company and Main Brew will not be held responsible for any lost or damaged entries.", "\n\nRibbons will be awarded by the Tillamook County Fair for 1st, 2nd, and 3rd place in the judged categories. ", "Categories may be combined depending on the number of entries received. ", "The “Best Of Show” winner will receive the “Brewers Getaway Package”- one night stay in a Kiwanda Guest Room for two at the Inn at Cape Kiwanda, a $50 gift card for the Pelican Pub & Brewery, and a chance to meet the brewers at a special behind-the-scenes tour of the brewery.", "\n\nEntry forms must be completely filled out and include appropriate category and subcategory.", "\nDownload a list of Beer Style Categories.", "\n\nAre you the next Tillamook County Fair Home Brew Champion? ", "It might not have the same ring as the North American Beer Awards or Great American Beer Festival, but everyone has to start somewhere, right? ", "In fact, Brewmaster Darron Welch got his start winning “Best of Show” at the Lane County Fair." ]
{ "pile_set_name": "Pile-CC" }
[ 0.004608294930875576, 0, 0, 0, 0.015037593984962405, 0, 0.00949367088607595, 0, 0, 0, 0, 0, 0, 0, 0.008547008547008548, 0, 0, 0.020202020202020204, 0.009174311926605505, 0, 0.007246376811594203, 0, 0.023809523809523808, 0, 0.013986013986013986, 0.010638297872340425 ]
0.004721
5
[ { "analysis_explanation": null, "end": 30, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26 }, { "analysis_explanation": null, "end": 117, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108 }, { "analysis_explanation": null, "end": 133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129 }, { "analysis_explanation": null, "end": 414, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405 }, { "analysis_explanation": null, "end": 434, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 430 }, { "analysis_explanation": null, "end": 537, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 533 }, { "analysis_explanation": null, "end": 743, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 734 }, { "analysis_explanation": null, "end": 793, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 780 }, { "analysis_explanation": null, "end": 806, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 797 }, { "analysis_explanation": null, "end": 880, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 863 }, { "analysis_explanation": null, "end": 913, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 902 }, { "analysis_explanation": null, "end": 1550, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1541 }, { "analysis_explanation": null, "end": 1558, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1552 }, { "analysis_explanation": null, "end": 1686, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1670 }, { "analysis_explanation": null, "end": 1693, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1690 }, { "analysis_explanation": null, "end": 1855, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1852 }, { "analysis_explanation": null, "end": 1860, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1857 }, { "analysis_explanation": null, "end": 2619, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2607 } ]
[ "London (CNN) J. Michael Mendel, the Emmy-winning producer who worked on \"Rick and Morty\" and \"The Simpsons,\" has died two days short of his 55th birthday.", "\n\nAdult Swim, the US television network which has broadcast Rick and Morty since its debut in 2013, released a statement on Twitter saying: \"All of us at Adult Swim are devastated by the untimely passing of Rick and Morty producer Mike Mendel.", "\n\n\"He guided and supported a generation of artists, writers and creators and his absence will be felt by the entire community. ", "Our deepest condolences go out to his family, friends and colleagues.\"", "\n\nThe cause of his death has not yet been confirmed.", "\n\nJustin Roiland, the co-creator of Rick and Morty, paid tribute to Mendel by tweeting on Monday: \"My friend, partner, and line producer Mike Mendel passed away. ", "I am devastated. ", "My heart breaks for his family. ", "I don't know what I'm going to do without you by my side Mike. ", "I'm destroyed.\"", "\n\nMendel worked on Fox's The Tracey Ullman Show, on which \"The Simpsons\" began its life as a recurring segment, before moving to the independent series.", "\n\nHe helped to create 207 episodes of \"The Simpsons\" over his time on the show, winning Emmys in 1995, 1997 and 1997. ", "Mendel then produced 22 episodes of \"Rick and Morty,\" winning a fourth Emmy for his work last year.", "\n\nHe is survived by his wife Juel Bestrop, an Emmy-winning casting director, and their two children." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.01948051948051948, 0.024691358024691357, 0, 0, 0, 0.030864197530864196, 0, 0, 0.015873015873015872, 0, 0.006578947368421052, 0, 0, 0.01 ]
0.007678
5
[ { "analysis_explanation": null, "end": 6, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 30, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13 }, { "analysis_explanation": null, "end": 77, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73 }, { "analysis_explanation": null, "end": 87, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82 }, { "analysis_explanation": null, "end": 126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118 }, { "analysis_explanation": null, "end": 165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155 }, { "analysis_explanation": null, "end": 173, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171 }, { "analysis_explanation": null, "end": 217, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213 }, { "analysis_explanation": null, "end": 227, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222 }, { "analysis_explanation": null, "end": 251, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247 }, { "analysis_explanation": null, "end": 364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 360 }, { "analysis_explanation": null, "end": 374, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 369 }, { "analysis_explanation": null, "end": 395, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 384 }, { "analysis_explanation": null, "end": 682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 678 }, { "analysis_explanation": null, "end": 692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 687 }, { "analysis_explanation": null, "end": 716, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 710 }, { "analysis_explanation": null, "end": 738, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 732 }, { "analysis_explanation": null, "end": 790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 779 }, { "analysis_explanation": null, "end": 914, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 910 }, { "analysis_explanation": null, "end": 938, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 932 }, { "analysis_explanation": null, "end": 1182, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1178 }, { "analysis_explanation": null, "end": 1188, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1184 }, { "analysis_explanation": null, "end": 1197, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1193 }, { "analysis_explanation": null, "end": 1205, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1199 }, { "analysis_explanation": null, "end": 1240, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1236 }, { "analysis_explanation": null, "end": 1250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1245 }, { "analysis_explanation": null, "end": 1297, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1288 }, { "analysis_explanation": null, "end": 1338, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1326 } ]
[ "Q:\n\nAndroid - gray background instead of white\n\nEach \"layout\" I set a white background and \"Manifest\" I set Theme.", "Light.", "\nStill receives a gray background instead of white. ", "Why?", "\nEdit:\nManifest.xml\nandroid:theme=\"@android:style/Theme.", "Light.", "NoTitleBar\">\n\nLayout\nandroid:background=\"@android:color/white\" \n\nA:\n\nTheme.", "Light does not mean that it will be white. ", "It just means that it will be light, not dark :P This is not theme.white.", "\nEach device manufacturer can customize Android OS on his phone for example to preferred colors and look & feel. ", "In particular he can define styles for his Android implementation - Light and dark. ", "Thanks to that your app may look differently on various devices, however it will always fit the style used on this device (every app in style Theme.", "Light will have grey background on this device, unless you set android:background=\"@android:color/white\" )\nYour device's manufacturer defined style Theme.", "Light as style with grey background.", "\nHope that I am clear - otherwise do not hesitate to ask\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0.017857142857142856, 0, 0.04, 0, 0, 0.008849557522123894, 0.011904761904761904, 0.006756756756756757, 0.012987012987012988, 0, 0 ]
0.006557
5
[ { "analysis_explanation": null, "end": 849, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 842 } ]
[ "Coon Chicken Inn\n\nCoon Chicken Inn was an American chain of four restaurants founded by Maxon Lester Graham and Adelaide Burt in 1925, which prospered until the late 1950s. ", "The restaurant's name contains the word \"Coon\", considered an ethnic slur, and the trademarks and entrances of the restaurants were designed to look like a smiling caricature of an African-American porter. ", " The smiling capped porter head also appeared on menus, dishes, and promotional items. ", "Due to change in popular culture and the general consideration of being culturally and racially offensive, the chain was closed.", "\n\nThe first Coon Chicken Inn was opened in suburban Salt Lake City, Utah in 1925. ", "In 1929, another restaurant was opened in then-suburban Lake City, Seattle, and a third was opened in the Hollywood District of Portland, Oregon, in 1931. ", " A fourth location was advertised but never opened in Spokane, Washington. ", "Later, a cabaret, orchestra, and catering were added to the Seattle and Salt Lake restaurants. ", "The Portland location at 5474 NE Sandy Blvd. ", "closed in 1949 and was converted into another restaurant. ", " It's currently the location of Clyde's Prime Rib. ", "The Seattle location also closed in 1949 and is no longer standing. ", "That address at 8500 Lake City Way is now occupied by The Growler Guys restaurant. ", "The Salt Lake City location at 2941 S. Highland Drive closed in 1957 and is now a parking lot.", "\n\nIn popular culture\nA fake advertisement for the restaurant is shown in the 2004 mockumentary C.S.A.: The Confederate States of America where it is depicted as being successful in a fictional timeline where the Confederacy defeats and annexes the United States in 1864 with the help of the United Kingdom and France. ", "\n\nA Coon Chicken Inn advertisement is a plot device in Ghost World, a 2001 American comedy-drama film directed by Terry Zwigoff. ", " Unlike the actual chain, the restaurant chain in the film changed its name to Cook's Chicken to hide its racially insensitive past, and was still in business in modern times.", "\n\nSee also\n Sambo's restaurant chain\n List of chicken restaurants\n\nReferences\n\nCategory:1925 establishments in Utah\nCategory:African-American history of Utah\nCategory:Buildings and structures in Salt Lake City\nCategory:Chicken chains of the United States\nCategory:Defunct restaurant chains in the United States\nCategory:Defunct restaurants in Portland, Oregon\nCategory:History of racism in the United States\nCategory:History of Salt Lake City\nCategory:Hollywood, Portland, Oregon\nCategory:American companies established in 1925\nCategory:Restaurants established in 1925\nCategory:Restaurants in Portland, Oregon\nCategory:Restaurants in Utah\nCategory:Restaurants in Washington (state)\nCategory:Stereotypes of African Americans" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.028901734104046242, 0, 0, 0, 0.012195121951219513, 0, 0, 0, 0, 0, 0, 0, 0.012048192771084338, 0.010638297872340425, 0, 0.015503875968992248, 0.005714285714285714, 0.0013831258644536654 ]
0.004799
5
[ { "analysis_explanation": null, "end": 50, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42 }, { "analysis_explanation": null, "end": 107, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88 }, { "analysis_explanation": null, "end": 125, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112 }, { "analysis_explanation": null, "end": 133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129 }, { "analysis_explanation": null, "end": 171, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157 }, { "analysis_explanation": null, "end": 370, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354 }, { "analysis_explanation": null, "end": 658, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644 }, { "analysis_explanation": null, "end": 664, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660 }, { "analysis_explanation": null, "end": 672, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 668 }, { "analysis_explanation": null, "end": 681, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 677 }, { "analysis_explanation": null, "end": 739, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 730 }, { "analysis_explanation": null, "end": 748, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 741 }, { "analysis_explanation": null, "end": 798, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 776 }, { "analysis_explanation": null, "end": 810, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 802 }, { "analysis_explanation": null, "end": 818, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 812 }, { "analysis_explanation": null, "end": 827, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 823 }, { "analysis_explanation": null, "end": 889, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 882 }, { "analysis_explanation": null, "end": 901, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 891 }, { "analysis_explanation": null, "end": 970, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 963 }, { "analysis_explanation": null, "end": 984, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 975 }, { "analysis_explanation": null, "end": 1010, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1002 }, { "analysis_explanation": null, "end": 1057, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1053 }, { "analysis_explanation": null, "end": 1137, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1132 }, { "analysis_explanation": null, "end": 1149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1140 }, { "analysis_explanation": null, "end": 1162, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1155 }, { "analysis_explanation": null, "end": 1191, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1187 }, { "analysis_explanation": null, "end": 1253, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1240 }, { "analysis_explanation": null, "end": 1320, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1306 }, { "analysis_explanation": null, "end": 1370, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1366 }, { "analysis_explanation": null, "end": 1476, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1472 }, { "analysis_explanation": null, "end": 1496, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1490 }, { "analysis_explanation": null, "end": 1531, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1498 }, { "analysis_explanation": null, "end": 1656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1639 }, { "analysis_explanation": null, "end": 1664, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1660 }, { "analysis_explanation": null, "end": 1700, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1682 }, { "analysis_explanation": null, "end": 1711, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1705 }, { "analysis_explanation": null, "end": 1785, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1781 }, { "analysis_explanation": null, "end": 1794, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1786 }, { "analysis_explanation": null, "end": 1838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1825 }, { "analysis_explanation": null, "end": 2128, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2124 }, { "analysis_explanation": null, "end": 2154, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2138 }, { "analysis_explanation": null, "end": 2170, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2166 }, { "analysis_explanation": null, "end": 2222, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2208 }, { "analysis_explanation": null, "end": 2267, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2250 }, { "analysis_explanation": null, "end": 2323, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2306 }, { "analysis_explanation": null, "end": 2364, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2356 }, { "analysis_explanation": null, "end": 2372, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2366 }, { "analysis_explanation": null, "end": 2420, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2403 }, { "analysis_explanation": null, "end": 2455, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2441 }, { "analysis_explanation": null, "end": 2474, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2465 }, { "analysis_explanation": null, "end": 2484, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2476 }, { "analysis_explanation": null, "end": 2492, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2486 }, { "analysis_explanation": null, "end": 2510, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2502 }, { "analysis_explanation": null, "end": 2540, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2536 }, { "analysis_explanation": null, "end": 2581, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2577 }, { "analysis_explanation": null, "end": 2614, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2606 }, { "analysis_explanation": null, "end": 2622, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2616 }, { "analysis_explanation": null, "end": 2651, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2647 }, { "analysis_explanation": null, "end": 2686, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2676 }, { "analysis_explanation": null, "end": 2736, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2719 } ]
[ "International Peaceand Security\n\nNews\n\nTop International Peace and Security Stories of 2015\n\nRepublishing Guidelines\n\nCarnegie Corporation of New York encourages you to share our content and permits partial or full reprints, but only with permission. ", "Please read our guidelines.", "\n\nThroughout 2015, Carnegie Corporation’s International Program continued its efforts to promotepeace and security through independent analysis and activities addressing critical global challenges. ", "Grantee organizations received support for efforts to reduce instability in Russia, China, and the Arab region and to strengthen the field of peace building in Africa. ", "Funding also went to institutions striving to bridge the gap between scholarship and policy on international peace and security issues, and to those with new approaches to insuring the peaceful use of nuclear technologies and limiting nuclear proliferation.", "\n\n1Revolutionary Times\n\n2Carnegie Forum: Should the U.S. Cooperate with Russia on Syria and ISIS?", "\n\nDo Russia and the United States have a shared objective concerning Syria and, if so, how can they settle the divisive elements in their current positions? ", "Leading Russia experts weigh in on this urgent debate.", "\n\n3Activating the Power of Ideas\n\n4The New Age of Nuclear Vulnerability?", "\n\nMany national security experts warn that the nuclear status quo is unstable due to rapid technological change. ", "Program officer Carl Robichaud introduces six grant recipients chosen to conduct research on new threats to nuclear deterrence.", "\n\n5Transnational Movements and the Arab Region\n\nExperts, policymakers, and funders from eighteen organizations discussed transnational militancy and the global rise of influential non-state actors at a convening hosted by program director Hillary Wiesner.", "\n\n6The World in 2035\n\nAlexander Dynkin, Director of the Primakov Institute of World Economy and International Relations, and Mathew Burrows, Director of the Strategic Foresight Initiative at the Atlantic Council, explain their joint study of the world as it could be in 2035: Global System on the Brink: Pathways Towards A New Normal.", "\n\nAs Americans prepare to go to the polls for the 2018 midterm elections, a new report from the National Academy of Sciences highlights the threat of disruption from cyberattacks on electoral infrastructure across the country." ]
{ "pile_set_name": "Pile-CC" }
[ 0.00398406374501992, 0, 0.005050505050505051, 0, 0, 0.010309278350515464, 0, 0, 0.013888888888888888, 0, 0.007874015748031496, 0.00392156862745098, 0.014970059880239521, 0.004424778761061947 ]
0.004602
5
[ { "analysis_explanation": null, "end": 91, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87 }, { "analysis_explanation": null, "end": 150, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142 }, { "analysis_explanation": null, "end": 294, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290 }, { "analysis_explanation": null, "end": 557, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551 }, { "analysis_explanation": null, "end": 564, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 559 }, { "analysis_explanation": null, "end": 578, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574 }, { "analysis_explanation": null, "end": 641, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 635 }, { "analysis_explanation": null, "end": 977, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 971 }, { "analysis_explanation": null, "end": 986, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 981 }, { "analysis_explanation": null, "end": 1006, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1000 }, { "analysis_explanation": null, "end": 1028, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1011 }, { "analysis_explanation": null, "end": 1069, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1064 }, { "analysis_explanation": null, "end": 1166, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1160 }, { "analysis_explanation": null, "end": 1419, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1405 }, { "analysis_explanation": null, "end": 1570, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1546 }, { "analysis_explanation": null, "end": 1769, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1754 }, { "analysis_explanation": null, "end": 1789, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1785 }, { "analysis_explanation": null, "end": 1908, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1894 }, { "analysis_explanation": null, "end": 2043, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2039 }, { "analysis_explanation": null, "end": 2116, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2107 }, { "analysis_explanation": null, "end": 2156, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2152 } ]
[ "\n618 N.W.2d 917 (2000)\n242 Mich. App. ", "486\nMICHIGAN MILK PRODUCERS, ASSOCIATION, Petitioner-Appellee,\nv.\nDEPARTMENT OF TREASURY, Respondent-Appellant.", "\nDocket No. ", "215385.", "\nCourt of Appeals of Michigan.", "\nSubmitted December 7, 1999, at Lansing.", "\nDecided September 12, 2000, at 9:00 a.m.\nReleased for Publication November 16, 2000.", "\n*918 Foster, Swift, Collins & Smith, P.C. (by David VanderHaagen), Lansing, for the petitioner.", "\nJennifer M. Granholm, Attorney General, Thomas L. Casey, Solicitor General, and Glenn R. White, Assistant Attorney General, for the respondent.", "\nBefore: DOCTOROFF, P.J., and O'CONNELL and WILDER, JJ.", "\nWILDER, J.\nIn this tax dispute, respondent Department of Treasury appeals as of right from the opinion and judgment of the Michigan Tax Tribunal in favor of petitioner Michigan Milk Producers Association canceling an assessment and ordering a refund of use taxes paid by petitioner pursuant to the Use Tax Act (UTA), M.C.L. § 205.91 et seq.; ", "MSA 7.555(1) et seq. ", "We affirm.", "\n\nI. Facts and Procedural Background\nThis case was submitted to the Tax Tribunal on stipulated facts. ", "Petitioner is a Michigan cooperative corporation with approximately 2,850 dairy farmer members involved in milk production. ", "Pursuant to Membership and Marketing Agreements between petitioner and the dairy farmers, petitioner markets the milk for sale and remits proceeds from the sales to the dairy farmer members. ", "Following an audit for the period July 1, 1990, through December 31, 1993, respondent assessed use taxes against petitioner for machinery, equipment, and supplies that petitioner used in its Novi, Michigan, laboratory for testing its members' raw milk for such things as butterfat, bacterial counts, somatic cell counts, drug residues, and protein. ", "These tests were required by state and federal health laws for the commercial marketing of milk. ", "Petitioner's Novi testing laboratory was approved by the Food and Drug Administration (FDA) and the Michigan Department of Agriculture. ", "The parties agreed that, pursuant to statute, \"[a] dairy farmer engaged in a business enterprise and using and consuming property in the breeding, raising, or caring for livestock will be exempt from use tax on the purchase of the property.\"", "\nPetitioner tendered an interim tax payment and subsequently sought a refund of these taxes on the basis that the subject equipment was exempt from the use tax pursuant to M.C.L. § 205.94(f); MSA 7.555(4)(f) and 1979 AC, R. 205.51 and 1979 AC, R. 205.72(1). ", "Following an administrative hearing, the referee found that raw milk testing was part of agricultural production because the tests relate information about the milk that exists before the milk is transported for bottling, the tests performed in this case were necessitated by health concerns, and the tests were conducted on farms or other locations. ", "The referee also found that while certain *919 tests used to determine market prices addressed economic concerns and were not part of agricultural production, because the tests conducted by petitioner at the Novi lab had \"concurrent purposes\" inasmuch as they were needed for health requirements and to establish market prices, the equipment used for raw milk testing fell within the protection of the agricultural production exemption. ", "Accordingly, the referee recommended that the assessment be canceled and the payment refunded to petitioner.", "\nRespondent's Acting Revenue Commissioner declined to accept the referee's recommendation and refused to refund the payment, reasoning as follows:\nThe Department of Treasury is not convinced that the testing of milk for purposes of complying with governmental regulations meets the definitions of agricultural production, whether conducted by a farmer or an outside business enterprise. ", "The production is completed when the milk enters the storage tank. ", "Testing of milk to insure that it meets health requirements so as to not be detrimental to ultimate consumers does not meet the statutory definition. ", "It has not been shown that the tests conducted by Michigan Milk Producers Association are of benefit to the producer other than in determining the amount the producer will be paid.", "\nPetitioner appealed the assessment to the Tax Tribunal, which ruled in favor of petitioner and ordered respondent to refund the $13,213.31 in dispute. ", "The tribunal, quoting this Court's holding in William Mueller & Sons, Inc. v. Dep't of Treasury, 189 Mich.App. ", "570, 574, 473 N.W.2d 783 (1991), found that \"the exemption contained in § 4(f) does not require that the taxpayer be engaged in the actual production of horticultural or agricultural products.\" ", "The tribunal noted that petitioner may be entitled to the exemption even if it is not an agricultural producer as long as petitioner's testing of raw milk was part of the agricultural production process. ", "The tribunal concluded that petitioner's testing of the milk was a direct part of the agricultural production process and, thus, the equipment petitioner used in connection with the testing was exempt from use tax.", "\nRespondent now appeals the tribunal's ruling, arguing that the use tax exemption is inapplicable because petitioner did not use or consume the subject property for agricultural production. ", "Respondent maintains that petitioner's testing of the raw milk and its use of the test results to set the market price of milk constituted postproduction commercial marketing activity, not agricultural production. ", "Respondent further contends that the holding in Mueller and the administrative interpretations of the UTA support imposition of the use tax on petitioner. ", "Petitioner, on the other hand, contends that its equipment was exempt from use tax because dairy farming is a component of agricultural production within the meaning of the exemption statute and administrative rules, and the tests performed by petitioner were necessary to its members' commercial production of milk. ", "Petitioner further notes that, pursuant to Mueller, a taxpayer may claim an agricultural production exemption even though the taxpayer is not directly engaged in production.", "\n\nII. ", "Standard of Review\nThis Court's authority to review a decision of the Tax Tribunal is very limited. ", "Miedema Metal Building Systems, Inc. v. Dep't of Treasury, 127 Mich. App. ", "533, 536, 338 N.W.2d 924 (1983), quoting Michigan Nat'l Bank, Lansing v. City of Lansing, 96 Mich.App. ", "551, 553, 293 N.W.2d 626 (1980). ", "In the absence of an allegation of fraud, this Court's review of a Tax Tribunal decision is limited to determining whether the tribunal committed an error of law or adopted a wrong legal principle. ", "Michigan Bell Telephone Co. v. Dep't of Treasury, 229 Mich.App. ", "200, 206, 581 N.W.2d 770 (1998); Mueller, supra at 572, 473 N.W.2d 783. ", "The tribunal's factual findings will not be disturbed *920 as long as they are supported by competent, material, and substantial evidence on the whole record. ", "Canterbury Health Care, Inc. v. Dep't of Treasury, 220 Mich. App. ", "23, 28, 558 N.W.2d 444 (1996); Speaker-Hines & Thomas, Inc. v. Dep't of Treasury, 207 Mich.App. ", "84, 87, 523 N.W.2d 826 (1994).", "\nAdditionally, statutory interpretation is a question of law subject to review de novo. ", "In re MCI Telecommunications Complaint, 460 Mich. 396, 413, 596 N.W.2d 164 (1999). ", "The primary goal of statutory interpretation is to ascertain and give effect to the intent of the Legislature as discerned from the language in the statute. ", "Chandler v. Dowell Schlumberger Inc., 456 Mich. 395, 398, 572 N.W.2d 210 (1998); Michigan Bell, supra at 207, 581 N.W.2d 770. ", "Statutory language must be read according to its ordinary and generally accepted meaning. ", "Chandler, supra. ", "If the language of the statute is clear and unambiguous, judicial construction is neither permitted nor appropriate. ", "Frankenmuth Mut. ", "Ins. ", "Co. v. Marlette Homes, Inc., 456 Mich. 511, 515, 517-518, 573 N.W.2d 611 (1998). ", "This Court will generally defer to the Tax Tribunal's interpretation of a statute that it is charged with administering and enforcing. ", "Canterbury, supra at 33, 558 N.W.2d 444; Maxitrol Co. v. Dep't of Treasury, 217 Mich.App. ", "366, 370, 551 N.W.2d 471 (1996).", "\n\nIII. ", "Analysis\nThe sole legal issue raised on appeal is whether the Tax Tribunal erred in concluding that petitioner's dairy testing equipment was exempt from use tax under the agricultural production exemption in the UTA. ", "For the reasons stated below, we conclude that the tribunal correctly determined that petitioner was entitled to the use tax exemption in subsection 4(f) of the UTA, and we affirm the tribunal's ruling.", "\nThe use tax, complementary to the general sales tax, is a tax levied on every person in this state \"for the privilege of using, storing, or consuming tangible personal property in this state....\" MCL 205.93(1); MSA 7.555(3)(1); World Book, Inc. v. Dep't of Treasury, 459 Mich. 403, 408, 590 N.W.2d 293 (1999). ", "Under the UTA, the term \"use\" is defined as follows:\n\"Use\" means the exercise of a right or power over tangible personal property incident to the ownership of that property including transfer of the property in a transaction where possession is given. [", "MCL 205.92(b); MSA 7.555(2)(b).]", "\nMCL 205.94(f); MSA 7.555(4)(f) exempts from use tax\n[p]roperty sold to a person engaged in a business enterprise and using and consuming the property in the tilling, planting, caring for, or harvesting of the things of the soil or in the breeding, raising, or caring for livestock, poultry, or horticultural products, including transfers of livestock, poultry, or horticultural products for further growth. ", "At the time of the transfer of that tangible personal property, the transferee shall sign a statement, in a form approved by the department, stating that the property is to be used or consumed in connection with the production of horticultural or agricultural products as a business enterprise. ", "The statement shall be accepted by the courts as prima facie evidence of the exemption.... This exemption does not include transfers of food, fuel, clothing, or similar tangible personal property for personal living or human consumption. ", "This exemption does not include tangible personal property permanently affixed and becoming a structural part of real estate.", "\nIn general, tax exemptions are strictly construed in favor of the taxing authority. ", "Canterbury, supra at 31, 558 N.W.2d 444. ", "This Court should not, however, produce a strained construction that is adverse to legislative intent. ", "Id. Moreover, ambiguities in the language of a tax statute are to be resolved in favor of the taxpayer. *", "921 Czars, Inc. v. Dep't of Treasury, 233 Mich. App. ", "632, 637, 593 N.W.2d 209 (1999).", "\nSubsection 4(f) has two basic requirements in order to qualify for the exemption. ", "First, the subject property must be sold to a person \"engaged in a business enterprise.\" ", "Second, the property must be used or consumed for agricultural or horticultural production. ", "In this case, there is no question that petitioner is engaged in a business enterprise.[1] Thus, to resolve the issue before us we must determine whether petitioner used or consumed the subject property for agricultural production, that is, whether petitioner's testing of the raw milk before marketing it to consumers constitutes a component of agricultural production as contemplated by the exemption statute.", "\nAt the outset, we note that applicable administrative rules equate milk production with agricultural production. ", "Administrative Rule 205.72 states:\n(1) The producing of milk is covered by R. 205.51. ", "The sale of all tangible personal property consumed or used directly in such producing prior to shipment from the place of production is not taxable.", "\n(2) ... Processing includes all necessary operations performed on the milk prior to shipment from the plant. ", "Sales of ... equipment used directly in the processing of milk ... are not taxable. [", "1979 AC, R. 205.72.]", "\nRule 205.51(1) defines \"agricultural producing\" as \"the commercial production, for sale, of crops, livestock, poultry, and other products by persons regularly engaged in business as farmers, nurserymen, or agriculturists.\" ", "1979 AC, R. 205.51. ", "Further, Rule 205.51(5)(f) exempts from tax sales of \"[m]achinery, tools, other equipment ... and other tangible personal property\" used in agricultural production.", "\nThese administrative rules, considered together with the parties' stipulation that a dairy farmer engaged in a business enterprise and using and consuming property in the breeding, raising, or caring for livestock will be exempt from use tax make it clear that commercial dairy farming (i.e., milk production) is within the scope of the UTA's agricultural production exemption.", "\nWe turn next to the question whether testing of the milk is a direct component of agricultural production or whether, as respondent asserts, the testing is only used for marketing the milk, a purpose to which the use tax exemption would not apply. ", "The parties agree that petitioner is approved by the FDA and the Department of Agriculture to perform legally mandated testing of milk, without which the milk would not be eligible for marketing. ", "The testing establishes the identity and confirms the safety of the raw milk produced on the farm. ", "As the tribunal explained, \"quality control,\" defined by Webster's New World Dictionary of American English, Third Edition (1988) as \"a system for maintaining desired standards in a product or process, esp. ", "by inspecting samples of the product,\" is a direct part of the production process. ", "To this end, we agree with the tribunal's finding that because petitioner tests the raw milk to ensure that the legally mandated standards are satisfied, its quality control testing is a direct component of the agricultural production process.", "\nFurther, as the referee aptly noted, \"[t]ests which tie in the quality of milk content to specific cows and specific herds are part of agricultural production because the tests relate information to circumstances which should exist before milk is *922 transported for bottling.\" ", "While the referee correctly pointed out that tests that determine market prices address economic concerns and have no relation to agricultural production, concurrent taxable use with an exempt use does not remove the protection of exemption. ", "See Michigan Allied Dairy Ass'n v. State Bd. ", "of Tax Administration, 302 Mich. 643, 5 N.W.2d 516 (1942). ", "Therefore, the tribunal did not clearly err in finding that raw milk testing is a part of agricultural production and that petitioner's milk testing equipment is exempt from the use tax under subsection 4(f). ", "See Miedema Metal, supra at 533, 338 N.W.2d 924.", "\nFinally, we reject respondent's argument that petitioner is not entitled to the agricultural production exemption because it is not an agricultural producer. ", "In Mueller, supra at 573-574, 473 N.W.2d 783, this Court found that subsection 4(f) does not require that the taxpayer itself be directly engaged in the business of agricultural production in order to claim the exemption in subsection 4(f):\nHad the Legislature intended this subsection [4(f) ] to apply only to farmers, it would have expressly said so. ", "This is evidenced by the fact that the Legislature specifically set forth this limitation under another exemption to the use tax. ", "Under § 4(g), a taxpayer is not exempt if he only performs an industrial processing service and is not an industrial processor. ", "By failing to include similar language in § 4(f), the Legislature evidenced its intent to provide broader coverage under § 4(f).", "\nFor these reasons, we conclude that the tribunal's finding that raw milk testing is part of the agricultural production process and that the subject property used for testing the raw milk is exempt from the use tax under the agricultural production exemption in the UTA is supported by competent, material, and substantial evidence on the whole record. ", "Canterbury, supra; Speaker-Hines, supra.", "\nAffirmed.", "\nNOTES\n[1] We reject as unsupported by the record respondent's recent claim that petitioner is not engaged in a business enterprise, particularly in view of respondent's concession to the contrary before the tribunal. ", "In re Forfeiture of $28,088 of United States Currency, 172 Mich.App. ", "200, 206, 431 N.W.2d 437 (1988). ", "In any event, subsection 4(f) refers to business enterprises in order to distinguish production for commerce from production for personal use. ", "Mueller, supra at 574, 473 N.W.2d 783. ", "There is no indication in this case that petitioner's activities were for personal rather than commercial use.", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0.02631578947368421, 0.009009009009009009, 0, 0, 0, 0, 0, 0.03125, 0.020833333333333332, 0.05454545454545454, 0.01749271137026239, 0.047619047619047616, 0, 0.0196078431372549, 0.008064516129032258, 0, 0, 0, 0.022058823529411766, 0, 0.015503875968992248, 0, 0.002288329519450801, 0, 0.002583979328165375, 0, 0, 0.005555555555555556, 0.013157894736842105, 0.036036036036036036, 0, 0, 0, 0, 0, 0.012903225806451613, 0, 0.005780346820809248, 0, 0.03, 0.04054054054054054, 0.009708737864077669, 0, 0.005050505050505051, 0.046875, 0.013888888888888888, 0, 0.045454545454545456, 0.03125, 0, 0, 0.012048192771084338, 0.006369426751592357, 0.023809523809523808, 0, 0.058823529411764705, 0, 0.058823529411764705, 0, 0.012345679012345678, 0.014814814814814815, 0.022222222222222223, 0, 0, 0.009216589861751152, 0.0049504950495049506, 0.00964630225080386, 0.003952569169960474, 0.0625, 0.0024509803921568627, 0, 0, 0, 0, 0, 0.009708737864077669, 0, 0.05660377358490566, 0, 0, 0, 0, 0, 0, 0.011627906976744186, 0, 0, 0, 0.1, 0, 0.1, 0, 0.0026455026455026454, 0, 0.01020408163265306, 0, 0.004830917874396135, 0, 0, 0, 0, 0.022222222222222223, 0, 0, 0, 0, 0.0084985835694051, 0.007692307692307693, 0, 0.0078125, 0.002824858757062147, 0, 0, 0, 0.028985507246376812, 0, 0, 0.02564102564102564, 0, 0 ]
0.010622
5
[ { "analysis_explanation": null, "end": 20, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16 }, { "analysis_explanation": null, "end": 98, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79 }, { "analysis_explanation": null, "end": 224, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208 }, { "analysis_explanation": null, "end": 236, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229 }, { "analysis_explanation": null, "end": 264, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246 }, { "analysis_explanation": null, "end": 278, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269 }, { "analysis_explanation": null, "end": 321, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304 }, { "analysis_explanation": null, "end": 387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 369 }, { "analysis_explanation": null, "end": 397, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 390 }, { "analysis_explanation": null, "end": 439, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 419 }, { "analysis_explanation": null, "end": 474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459 }, { "analysis_explanation": null, "end": 513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499 }, { "analysis_explanation": null, "end": 601, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 592 }, { "analysis_explanation": null, "end": 612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606 }, { "analysis_explanation": null, "end": 624, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618 }, { "analysis_explanation": null, "end": 629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626 }, { "analysis_explanation": null, "end": 941, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 935 }, { "analysis_explanation": null, "end": 1102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1092 }, { "analysis_explanation": null, "end": 1116, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1108 }, { "analysis_explanation": null, "end": 1453, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1430 }, { "analysis_explanation": null, "end": 1480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1463 }, { "analysis_explanation": null, "end": 1602, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1598 }, { "analysis_explanation": null, "end": 1612, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1604 }, { "analysis_explanation": null, "end": 2408, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2402 }, { "analysis_explanation": null, "end": 2446, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2442 }, { "analysis_explanation": null, "end": 2469, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2465 }, { "analysis_explanation": null, "end": 4179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4169 }, { "analysis_explanation": null, "end": 4461, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4457 }, { "analysis_explanation": null, "end": 5612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5602 }, { "analysis_explanation": null, "end": 6301, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6297 }, { "analysis_explanation": null, "end": 6348, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6333 }, { "analysis_explanation": null, "end": 6359, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6352 }, { "analysis_explanation": null, "end": 6404, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6400 }, { "analysis_explanation": null, "end": 6699, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6695 }, { "analysis_explanation": null, "end": 6968, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6966 }, { "analysis_explanation": null, "end": 6972, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6970 }, { "analysis_explanation": null, "end": 6994, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6990 }, { "analysis_explanation": null, "end": 7064, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7062 }, { "analysis_explanation": null, "end": 7068, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7066 }, { "analysis_explanation": null, "end": 7090, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7086 }, { "analysis_explanation": null, "end": 7260, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7256 }, { "analysis_explanation": null, "end": 7428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7420 }, { "analysis_explanation": null, "end": 7467, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7462 }, { "analysis_explanation": null, "end": 7498, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7494 }, { "analysis_explanation": null, "end": 7644, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7636 }, { "analysis_explanation": null, "end": 7651, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7646 }, { "analysis_explanation": null, "end": 7785, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7770 }, { "analysis_explanation": null, "end": 7819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7799 }, { "analysis_explanation": null, "end": 7830, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7825 }, { "analysis_explanation": null, "end": 7870, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7866 }, { "analysis_explanation": null, "end": 8018, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8008 }, { "analysis_explanation": null, "end": 8025, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8020 }, { "analysis_explanation": null, "end": 8031, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8029 }, { "analysis_explanation": null, "end": 8128, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8124 }, { "analysis_explanation": null, "end": 8863, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8859 }, { "analysis_explanation": null, "end": 10313, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10303 }, { "analysis_explanation": null, "end": 10326, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10324 }, { "analysis_explanation": null, "end": 10636, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10632 }, { "analysis_explanation": null, "end": 11862, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11858 }, { "analysis_explanation": null, "end": 12106, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12102 }, { "analysis_explanation": null, "end": 13272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13265 }, { "analysis_explanation": null, "end": 13336, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13332 }, { "analysis_explanation": null, "end": 14364, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14360 }, { "analysis_explanation": null, "end": 15886, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15876 }, { "analysis_explanation": null, "end": 15893, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15888 }, { "analysis_explanation": null, "end": 16189, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16176 }, { "analysis_explanation": null, "end": 16244, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16240 }, { "analysis_explanation": null, "end": 166, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 160 } ]
[ "Archive\n\nInspirational Stories\n\nHow FIRST Global Impacts Youth\n\nParticipants hone their STEM skills in preparation for the FIRST Global Challenge, but the impact of their participation stretches far beyond their time with their robot. ", "These youth are the spark igniting a brighter path for the future, as well as inspiring many to join them in the process.", "\n\nFIRST Global Changemakers\n\nThrough spreading STEM education and opportunities, we are empowering youth worldwide to build the skillsets that will enable them to address global challenges and be changemakers who will have an impact.", "\n\nWomen in STEM\n\nWomen are still underrepresented in STEM fields, especially in countries where STEM is still developing, such as Africa. ", "FIRST Global is trying to change that by empowering women to develop a passion for, and pursue, STEM fields. ", "More than 60 percent of our 2017 FIRST Global teams were founded, organized, or brought into being by women.", "\n\nVimbayi from Zimbabwe\n\n“The number of women in our country that do STEM is very little. ", "We as young girls, as the next generation, we need to change that… I believe that we can change the world.” ", "Hear the message of a participant from Team Zimbabwe 2017.", "\n\nNathan from Oceania\n\nNathan has dyslexia. ", "Kids with dyslexia often face difficulties in school and with their peers, finding it difficult to fit in and often being told they aren’t intelligent. ", "The truth, though, is that people with dyslexia simply see and understand the world in a different way. ", "By becoming part of a robotics team, Nathan has found an outlet that enables him to be himself and realize his full potential.", "\n\nLarissa from Cameroon\n\nLarissa gets up at 3 a.m. to do her chores before beginning her 5 kilometer walk to school each morning. ", "She doesn’t have a computer, so she usually goes to her mentor’s house if she needs to use one. ", "Larissa dreams of becoming an electrical engineer and using her passion for innovation to help advance her country.", "\n\nTeam Afghanistan\n\nIn a place where girls are often not encouraged to pursue STEM, these teenagers made the trek to the United States embassy in Kabul — twice — in order to obtain visas to compete in the 2017 FIRST Global Challenge. ", "Despite the many initial obstacles, they persevered, eventually making it to the event and winning silver in the Rajaâ Cherkaoui El Moursli Award for Courageous Achievement.", "\n\nTeam Iran\n\nTeam Iran signed on to compete in the 2017 FIRST Global Challenge. ", "The only problem? ", "They couldn’t get a robot kit due to sanctions. ", "Team Iran instead paired up with a robotics team from a Virgina high school who worked with them to build the robot Team Iran designed. ", "Team Iran ended up with not only a robot ready for the competition, but also several life-long friends.", "\n\nTeam Liberia\n\nTeam Liberia faced many challenges on their way to participating in the 2017 FIRST Global Challenge. ", "Yet despite a lack of electricity, an abundance of flooding, and no previous experience with robotics, they pushed forward.", "\n\nYoung Mentors\n\nNot only are FIRST Global’s programs igniting a passion for STEM in the youth of the world, young people themselves are also leading the charge. ", "Young mentors in places like Peru, Morocco, Bangladesh, and Venezuela are empowering the kids in their countries to make science and technology their own." ]
{ "pile_set_name": "Pile-CC" }
[ 0.01276595744680851, 0, 0.004291845493562232, 0.014492753623188406, 0, 0, 0, 0, 0, 0.022727272727272728, 0, 0, 0.007936507936507936, 0.015384615384615385, 0, 0.008695652173913044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.003196
5
[ { "analysis_explanation": null, "end": 723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 717 }, { "analysis_explanation": null, "end": 866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 862 }, { "analysis_explanation": null, "end": 950, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 943 }, { "analysis_explanation": null, "end": 964, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 956 }, { "analysis_explanation": null, "end": 1196, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1192 }, { "analysis_explanation": null, "end": 1539, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1533 }, { "analysis_explanation": null, "end": 1630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1623 }, { "analysis_explanation": null, "end": 1644, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1636 }, { "analysis_explanation": null, "end": 1671, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1665 }, { "analysis_explanation": null, "end": 1854, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1847 }, { "analysis_explanation": null, "end": 1979, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1968 }, { "analysis_explanation": null, "end": 2095, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2082 }, { "analysis_explanation": null, "end": 2112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2107 }, { "analysis_explanation": null, "end": 2170, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2166 }, { "analysis_explanation": null, "end": 2367, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2308 }, { "analysis_explanation": null, "end": 2389, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2385 }, { "analysis_explanation": null, "end": 2422, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2418 }, { "analysis_explanation": null, "end": 2522, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2518 }, { "analysis_explanation": null, "end": 2576, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2569 }, { "analysis_explanation": null, "end": 2658, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2654 }, { "analysis_explanation": null, "end": 2843, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2839 }, { "analysis_explanation": null, "end": 3185, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3181 }, { "analysis_explanation": null, "end": 3194, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3187 }, { "analysis_explanation": null, "end": 3206, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3196 }, { "analysis_explanation": null, "end": 3221, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3212 } ]
[ "Q:\n\nIs there a herb or plant called \"Locust\" apart from the typical grasshopper or locust?", "\n\nThe food of John the Baptist was locust and wild honey.", "\n\n“And the same John had his raiment of camel’s hair, and a leathern girdle about his loins; and his meat was locusts and wild honey.” (", "Matthew 3:4, KJV 1900)\n\nIs there any herb or vegetable that might possibly be the locusts of the verse quoted? ", "Are there any biblical or extra biblical sources that talk about this?", "\nI am looking specifically for any evidence that may point that the locust is a herb or shrub and not an insect!", "\n\nA:\n\nIs there a herb or plant called “Locust” apart from the actual grasshopper or locust that St. John the Baptist may have eaten?", "\n\n4 John’s clothes were made of camel’s hair, and he had a leather belt around his waist. ", "His food was locusts and wild honey. - ", "Matthew 3:4\n\nPossibly, it will depend on the interpretation of Sacred Scriptures one desires to follow.", "\nThere are are some, who believe that along with honey, St. John the Baptist ate the fruit of the carob tree also known as the locust bean (tree).", "\n\nThe carob (Ceratonia siliqua) is a flowering evergreen tree or shrub in the legume family, Fabaceae. ", "It is widely cultivated for its edible pods, and as an ornamental tree in gardens and landscapes. ", "The carob tree is native to the Mediterranean region and the Middle East.", "\nThe word \"carob\" comes from Middle French carobe (modern French caroube), which borrowed it from Arabic خَرُّوبٌ (kharrūb, \"locust bean pod\"),2 ultimately perhaps from Akkadian language kharubu or Aramaic kharubha, related to Hebrew harubh.3 Ceratonia siliqua, the scientific name of the carob tree, derives from the Greek kerátiοn κεράτιον 'fruit of the carob (from keras κέρας 'horn'), and Latin siliqua 'pod, carob'.", "\nIn English, it is also known as \"St John's bread\", as well as \"locust tree\", (not African locust bean) the designation also applied to several other trees from the same family. ", "Carob (Wikipedia)\n\nWas the locust of Matthew 3:4, really locust?", "\n\nJohn the Baptist's diet has been the centre of much discussion. ", "For many years, the Greek: ἀκρίδες (akrides) was interpreted as referring not to locusts, the insect, but rather to the seed pods of the carob tree. ", "But the Greek word is not used this way, and this notion is generally rejected today. ", "Locusts are mentioned 22 other times in the Bible and all other mentions quite clearly refer to the insect. ", "Locusts are still commonly eaten in Arabia. ", "Eaten either raw or roasted they are quite nutritious and a source of many vitamins. **", "While most insects were considered unclean under Mosaic law, Leviticus 11:22 specifically states that locusts are permitted. ", "Portraying John the Baptist as eating seed pods rather than insects is possibly due to squeamishness about having such a revered figure eating insects and also a belief that a true ascetic should be completely vegetarian. ", "What is meant by honey is also disputed. ", "While bee honey was a common food in the area at the time, Jones believes that it refers to the tree gum from the tamarisk tree, a tasteless but nutritious liquid, rather than the honey made by bees. - ", "Matthew 3:4\n\nDr. James D. Tabor has this to say on the subject: \n\nThe most commonly held view of John’s diet, based on our text in Mark, is that he ate locusts, a migratory form of the grasshopper of the family Acrididae, still commonly consumed by desert peoples in Arabia. ", "Others have suggested the word translated “locusts” refers to the beans of the carob tree, commonly called “St. John’s bread.” ", "However, the Greek word translated “locusts,” (akris/ακρις) seems to clearly refer to a species of grasshopper. ", "The problem is such eating of “flesh,” even if that of an insect, seems to contradict the sources that emphasize his ascetic vegetarian ideal. ", "Paul, for example, refers to members of the Jesus movement who abstain from eating meat and drinking wine (Roman 14:1-4). ", "We also have traditions that James, the brother of Jesus, practiced a strictly vegetarian lifestyle, which was also common among the Jewish Christian community that became known as the “Ebionites,” see my post here. ", "Somehow “locusts” seem out of place.", "\nA possible solution to this confusion about John’s desert diet is found in the fragments we have of the lost “Gospel of the Ebionites,” as quoted by the 4th-­century Christian writer Epiphanius (Panarion 30.13.4-5), who hated the group but fortunately, nonetheless, can’t resist quoting them–thus preserving some precious material. ", "The Greek word for locusts (akris/ἀκρίδες) is very similar to the Greek word for “honey cake” (enkris/έγκρίς) that is used for the “manna” that the Israelites ate in the desert in the days of Moses. ", "According to this ancient text was not locusts but these cakes cooked in olive oil. ", "If this is the case then John would have eaten a cake of some type, made from a desert plant, similar to the “manna” that the ancient Israelites ate in the desert in the days of Moses. ", "This “bread from heaven” is described as “like coriander seed, white, and the taste of it was like wafers made with honey” (Exodus 16:31; Numbers 11:8). ", "This kind of “pancake” baked in oil, and sweetened with honey, would then reflect and emulate the ideal holiness of the desert wanderings of Israel when the people had to look to God alone for “daily bread.” - ", "Did John the Baptist Eat Bugs, Beans, or Pancakes?", "\n\nAfter reading the above mention blogger’s post, Fr. ", "Dwight Longenecker added the follow remarks: \n\nSo it is very possible that John ate grasshoppers in one form or another. ", "It was the food of poor people and would have been consistent with his ascetically lifestyle, but the reference to honey points to the possibility that he lived on a simple type of way bread.. This fits nicely with the idea that John in the Wilderness re-capituates the whole of the Old Testament–he is in the wilderness like the people of Israel eating honey cakes like manna. ", "Combined with the fact that the gospel links him with the Judges (Samson) the miraculous births (Sarah and Samson’s mother) Elijah and Isaiah, it would seem that the third option may be the one which is the most meaningful and real. - ", "Did John the Baptist Really Eat Grasshoppers?", "\n\nA large carob tree in Sardinia, Italy\nHere follows more on these biblical mentioned locust:\n\nThere are ten Hebrew words used in Scripture to signify locust. ", "In the New Testament locusts are mentioned as forming part of the food of John the Baptist (Matt. ", "3:4; Mark 1:6).", "\nBy the Mosaic law they were reckoned \"clean,\" so that he could lawfully eat them. ", "The name also occurs in Rev. 9:3, 7, in allusion to this Oriental devastating insect. ", "Locusts belong to the class of Orthoptera, i.e., straight-winged. ", "They are of many species.", "\nThe ordinary Syrian locust resembles the grasshopper, but is larger and more destructive. \"", "The legs and thighs of these insects are so powerful that they can leap to a height of two hundred times the length of their bodies. ", "When so raised they spread their wings and fly so close together as to appear like one compact moving mass.\"", "\nLocusts are prepared as food in various ways. ", "Sometimes they are pounded, and then mixed with flour and water, and baked into cakes; \"sometimes boiled, roasted, or stewed in butter, and then eaten.\" ", "They were eaten in a preserved state by the ancient Assyrians.", "\nThe devastations they make in Eastern lands are often very appalling. ", "The invasions of locusts are the heaviest calamites that can befall a country. \"", "Their numbers exceed computation: the Hebrews called them 'the countless,' and the Arabs knew them as 'the darkeners of the sun.'", "\nUnable to guide their own flight, though capable of crossing large spaces, they are at the mercy of the wind, which bears them as blind instruments of Providence to the doomed region given over to them for the time. ", "Innumerable as the drops of water or the sands of the seashore, their flight obscures the sun and casts a thick shadow on the earth (Ex. ", "10:15; Judg. ", "6:5; 7:12; Jer. ", "46:23; Joel 2:10). - ", "Locust\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.007352941176470588, 0, 0, 0, 0, 0, 0, 0, 0, 0.019417475728155338, 0, 0, 0.007142857142857143, 0.0056179775280898875, 0.03125, 0.015151515151515152, 0, 0, 0, 0, 0, 0.008, 0, 0, 0.0049504950495049506, 0.007272727272727273, 0, 0.008928571428571428, 0, 0, 0.004629629629629629, 0, 0.0029940119760479044, 0.005025125628140704, 0, 0.005405405405405406, 0.006535947712418301, 0, 0, 0, 0.008264462809917356, 0.002638522427440633, 0.01276595744680851, 0, 0, 0.01020408163265306, 0.06666666666666667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0625, 0.047619047619047616, 0 ]
0.005152
5
[ { "analysis_explanation": null, "end": 165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161 }, { "analysis_explanation": null, "end": 190, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185 }, { "analysis_explanation": null, "end": 293, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282 }, { "analysis_explanation": null, "end": 713, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 709 }, { "analysis_explanation": null, "end": 855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 834 }, { "analysis_explanation": null, "end": 1328, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1315 }, { "analysis_explanation": null, "end": 1355, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1340 }, { "analysis_explanation": null, "end": 1398, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1385 }, { "analysis_explanation": null, "end": 1420, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1414 }, { "analysis_explanation": null, "end": 1469, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1454 }, { "analysis_explanation": null, "end": 1570, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1554 }, { "analysis_explanation": null, "end": 1589, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1583 }, { "analysis_explanation": null, "end": 1679, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1674 }, { "analysis_explanation": null, "end": 1717, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1712 }, { "analysis_explanation": null, "end": 1754, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1749 }, { "analysis_explanation": null, "end": 1866, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1859 }, { "analysis_explanation": null, "end": 1959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1954 }, { "analysis_explanation": null, "end": 2002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1991 }, { "analysis_explanation": null, "end": 2027, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2019 }, { "analysis_explanation": null, "end": 2097, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2087 }, { "analysis_explanation": null, "end": 2108, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2103 }, { "analysis_explanation": null, "end": 2245, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2240 }, { "analysis_explanation": null, "end": 2316, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2311 }, { "analysis_explanation": null, "end": 2468, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2462 }, { "analysis_explanation": null, "end": 2628, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2619 }, { "analysis_explanation": null, "end": 2710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2694 }, { "analysis_explanation": null, "end": 3010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3005 }, { "analysis_explanation": null, "end": 3159, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3148 }, { "analysis_explanation": null, "end": 3179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3165 }, { "analysis_explanation": null, "end": 3249, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3245 }, { "analysis_explanation": null, "end": 3283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3279 }, { "analysis_explanation": null, "end": 3421, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3415 }, { "analysis_explanation": null, "end": 3568, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3563 }, { "analysis_explanation": null, "end": 3809, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3805 }, { "analysis_explanation": null, "end": 3961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3956 }, { "analysis_explanation": null, "end": 3983, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3978 }, { "analysis_explanation": null, "end": 4066, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4060 }, { "analysis_explanation": null, "end": 4076, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4067 }, { "analysis_explanation": null, "end": 4122, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4113 }, { "analysis_explanation": null, "end": 4228, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4224 }, { "analysis_explanation": null, "end": 4356, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4347 }, { "analysis_explanation": null, "end": 4374, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4364 }, { "analysis_explanation": null, "end": 4522, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4517 }, { "analysis_explanation": null, "end": 4584, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4579 }, { "analysis_explanation": null, "end": 4671, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4661 }, { "analysis_explanation": null, "end": 4701, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4693 }, { "analysis_explanation": null, "end": 4710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4705 }, { "analysis_explanation": null, "end": 4825, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4821 }, { "analysis_explanation": null, "end": 4940, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4930 }, { "analysis_explanation": null, "end": 4970, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4962 }, { "analysis_explanation": null, "end": 4979, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4974 }, { "analysis_explanation": null, "end": 5281, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5275 }, { "analysis_explanation": null, "end": 5333, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5328 }, { "analysis_explanation": null, "end": 5352, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5348 }, { "analysis_explanation": null, "end": 5465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5447 }, { "analysis_explanation": null, "end": 5526, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5522 }, { "analysis_explanation": null, "end": 5802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5798 }, { "analysis_explanation": null, "end": 5915, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5909 }, { "analysis_explanation": null, "end": 6049, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6044 }, { "analysis_explanation": null, "end": 6060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6054 }, { "analysis_explanation": null, "end": 6077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6071 }, { "analysis_explanation": null, "end": 6088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6082 }, { "analysis_explanation": null, "end": 6226, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6186 }, { "analysis_explanation": null, "end": 6258, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6250 }, { "analysis_explanation": null, "end": 6365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6356 }, { "analysis_explanation": null, "end": 6481, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6477 }, { "analysis_explanation": null, "end": 6496, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6488 }, { "analysis_explanation": null, "end": 6616, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6615 }, { "analysis_explanation": null, "end": 6646, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6638 }, { "analysis_explanation": null, "end": 6778, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6772 }, { "analysis_explanation": null, "end": 7353, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7344 }, { "analysis_explanation": null, "end": 7594, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7589 }, { "analysis_explanation": null, "end": 7797, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7787 }, { "analysis_explanation": null, "end": 7994, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7989 }, { "analysis_explanation": null, "end": 8034, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8025 } ]
[ "Q:\n\nHow to make a graphing code graph with csv instead of txt\n\nI have a code that lets me graph stacked bar charts, and it imports data from a .txt file.", "\ndf = pd.read_table(\"tiempo.txt\",header =None, names = ['Tiempos no Contributivos','Tiempos Contributivos', 'Tiempos Productivos'])\ndf['bar'] = 1 \ndfgroup = df.groupby('bar').sum()\nax = dfgroup [['Tiempos no Contributivos','Tiempos Contributivos', 'Tiempos Productivos']].plot(kind='bar', title =\"Tiempos de obra\",\n figsize=(15, 10), legend=True, fontsize=12)\nax.set_xlabel(\" \", fontsize=12)\nax.set_ylabel(\"Tiempo(segundos)\", fontsize=12)\nplt.show()\n\nThe graph this code throws, looks like this.", "\nGraph Image\nWhat i need is for this code to work like its been working, but instead of reading a .txt file, i need it to read a .csv file.", "\nWhen i tried to switch the .txt file for the .csv one in the reading part, this happened.", "\nError\nThe data used in this code looks like this (Wont post the entirety of it because there are like 500 rows)\nExample of the data used\n\nA:\n\nSo I fixed that and changed the function to read_csv. ", " Then I noticed that your csv wasn't comma delimited, and was, instead, tab delimited. ", " So, I added delimiter='\\t' the read. ", "Next, I went ahead adn updated the functions you were calling to set the ylabel and xlabel to their modern names. ", " Then, I took your current column names and fed them into the plot, that way we have a properly labeled graph.", "\nimport pandas as pd\nimport matplotlib.pyplot as plt; plt.rcdefaults()\nimport numpy as np\n\ndf = pd.read_csv(\"tiempo.txt\",header=None,delimiter='\\t',names = ['Tiempos no Contributivos','Tiempos Contributivos', 'Tiempos Productivos'])\ny_pos = np.arange(len(df.columns))\nbars = df.sum(axis=0)\n\nplt.bar(y_pos, bars, align='center', alpha=0.5)\nplt.xticks(y_pos, df.columns)\nplt.ylabel(\"Tiempo(segundos)\", fontsize=12)\nplt.xlabel(\" \", fontsize=12)\nplt.title('Tiempo')\n\nplt.show()\n\nOutput:\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.005964214711729622, 0.007194244604316547, 0, 0, 0, 0, 0, 0, 0.006198347107438017 ]
0.001936
5
[ { "analysis_explanation": null, "end": 488, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477 }, { "analysis_explanation": null, "end": 789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 785 }, { "analysis_explanation": null, "end": 1295, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1289 }, { "analysis_explanation": null, "end": 164, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 159 }, { "analysis_explanation": null, "end": 315, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 310 }, { "analysis_explanation": null, "end": 526, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 521 }, { "analysis_explanation": null, "end": 558, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 553 }, { "analysis_explanation": null, "end": 606, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 600 }, { "analysis_explanation": null, "end": 1469, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1456 }, { "analysis_explanation": null, "end": 1529, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1524 }, { "analysis_explanation": null, "end": 1674, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1669 }, { "analysis_explanation": null, "end": 1688, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1683 }, { "analysis_explanation": null, "end": 1708, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1703 }, { "analysis_explanation": null, "end": 1725, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1719 }, { "analysis_explanation": null, "end": 1790, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1785 }, { "analysis_explanation": null, "end": 1897, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1891 } ]
[ "[Laser-assisted subepithelial keratectomy (LasEk). ", "Review of the current state of knowledge].", "\nThis article offers an overview of the current state of knowledge on the results and techniques of the evolving refractive procedure called laser-assisted subepithelial keratectomy (LasEk). ", "A few peer-reviewed published clinical and experimental studies on this new technique are critically debated. ", "Furthermore we discuss the indications for this procedure in comparison to photorefractive keratectomy (PRK) and laser in situ keratomileusis (Lasik) based on the current body of literature and the first author's clinical and scientific personal experience." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.0196078431372549, 0, 0.005235602094240838, 0, 0.007782101167315175 ]
0.006525
5
[]
[ "Toddlers' speech and cognitive effort.", "\nTwo-year-olds were videotaped while engaged in free play and problem-solving play. ", "The periods in which they were actively manipulating objects were analyzed as to level of engagement, distinguishing between periods of intense engagement, in which the children were concentrating on the nonverbal activity, and periods of casual engagement, in which they conducted the nonverbal activity in a more leisurely fashion. ", "A micro-analysis of the children's spontaneous speech revealed that they spoke less at moments of intense engagement than at moments of casual engagement. ", "These and other findings are taken as support for the hypothesis that when toddlers invest cognitive effort in nonverbal behavior, there is a reduction in mental resources available for speech." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.02631578947368421, 0, 0, 0, 0 ]
0.005263
5
[ { "analysis_explanation": null, "end": 52, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39 } ]
[ "Q:\n\njava paint applet - need help adding action on radio buttons\n\nI need to make a java applet that allows the user to paint with the mouse. ", "When the applet is launched, a second window opens that allows the user to select one of 6 different colors to paint with.", "\nFirst, I wrote code to construct a toolbar window which contains a getcurrentcolor method. ", "I can't seem to link the button press with the color change.", "\nIf I launch the applet, the toolbarwindow opens successfully and I'm able to paint in black, so my only problem is selecting a color on the toolbar window and painting in that color.", "\ntoolbar code:https://gist.github.com/anonymous/3c053c69112f46d17440\npainting applet code: https://gist.github.com/anonymous/aca7929dbcfc08008f30\n\nA:\n\nI gave an approach here for 3 buttons, you can add the rest. ", "The idea is that you keep a currently selected color field and update it each time a button is selected via the ActionListener. ", "A map from the button to the color it represents is not necessary, but makes the code more manageable.", "\npublic class ToolBarWindow extends JFrame {\n\n private static Map<JRadioButton, Color> colors = new HashMap<>();\n private static Color currentColor = Color.", "BLACK;\n\n public static void main(String[] args) {\n\n ToolBarWindow frame = new ToolBarWindow();\n frame.pack();\n frame.setLocationRelativeTo(null);\n frame.setDefaultCloseOperation(JFrame.", "EXIT_ON_CLOSE);\n frame.setTitle(\"Colors\");\n frame.setVisible(true);\n }\n\n public ToolBarWindow() {\n\n JPanel jpRadioButtons = new JPanel();\n jpRadioButtons.setLayout(new GridLayout(3, 1));\n\n // put the other colors\n JRadioButton red = new JRadioButton(\"red\");\n JRadioButton black = new JRadioButton(\"black\");\n JRadioButton magenta = new JRadioButton(\"magenta\");\n\n red.addActionListener(new MyActionListener());\n black.addActionListener(new MyActionListener());\n magenta.addActionListener(new MyActionListener());\n\n jpRadioButtons.add(red);\n jpRadioButtons.add(black);\n jpRadioButtons.add(magenta);\n\n colors.put(red, Color.", "RED);\n colors.put(black, Color.", "BLACK);\n colors.put(magenta, Color.", "MAGENTA);\n\n add(jpRadioButtons, BorderLayout.", "WEST);\n\n ButtonGroup bg = new ButtonGroup();\n bg.add(red);\n bg.add(black);\n bg.add(magenta);\n }\n\n Color getCurrentColor() {\n\n return currentColor;\n }\n\n private class MyActionListener implements ActionListener {\n\n public void actionPerformed(ActionEvent e) {\n\n currentColor = colors.get(e.getSource());\n }\n }\n}\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0.009433962264150943, 0, 0, 0.018518518518518517, 0.004629629629629629, 0.006839945280437756, 0, 0, 0.019230769230769232, 0.0051813471502590676 ]
0.004256
5
[ { "analysis_explanation": null, "end": 87, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83 }, { "analysis_explanation": null, "end": 666, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 636 }, { "analysis_explanation": null, "end": 1150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1143 }, { "analysis_explanation": null, "end": 1634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1593 }, { "analysis_explanation": null, "end": 2291, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2287 }, { "analysis_explanation": null, "end": 2542, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2528 }, { "analysis_explanation": null, "end": 666, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 612 }, { "analysis_explanation": null, "end": 743, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 689 }, { "analysis_explanation": null, "end": 1324, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1316 }, { "analysis_explanation": null, "end": 1346, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1338 }, { "analysis_explanation": null, "end": 1389, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1381 }, { "analysis_explanation": null, "end": 1452, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1444 }, { "analysis_explanation": null, "end": 1486, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1478 }, { "analysis_explanation": null, "end": 1610, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1593 }, { "analysis_explanation": null, "end": 1857, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1851 }, { "analysis_explanation": null, "end": 1914, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1906 }, { "analysis_explanation": null, "end": 1973, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1963 }, { "analysis_explanation": null, "end": 2040, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2023 }, { "analysis_explanation": null, "end": 2073, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2056 }, { "analysis_explanation": null, "end": 2108, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2091 }, { "analysis_explanation": null, "end": 2352, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2347 }, { "analysis_explanation": null, "end": 2373, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2368 }, { "analysis_explanation": null, "end": 2396, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2391 }, { "analysis_explanation": null, "end": 2636, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2627 }, { "analysis_explanation": null, "end": 2642, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2638 } ]
[ "Q:\n\nReverse concat in Elixir\n\nIs there a standard library function in Elixir (or Erlang) to concatenate the reverse of a list in front of some other list? ", "Basically I'm looking for an equivalent of reverse_::: in Scala.", "\nThe rationale is that it's handy when implementing a tail-recursive algorithm on a list. ", "During recursion, you hold on to some of the elements for later by adding them onto the front of an accumulator list. ", "In the end you can reverse-concat them onto the remainder of the assembled list in one go (which should be pretty efficient).", "\n\nA:\n\nYou can do a reverse and concat in Erlang by using lists:reverse/2.", "\nI think the documentation explanation and example are clear enough:\n\nreverse(List1, Tail) -> List2. ", " \nReturns a list with the elements in List1 in reverse order, with the\n tail Tail appended.", "\n\n> lists:reverse([1, 2, 3, 4], [a, b, c]).", "\n[4,3,2,1,a,b,c]\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.01935483870967742, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.001935
5
[ { "analysis_explanation": null, "end": 87, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81 }, { "analysis_explanation": null, "end": 218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213 }, { "analysis_explanation": null, "end": 598, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 592 }, { "analysis_explanation": null, "end": 837, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 836 }, { "analysis_explanation": null, "end": 840, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 839 }, { "analysis_explanation": null, "end": 208, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.1, "start": 206 } ]
[ "Introduction {#Sec1}\n============\n\nMelanoma is a type of cancer arising from the malignant transformation of melanocytes, pigment producing-cells found predominantly in the basal layer of the epidermis and eyes. ", "Cutaneous melanoma is the most aggressive and treatment-resistant form of skin cancer responsible for the vast majority of skin cancer-related deaths in the Caucasian population^[@CR1]^. The global incidence of melanoma continues to increase at an alarming rate, despite decades of public prevention programs in many countries. ", "Around 232,000 new cases of skin cancer were recorded worldwide in 2012, accounting for 1.6% of all new cases of cancer back then, while over 300,000 new cases of melanoma were diagnosed worldwide in 2018, according to the World Cancer Research Foundation^[@CR2],[@CR3]^. In Brazil, 1,547 deaths were recorded in 2013 due to melanoma, with around 5,690 new cases reported back then, while around 6,260 new cases were expected due in 2018, according to the National Cancer Institute (INCA)^[@CR4]^.\n\nCutaneous melanoma usually affects a higher proportion of patients, in the age range 40--60 years. ", "They can be treated by surgical excision when detected in the early stage (0, I, II and resectable III), however, in the later stages (unresectable III, IV and recurrent melanoma) the treatment options are chemotherapy, target therapy (BRAF/MEK pathway inhibitors), immunotherapy (checkpoint blockade CTLA-4 receptor inhibition, PD-1 ↔ PD-L1 axis inhibition, and interferon-gamma immunotherapy), or a combination of them. ", "Death in most patients is caused by metastatic disease which may have evolved from the primary tumor. ", "Therefore, there is a need for new strategies in melanoma therapy because many patients do not respond to these treatments due to mutations in their genome, microbiota profile, response to neo-antigens, and resistance to drugs^[@CR5]^.\n\nIn horses, skin tumors are the most common among neoplasms. ", "Horse melanomas are encapsulated complex systems surrounded by a hard peel and represent 5 to 14% of equine skin neoplasms^[@CR6],[@CR7]^. These melanomas are usually benign tumors; however, they may have an unpredictable malignancy, progressing to malignant forms, and metastasize^[@CR6]^. Dark-haired horses feature higher melanoma malignancy as they get older compared to white-haired horses^[@CR7]^.\n\nMalignant transformations are caused by driver mutations. ", "The acknowledged mutated genes in human melanoma are *BRAF* and *NRAS*, as well as the newly discovered *PPP6C*, *RAC1, SNX31, TACC1, STK19*, and *ARID2*^[@CR8]^. In horses, the only recognized driver mutation hitherto is caused by a 4.6 Kb duplication in intron 6 of Syntaxin 17 (*STX17*)^[@CR9],[@CR10].^ As is known, spontaneous horse melanoma tumors have a different natural history and many anatomical differences, compared to human melanoma tumors, but for some^[@CR11],[@CR12]^ it is considered a good translational model.", "\n\nIn the present study, we treated horse melanoma tumors with Amblyomin-X, a Kunitz-type recombinant protein identified in a cDNA library from the tick *Amblyomma sculptum* salivary glands^[@CR13]^. This molecule has the ability to inhibit Factor Xa in the blood coagulation cascade and triggers apoptosis by activating its intrinsic pathway in tumor cells^[@CR14]--[@CR16]^. In previous studies, Amblyomin-X showed more avidity in the recognition of tumor cells, and rapid excretion in healthy murines^[@CR17]^. We have already shown that Amblyomin-X causes cell death via induction of both endoplasmic reticulum (ER) stress and proteasome inhibition (PI) in renal adenocarcinoma (murine RENCA), in melanoma (murine B16F10 and human SK-MEL-28)^[@CR18]^, as well as in pancreatic (human Mia-Paca-2) tumor cell lines^[@CR17],[@CR19],[@CR20]^.\n\nOver the past ten years, preclinical studies have shown the potential of proteasome inhibition as an effective therapeutic strategy for treating different types of cancers^[@CR21]--[@CR24]^ including melanoma^[@CR25]--[@CR29]^. Bortezomib and Amblyomin-X are proteasome inhibitors (PIs) activating different innate immune pathways, the former via MAVS-NOXA^[@CR25]^, and the latter via RIG-I-MAVS, as suggested by our transcriptome analysis. ", "Trials with Bortezomib^[@CR30]--[@CR35]^ alone have shown insufficient clinical efficacy, and in combination with paclitaxel and carboplatin, limited clinical benefit and significant toxicity^[@CR30]^. Therefore, the effort to study proteasome inhibitors in different cancer therapies progresses^[@CR31],[@CR36]^.\n\nHerein, we investigated the effect of Amblyomin-X intratumoral injection in horse melanomas, followed by interactome and transcriptome analyses conducted to understand genes modulation and respective enriched pathways. ", "The data suggest that Amblyomin-X modulates several pathways responsible for tumor cell death and its immune microenvironment. ", "Moreover, transcriptome analysis suggests potentially yet unknown DEGs and novel target pathways, mainly in relation to the responses of the immune system.", "\n\nResults {#Sec2}\n=======\n\nEquine melanoma regression upon treatment with Amblyomin-X {#Sec3}\n----------------------------------------------------------\n\nWe injected Amblyomin-X intratumorally, at 1 mg/kg of the tumor mass, on each third day, during 28 days, and followed the tumor volume evolution and clinical animal conditions by over a period of 5 months. ", "We treated some selected tumors in the ventral tail of four animals by following three groups: treated (Amblyomin-X), and two control groups, vehicle (PBS) and untreated (see Materials and Methods). ", "Tumor dimensions were recorded before each injection and calculated the relative volume means related to the initial volume (Fig.", " [1](#Fig1){ref-type=\"fig\"}). ", "In all cases Amblyomin-X treatment promoted a reduction of at least 75% in tumor volume at the end of the treatment period (one month). ", "Tumor \\#5 (from animal number 417) completely disappeared after 12 days under treatment, while tumors from another animal (number 795) continued to show volume reduction, even one month after the end of treatment. ", "Interestingly some animal control tumors (untreated and PBS-injected vehicle), that were in proximity to tumors treated with Amblyomin-X, also showed regressions in tumor size, which might suggest an indirect effect that could be related to the lymphatic system or recruitment of the immune system cells. ", "In two other animals, control tumors maintained or increased their initial volumes. ", "The evolution curves of each tumor per animal are shown in Fig.", " [2](#Fig2){ref-type=\"fig\"} (see also, Table [S1](#MOESM1){ref-type=\"media\"}). ", "It is worth to mention, that each horse tumor is presented as an independent capsule. ", "We believe that long-term development and shrinkage are similar to all tail horse melanoma tumors, but experiments showed that each tumor responds differently, and we don't know the reason.", "Figure 1*In vivo* animal 797 tumor treatment and excision. ", "We can see on the left (**a**) animal 795 tail and chosen tumors: 1 and 8 as control, 2, 3 and 5 as vehicle, 4, 6, and 7 as treatment; (**b**) horse tail and tumor evolution on day 0, 15, 26 and 90 (excision); (**c**) veterinarian injecting Amblyomin-X solution or PBS in a tumor; and (**d**) T6, one of the excised tumors. ", "Tumors were chosen related to distance and size. ", "Three tumors, with a diameter of around 1.5 cm, were chosen for treatment. ", "About three farthest tumors were chosen as vehicle and other three tumors as control, whenever possible.", "Figure 2This plot shows the percentage volume curves related to the initial volume (0 h). ", "Every three days, Amblyomin-X was injected for about one month's time. ", "Animals 795 and 797 and their tumors were followed for at most 5 months. ", "Treated tumor volume curves were colored red, control tumor volumes green, and vehicle tumor volumes blue, for animals 417 in (**a**), 438 in (**b**), 795 in (**c**) and 797 in (**d**). ", "Each treated curve shows a decrease in tumor volumes. ", "Vehicle and control animals also showed a decrease in tumor volumes for animals 417 and 438. ", "Animals 795 and 797 showed either a constant or increased volume related to the initial volume. ", "Since each tumor has its own history and fate, the rate of decrease is unpredictable.", "\n\nClinical evaluation and biochemical parameters {#Sec4}\n----------------------------------------------\n\nGlobal biochemical parameters *i.e*. ", "urea, creatinine, TGO (AST, aspartate aminotransferase), GGT (gamma-glutamyl transferase), BT (total bilirubin), BD (direct bilirubin), BI (indirect bilirubin), FAL (alkaline phosphatase) and ALB (Albumin) were all within normal limits during and after treatment termination. ", "We have observed no adverse effects in the animals used in our study (Table [S2](#MOESM1){ref-type=\"media\"}).", "\n\nHistological analysis {#Sec5}\n---------------------\n\nHistological analysis of untreated and treated tumors showed proliferation of atypical and hyperpigmented melanocytes, presence of numerous macrophages phagocytizing melanin, but only a few perivascular lymphocytes (Fig.", " [3](#Fig3){ref-type=\"fig\"}). ", "Tumor treated for 28 days (animal 797, tumor 6), showed regression areas represented by the absence of atypical melanocytes, only remaining melanophages (Fig.", " [3d](#Fig3){ref-type=\"fig\"}).Figure 3*In vivo* histology. ", "Distinct histopathological slides are presented. (**", "a**) animal 438, tumor 2, vehicle excised on day 28 -- an untreated tumor showing melanophages and many atypical melanocytes. (**", "b**) and (**c**) animal 797, tumor 3, vehicle excised at day 28 -- an untreated tumor showing less atypical melanocytic cells. (**", "d**) animal 797, tumor 6, treated with Amblyomin-X and excised at day 28 -- regression areas showing only melanophages can be seen.", "\n\nBioinformatics {#Sec6}\n--------------\n\n### Mapping and differential expression {#Sec7}\n\nAlignment and read count resulted in 269,991 transcripts, displayed in a matrix with horse Ensembl IDs as rows and 18 samples as columns, of which we removed two with low library size, both related to 12 h samples. ", "We also excluded lowly expressed genes. ", "We used edgeR to calculate the normalized expression table in CPM and BioMaRt to find horse-to-human ortholog coding genes, which yielded 14.414 transcripts, of which 13,138 transcripts had valid gene symbols for horse and 13,943 for human. ", "There were more symbols for human genes due to paralog-ortholog conversion. ", "For horse transcripts, there were 546 DEGs for 6hx0h and 259 DEGs for 12hx0h (Table [S3](#MOESM1){ref-type=\"media\"}). ", "Those DEGs having human orthologs were 546 for 6hx0h and 259 for 12hx0h. ", "We could not find DEGs for the 12hx6h comparison, probably because gene expressions between these time points are somehow very close.", "\n\n### Pathway analyses {#Sec8}\n\nMetacore pathway enrichment analysis found 196 pathways for 6hx0h and 67 pathways 12hx0h. ", "The same analysis can be seen using Reactome, String-db with KEGG, and String-db with GO Biological Processes (Table [S4](#MOESM1){ref-type=\"media\"}).", "\n\nWe classified the enriched pathways according to the words in each pathway description name that may represent a function or have a gene symbol (Fig.", " [S1a](#MOESM1){ref-type=\"media\"}). ", "We also ranked these pathways regarding how strongly modulated they were (delta of the sum of LFC = sum of LFC for 6hx0h minus sum of LFC for 12hx0h, for all genes in the pathway), resulting in positive values for pathways more strongly modulated for 6hx0h compared to 12hx0h, negative if more strongly modulated for 12hx0h compared to 6hx0h, and similar if the modulations were close to each other (Table [S5](#MOESM1){ref-type=\"media\"}). ", "For instance, the Innate Immune System (IIS) class comprised 26 pathways, of which 19 had genes more strongly modulated for 6hx0h, 3 for 12hx0h, and 4 were equally modulated (Fig.", " [S1b--d](#MOESM1){ref-type=\"media\"}). ", "According to the pathway classification, we have found that \"immune system\" was the class with more enriched pathways (80 pathways), according to Metacore, followed by \"signaling\" (55 pathways), \"lung\" (37 pathways), \"canonical pathway\" (31 pathways), \"innate immune system\" (26 pathways), \"inflammation\" (23 pathways), \"cancer\" (22 pathways), \"muscle\" (18 pathways), and \"adhesion/ECM/cytoskeleton\" (15 pathways).", "\n\nFigure [S1b](#MOESM1){ref-type=\"media\"} shows 6hx0h higher modulated pathway classes, where immune system, pathway signaling, (lung) inflammation, innate immune system, canonical pathway, cancer, disease, migration/invasion/motility, adhesion/ECM/cytoskeleton, apoptosis, muscle, immunogenic cell death, virus responses, and stress, stand out as the most important pathway classes for this condition.", "\n\nFigure [S1c](#MOESM1){ref-type=\"media\"} shows 12hx0h higher modulated pathway classes, however only a few pathways can be seen such as adhesion/ECM/cytoskeleton, lung, muscle, immune system, receptor pathways, signaling pathways, innate immune system, migration/invasion/motility, and cancer, resulting in a weaker response for 12hx0h when compared to 6hx0h.", "\n\nFinally, fig.", " [S1d](#MOESM1){ref-type=\"media\"} shows classes with similar responses for 6hx0h and 12×0h, including immune system, pathway signaling, canonical pathways, development, complement, muscle, cancer, dermis, and innate immune system.", "\n\nIn summary, most of the pathways were related to cell stress, innate immune response/inflammation, cytokines, cell damage/endothelial, neutrophil, apoptosis, ECM, cell adhesion, muscle, T-help, complement, and coagulation. ", "Therefore, pathway classes were divided into three groups: a) first responses (ER-stress and IIS); b) confounding factors; and c) secondary responses (Table [1](#Tab1){ref-type=\"table\"}). ", "Herein, confounding factors are denoted as enriched pathways, and part of the expression of their modulated genes, observed not probably due to the drug action, but mainly due to the stress and wounds caused by the injections. ", "Next, we summarize the results highlighting pathways. ", "In the text below, all pathway classes are written in bold.", "Table 1Selected enriched pathways that represent genes and important functions related to the *ex vivo* experiment.a -- first responses**FunctionalPathwayDEGs(6hx0h)DEGs(12hx0h)**ER-stressHCV-mediated liver damage and predisposition to HCC via cell stressCALR, CASP3, CYCS, HSP90B1, HSPA5, HSPD1, IL1R1, IL6, IL6ST, ITPR1, SOD2, STAT3, XBP1Endoplasmic reticulum stress response pathwayCYCS, HSP90B1, HSPA5, ITPR1, SOD2, XBP1Role of PKR in stress-induced antiviral cell responseCASP3, EIF2AK2, IL1B, IL1R1, IL6, IL8, STAT1, TLR2EIF2AK2, IL1B, IRF7, STAT1, TLR2TLR (IIS)HSP60 and HSP70 - TLR signaling pathwayHSPA5, HSPA6, HSPA8, HSPD1, IL1B, IL6, IL8, TLR2RLR (IIS)Innate immune response to RNA viral infectionDDX58, DHX58, IFIH1, IRF7OSM (IIS)Oncostatin M signaling via JAK-StatIL6ST, OSMR, SERPINA3, SOCS3, STAT1, STAT3, TIMP1SOCS3, STAT1, TIMP1Oncostatin M signaling via MAPKIL6ST, LDLR, MMP3, OSMR, STAT1, TIMP1OAS/RNase L (IIS)Antiviral actions of InterferonsEIF2AK2, IRF9, OAS2, STAT1, WARSEIF2AK2, IRF9, MX1, OAS1, OAS2, STAT1**b -- confounding factorsFunctionalPathwayDEGs(6hx0h)DEGs(12hx0h)**NeutrophilInhibition of neutrophil migration by proresolving lipid mediators in COPDACTN2, C5AR1, CD34, CXCR2, FPR2, IL1B, IL1R1, IL8, ITPR1, PRKCQ, PTAFR, TLR2ACTN2, CXCR2, IL1B, PRKCQ, TLR2EosinophilEosinophil chemotaxis in asthmaC3, CCL7, CXCL10, CXCR2, NGFCell adhesionECM remodelingIGFBP4, IL8, MMP3, PLAUR, SERPINE1, TIMP1Integrin inside-out signaling in neutrophilsCXCL1, CXCR2, IL8, ITPR1, LYN, PTAFR, RASGRP2, SELE, SELPMuscleMuscle contraction: Delta-type opioid receptor in smooth muscle contractionITPR1, MYH8, PENKMYH8, PENK**c -- secondary responsesFunctionalPathwayDEGs(6hx0h)DEGs(12hx0h)**InflammationRelease of pro-inflammatory factors and proteases by alveolar macrophages in asthmaCXCL1, IL1B, IL6, IL8, MMP3, STAT1, TIMP1, TLR2CXCL10, IL1B, STAT1, TIMP1, TLR2Release of pro-inflammatory mediators and elastolytic enzymes by alveolar macrophages in COPDCTSL, IL1B, IL6, IL8, STAT1, TLR2CTSL, CXCL10, IL1B, STAT1, TLR2Inflammatory mechanisms of pancreatic cancerogenesisCD46, CXCL1, CXCR2, IL1B, IL1R1, IL6, IL8, STAT1, STAT3IL-1IL-1 signaling pathwayBIRC3, CCL7, CXCL1, IL1B, IL1R1, IL6, IL8, PTGES, STAT1, ZC3H12AThe innate immune response to contact allergensHSPA5, HSPA6, HSPA8, IL1B, IL1R1, IL6, IL8, TLR2Cell migrationChemotaxis: CCL16-, CCL20-, CXCL16- and CCL25-mediated cell migrationITPR1, MMP11, MMP3, MMP8Cytoskeleton remodelingCytoskeleton remodeling: Regulation of actin cytoskeleton organization by the kinase effectors of Rho GTPasesACTN2, MYH8ACTN2, MYH8Apoptosis & SurvivalEndoplasmic reticulum stress response pathwayCYCS, HSP90B1, HSPA5, ITPR1, SOD2, XBP1Apoptosis and survival: CXCR3-B signalingCASP3, CYCS, HMOX1, ITPR1, RYR1, STAT3Apo-2L(TNFSF10)-induced apoptosis in melanomaCASP3, CASP4, CYCS, IL8, XBP1Interferon-alpha/betaIFN-alpha/beta signaling via JAK/STATEIF2AK2, IFIT3, IL1RN, IRF9, ISG15, SOCS3, STAT1, STAT3CXCL10, EIF2AK2, IFIT3, IFITM1, IL1RN, IRF7, IRF9, ISG15, ISG20, OAS1, SOCS3, STAT1, XAF1IFN-alpha/beta signaling via MAPKsEIF2AK2, IFIT3, IRF9, ISG15, PRKCQ, STAT1, ZBTB16CXCL10, EIF2AK2, IFIT3, IRF7, IRF9, ISG15, PRKCQ, STAT1The four columns are the functions, pathways, enriched DEGs for 6hx0h comparison and for 12hx0h comparison, respectively. ", "The table was divided into A, B, and C, for pathways classified as \"ER-Stress and IIS\", \"confounding factors\", and \"secondary responses\", respectively.", "\n\n**ER-stress** was inferred due to the enriched pathways such as \"HCV-mediated liver damage and predisposition to HCC via cell stress\", \"Endoplasmic reticulum stress response pathway\", and \"Role of PKR in stress-induced antiviral cell response\". ", "For **Immune System**, six innate immune system responses were found: TLR pathway, RIG-I-like Receptors (RLR), Oncostatin-M pathway, OAS/RNase L pathway, Neutrophil, Eosinophil pathways.", "\n\n**TLR** was inferred due to the enriched \"HSP60 and HSP70 - TLR signaling pathway\"; **RLR** due to the enriched \"Innate immune response to RNA viral infection\" pathway; and **Oncostatin-M** due to the enriched \"Antiviral actions of Interferons\" pathway.", "\n\nFor the present study, **Neutrophil, Eosinophil** and **Complement** are termed as confounding factors, since these biological functions are related to the damage caused by the intratumoral injections, activating \"endothelial damage\" and \"wound healing\" pathways. ", "Another confounding factor is **Muscle contraction**, to be discussed later. ", "All data related to these pathways can be seen in Table [1B](#Tab1){ref-type=\"table\"}.", "\n\nIn addition, **ER-stress** and **Innate Immune Responses** should activate many secondary responses like Inflammation, IL-1, Cell migration, Cytoskeleton remodeling, Apoptosis & Survival, and Interferon-alpha/beta. **", "Inflammation** was inferred due to the enriched pathways related to macrophages: \"Release of pro-inflammatory factors and proteases by alveolar macrophages in asthma\", \"Release of pro-inflammatory mediators and elastolytic enzymes by alveolar macrophages in COPD\", \"Inflammatory mechanisms of pancreatic cancerogenesis\", \"Immune response_IL-6-induced acute-phase response in hepatocytes\", and \"Immune response_TREM1 signaling pathway\"; and **IL-1** was inferred due to enriched pathways: \"IL-1 signaling pathway\" and \"The innate immune response to contact allergens\".", "\n\nMoreover, **Cell Migration** was inferred due to the enriched \"Chemotaxis: *CCL16*-, *CCL20*-, *CXCL16*- and *CCL25*-mediated cell migration\" pathway; and **Cytoskeleton Remodeling** was inferred due to the enriched \"Cytoskeleton remodeling: Regulation of actin cytoskeleton organization by the kinase effectors of Rho GTPases\" pathway. ", "Finally, **Apoptosis & Survival** was inferred due to enriched \"Endoplasmic reticulum stress response pathway\", \"Apoptosis and survival: CXCR3-B signaling\", and \"Apo-2L(TNFSF10)-induced apoptosis in melanoma\" pathways; and **Interferon-alpha/beta** was inferred due to the enriched \"Immune response: IFN-alpha/beta signaling via JAK/STAT\" and \"Immune response: IFN-alpha/beta signaling via MAPKs\" pathways.", "\n\nNetwork analyses {#Sec9}\n----------------\n\nWith the application of String-db, 93 enriched pathways for 6hx0h and 59 for 12hx0h were found. ", "String-db allows for the calculation of protein-protein interaction (PPI) networks, and with igraph^[@CR37]^ it was possible to figure out the connectivity index (k) and betweenness centrality (g) (Table [S6](#MOESM1){ref-type=\"media\"}). ", "Next, Gephi was used to cluster genes according to the modularity index (community detection algorithm) with a resolution of 1.2 and the use of weights. ", "The result can be seen in Table [S7](#MOESM1){ref-type=\"media\"} and respective networks can be seen in Fig.", " [4](#Fig4){ref-type=\"fig\"}, where the main enriched pathways could be achieved using all clustered DEGs and Reactome to find the enriched pathways. ", "Node colors were obtained using modularity classes for nodes clusterization, their sizes are proportional to the degree of connectivity and the label size is proportional to the betweenness centrality.", "Figure 4Network analysis. ", "Gephi clusterized DEGs according to the modularity index with resolution of 1.2 and using weights, and respective enrichment analyses were done using Reactome. ", "On the left (**a**) are all DEGs related to 6hx0h comparison, and 9 clusters could be defined related to Immune System, Transport & Cytochrome C, Antiviral pathways (RLR), GPCR pathway, UPR, rRNA processing & metabolism of nucleotides, Cell junction & cell-cell communication, muscle & ion homeostasis, and Circadian pathway & Ubiquitination. ", "On the right (**b**) are DEGs related to 12hx0h comparison, resulting in a smaller network, with seven clusters: Innate Immune System responses, Cell cycle pathways, Neutrophil Degranulation, ESR-mediated signaling, Muscle, Circadian Clock, and rRNA processing.", "\n\n*In-silico* crosstalk simulation {#Sec10}\n--------------------------------\n\n### Crosstalk between pathways {#Sec11}\n\nFive different possible crosstalks were simulated: a) adhesion-ECM-cytoskeleton versus remodeling versus stress, b) ICD versus apoptosis versus ER-chaperone-Golgi, c) cancer versus complement versus inflammation, d) IIS versus apoptosis\" versus autophagy, and e) angiogenesis-vascular versus hypoxia versus stress. ", "For this purpose we used Circlize R package.", "\n\nAll five crosstalks showed a strong interaction between genes related to different biological functions; additionally, there were genes that participate simultaneously in different functions (pleiotropy). ", "Only autophagy was not seen, possibly because it is not based on a phenomenon of transcriptional modulation. ", "Crosstalk analysis between Innate Immune System x Apoptosis x Autophagy can be seen in Fig.", " [5](#Fig5){ref-type=\"fig\"}, and respective enriched gene modulations in Fig.", " [6](#Fig6){ref-type=\"fig\"} (other crosstalks can be seen in Fig.", " [S2](#MOESM1){ref-type=\"media\"}, and respective heatmap, dotplot, and spaghetti plots in Fig.", " [S3](#MOESM1){ref-type=\"media\"}). ", "There is a stronger interaction between genes for 6hx0h compared to 12hx0h. ", "All circlize plots have more genes and are more connected for 6hx0h compared to 12hx0h, demonstrating a strong response at 6 h, diminishing at 12 h.Figure 5Crosstalk between three pathway classes. ", "To better visualize the crosstalk between DEGs, we downloaded the String-db PPI table and filtered only interactions with scores greater than or equal to 0.4. ", "On the left (**a**) is the crosstalk between DEGs related to innate Immune system, apoptosis and autophagy, with all 59 DEGs well connected, which leads to the inference that IIS and Apoptosis have common genes to work properly, or to be activated. ", "Only autophagy was a less significant pathway, not observed until 12 h by transcriptome analysis. ", "We can see on the right (**b**) all 28 DEGs for 12hx0h, with fewer genes and interactions comparing to 6hx0h. ", "Near each gene are its possible pathways like 'iis' (innate immune system), 'ap' (apoptosis), and 'aut' (autophagy). ", "In supplementary material other four distinct crosstalks can be seen (Fig. ", "S2).Figure 6Heatmap and dotplot for the innate immune system (**a,b**), apoptosis (**c,d**), and autophagy (**e,f**). ", "There are 59 genes related to the Innate Immune System and most of them were upregulated. ", "Here, hierarchical cluster analysis shows 6 h samples mixed with 12 h samples, but completely apart form 0 h. Genes like *CXCL10, IRF7, OAS21, IFH1, IFITM1, MX1, OAS2, XAF1, DDX58, IRF9*, and *ISG20* are more upregulated at 12 h than 6 h, meaning that RLR and OAS pathways responses are increasing in time. ", "Genes like *MYL1, MYH8*, and *ACTN2* are downregulated, the first two with higher modulation at 6 h, and the latter at 12 h. Apoptosis split very well the 3 time points, besides sample A4T2h6 sample, related to 6 h, is closer to 12 h. Many apoptotic genes were upregulated, except *RYR1*, with a high modulation for *SOD2*, *HSPA6* and *IL1β*. ", "Genes related to autophagy could not enrich the \"autophagy pathway\", but *IL6, IL1β, CASP3, IL6ST, ALPL*, and *IL8 were* upregulated DEGs, and *MYL1* and *MYH8* were downregulated DEGs.", "\n\n### CEMiTool/WGCNA coexpression analysis {#Sec12}\n\nPerforming coexpression of genes modulated by Amblyomin-X treatment using CEMiTool, yielded 33 modules named M1 to M32, and an additional one called not-correlated (Table [S8](#MOESM1){ref-type=\"media\"}). ", "Enrichment analysis was calculated on these modules using KEGG, Reactome, WikiPathways and Gene Ontology (GO), which resulted in a predominance of signaling pathways related to muscle, interleukins, and response to virus infection. ", "Interestingly, some of the genes enriched for these pathways were positioned just after the DEG definition threshold.", "\n\nFor instance, 7 genes (*ISG15*, *CASP10*, *CASP8*, *TNF*, *DHX58*, *TRAF3*, and *IRF7*) were found, related to KEGG RIG-I-like receptor signaling pathway/RIG-I-like Receptor Signaling WP3865 at M13, although only 3 (*ISG15*, *IRF7* and *DHX58*) out of those 7 were DEGs for 12hx0h and only one (*ISG15*) for 06hx0h. ", "Since these genes are clustered in the same module, they showed the same expression pattern.", "\n\nIn this same module M13, seven genes (*IRF1, CASP10, CASP8, TNF, CDKN2A, TRAF3*, and *IRF7*) were related to apoptosis and suggesting that Amblyomin-X has triggered this pathway. *", "HSH2D*, coding for a protein that may be a modulator of the apoptotic response through its ability to affect mitochondrial stability^[@CR38]^, was one of the main intramodular hubs in this module. ", "Another intramodular hub in module M13 is *ORM1*, coding for a member of the lipocalin family of proteins, with a function in modulating the innate immune system in events of acute phase inflammation, and known to bind synthetic drugs^[@CR39]^. *ORM1* is also a DEG for 06hx0h and 12hx0h comparisons. ", "The interaction hub in module M13 was *SMURF1*, which promotes ubiquitination and subsequent proteasomal degradation of *MAVS*^[@CR40]^ and plays a role in dendrite formation by melanocytes^[@CR41]^.\n\nIn module M9, 13 genes (*H2AFZ, HLA-B, HLA-C, HLA-F, PSMA7, PSMB1, PSMB2, PSMB3, PSMB6*, *PSMC3, PSMC4, PSMD8*, and *UBE2D2*) were found, enriched by WikiPathways for \"Proteasome Degradation\" (WP183 from WikiPathways), and 16 (*ASB1*, *ASB8*, *KEAP1 PSMA7*, *PSMB1*, *PSMB2*, *PSMB3*, *PSMB6*, *PSMC3*, *PSMC4*, *PSMD8*, *RNF138*, *RNF217*, *UBE2D2*, *UBE2M*, and *TRAF7*) enriched by Reactome for \"Antigen processing: Ubiquitination & Proteasome degradation\". ", "None of which are DEGs, but still following the same pattern of increase in expression over time. ", "We expected such a phenomenon with Amblyomin-X treatment^[@CR19]^.\n\nIn module 9, the major intramodular hub is *PRELID1*, involved in the modulation of the mitochondrial apoptotic pathway by ensuring the accumulation of cardiolipin (CL) in mitochondrial membranes. ", "One of the interaction hubs in this module is *UBE2M*, one of the ubiquitin-conjugating enzymes. ", "The encoded protein is linked with the ubiquitin-like protein *NEDD8*, which can be conjugated to cellular proteins, such as Cdc53/Culin.", "\n\n### Cellular interaction partners of Amblyomin-X {#Sec13}\n\nIdentification of cellular interacting partners is critical to understand the initial process originated by Amblyomin-X, resulting in modulation of pathways at the later stage of the route. ", "Therefore, we obtained the equine melanoma cellular interactomics profile for Amblyomin-X by co-precipitation. ", "Multiple potentially interacting proteins were identified in eluent fraction that bound to immobilized Amblyomin-X. The list of proteins is shown in Table [S9](#MOESM1){ref-type=\"media\"}, including unique identifiers and the number of peptides. ", "Interestingly, we found proteins related to biological effect previously reported in Amblyomin-X studies, such as apoptosis, mitochondrial dysfunction, regulation of cell migration and protein clearance, which includes cytochrome-c, plasminogen, actin cytoplasmic 1, fibronectin, heat shock protein HSP 90-alpha, E3 ubiquitin-protein ligase Mdm2, mitochondrial superoxide dismutase, and vimentin^[@CR15],[@CR18],[@CR42],[@CR43]^. Furthermore, we identified immunogenic proteins such as Toll-like receptor 2 (*TLR2*) and T-cell surface antigen CD2 (*CD2*) as interacting partners of Amblyomin-X.\n\n### Validation of RNA-Seq results through qRT-PCR {#Sec14}\n\nThis study selected 56 DEGs related to innate immune response, apoptosis and inflammation for validation with qRT-PCR. ", "Next, these genes were classified into 3 groups, according to the median expression: highly expressed (one of the median expressions greater or equal to 50 CPM), moderately expressed (not lowly neither highly expressed) and lowly expressed (all expressions less than 5 CPM) (Table [S10](#MOESM1){ref-type=\"media\"}). ", "Forty-two (42) out of these 56 genes were chosen for qRT-PCR validation (Fig.", " [S4](#MOESM1){ref-type=\"media\"}). ", "The correlation between qRT-PCR LFC for 6hx0h and RNA-Seq LFC for 6hx0h (Table [S11](#MOESM1){ref-type=\"media\"}) was 80.2%, and the correlation between qRT-PCR LFC for 12hx0h and RNA-Seq LFC for 12hx0h was 81.5% (Fig.", " [S5](#MOESM1){ref-type=\"media\"}).", "\n\nDiscussion {#Sec15}\n==========\n\nAmblyomin-X treatment reduced equine melanoma tumor size, after which we investigated modulated genes and enriched pathways. ", "The study considered as confounding factors: the pathways related to needle tissue injury as wound healing, the increase in tumor volume as hypoxia, and the vein injury as vascular endothelial cell damage. ", "Although real, these processes were probably not the reason for the decrease in tumor volumes since many tumors treated with vehicle did not show a decrease in size.", "\n\nOur results validated previous uses of Amblyomin-X against several tumor cell lines including skin melanoma^[@CR15]--[@CR18],[@CR42]^ like ER-stress, Mitochondria-stress, and Apoptosis. ", "It is important to note that the transcriptome results presented herein are the mean cell expression values in the tumor's core, a complex system composed of many distinct normal cells surrounding tumor cells. ", "It is also necessary to observe that pleiotropic effects can deceive the expression of some DEGs related to these functions. ", "For instance, Actins and Calcium ion play an important role in pathways such as Endoplasmic Reticulum Stress (ER-stress), Cytoskeleton remodeling, and Muscle contraction, and IL-8 plays a role in endothelial damage and inflammation response. ", "Since we are interested in the orchestrated responses between Immune System, Inflammation, Apoptosis, ER-stress and Cytoskeleton remodeling, any actin or calcium ion release, belonging only to muscle processes, would confound our inferences. ", "Taken the above into consideration, we presented the most statistically significant genes and pathways modulated by Amblyomin-X (see also supplementary material).", "\n\nFigure [7](#Fig7){ref-type=\"fig\"}, a simplified model of the tumor microenvironment, shows the Amblyomin-X molecule in the extracellular medium. ", "That allows us to hypothesize on how some pathways are interrelated and evolve in time. ", "Amblyomin-X is able to enter cancer cells that expose phosphatidylserine on the external membrane, entering by endocytosis, and promoting ER-stress through the proteasome inhibition (PI) or other unknown processes. ", "Next, a series of related phenomena are observed, like Unfolded Protein Response (UPR), Mitochondria-stress and Apoptosis. ", "We also hypothesize that in parallel or due to the cell stress, a second phenomenon of exosomes transport^[@CR44]^ occurs between these cells or, less likely, the activation of retrovirus transcription in cancer cells^[@CR45]^. Both processes release viral RNA that interact with viral RNA sensors (*RIG-I, LGP2, MDA5*, and *DDX60*) activating the RLR pathway, which has three outcomes: a) apoptosis through *PMAIP1* (*NOXA*); b) interferon transcription, through *TBK1, IRF3*, and *IRF7;* and c) cytokines transcription (*IL1β, IL-6, IL-8, IL12, IP10*, and *TNF-α*) through *NF-κB*. ", "Related to the NF-κB path, *IKB* must be degraded by the proteasome in order to *NF-κB* to migrate to the nucleus, however, we just hypothesized that the proteasome was inhibited. ", "Taking this into account, the transcription of these cytokines should decrease in melanoma cells. ", "However, other cells, like macrophages, will be able to transcribe these cytokines after RLR signaling activation. ", "Therefore, some melanoma cells will be unable to sustain the cytokine transcription, but paracrine signaling will be present and RLR sensors transcription will be boosted, as well as the inflammatory response, and probably M1 and M2 polarization starts. ", "As mentioned before, these signaling crosstalk should increase the inflammatory response, and also *TREM1* and IL-6-induced acute-phase response (downstream *ORM1, SERPINE1, CXCL1, and C3)* pathways will be activated.", "Figure 7Schematic overview of a simplified tumor environment model. ", "Melanoma, Macrophage, and Fibroblast (stroma) are possibly the main cells interacting through cytokines, exosomes, and other signaling proteins. ", "Herein, we postulate that some Melanoma cells enter in ER-stress state because Amblyomin-X was internalized, next mitochondria stress and cytoskeleton remodeling occur, and finally, apoptosis and survival duel are the final outcomes. ", "Concomitant, IIS pathways are activated in melanoma cells, first by the RLR responses, possibly sensing RNA molecules originating from fibroblast exosomes^[@CR44]^ or being transcribed from endogenous retroviral elements^[@CR45]^. IFN type I and NOXA transcriptions were not seen, but many cytokines (*IL1β, IL-6, IL-8, IL12, IP10*, and *TNF-α*) were DEGs, and their proteins were likely to have been produced and released to extracellular medium. ", "Many macrophage signaling pathways were enriched, and their transcribed cytokines are *IL1β, IL-6, IL-8, CCL2, CXCL1, CXCL10 (IP10)*, and *TNF-α*, all DEGs. ", "Possibly the production of some of these proteins results in M1 and M2 polarization, since *STAT1, STAT3*, and *SOCS3* were also DEGs. ", "These macrophage cytokine releases should lead to many processes, including a crosstalk to Fibroblast, but mainly, the feedback to RLR pathway and the inflammatory response, see text. ", "All these inferences were made according to Metacore algorithms, references, and database.", "\n\nInteresting evidence was the simultaneous activation of different innate immune system pathways, increasing the expression of many DEGs related to RLR, OAS, TLR and Oncostatin-M pathways. ", "Observing Fig.", " [6a,b](#Fig6){ref-type=\"fig\"}, most of the DEGs related to IIS have a maximum fold-change at 6 h, decreasing their expressions at 12 h, but still remaining DEGs; besides *CXCL10, IRF7, OAS1, IFIH1, DHX58, MX1, OAS2, XAF1, DDX58, IRF9, ISG20, CCL7* (or *CCL2*, ortholog), *TIMP1, ISG15, ZBTB16, MYH8, RASGRP2*, and *CD34* increasing their expression after 6 h, perhaps boosting the IIS response. ", "In Fig.", " [6c,d](#Fig6){ref-type=\"fig\"}, most of the genes related to apoptosis have also a higher expression at 6 h; therefore, we cannot infer causality between IIS and Apoptotic genes and pathways.", "\n\nWe hypothesize that *PKR (EIF2AK2)* is a central hub related to the innate immune system pathways, supporting the transcription of inflammatory cytokines. ", "As mentioned before, macrophages continuously induce the transcription of *IL1β, IL-6, IL-8, CXCL1*, *CXCL10*, and *TNF-α*, the last of which was moderately expressed. *", "CXCL10* probably stimulates monocytes, NK cells, and T-Cells or plays a role in modulating adhesion genes. ", "Interferons type 1, *IFNα* and *IFNβ*, should be transcribed through one of the RLR pathway-branches - via *TBK1, IRF3*, and *IRF7 -* but we could not observe any transcript expression^[@CR46],[@CR47]^. It is also important to highlight that *TMEM173* (*STING*) was moderately expressed and not modulated, and *PMAIP1* (*NOXA*), an important gene related to the Bortezomib pathway, was not transcribed. ", "These results demonstrated that Amblyomin-X follows different routes.", "\n\nAnother important pathway was Cytoskeleton remodeling, enriched for 6hx0h. ", "Interestingly Öhman *et al*.^[@CR48]^ described the crosstalk between many RLR proteins and Actin and Tubulin proteins close to the mitochondria. ", "In our results *ACTN1* and *ACTR3* are upregulated DEGs; *ACTA1* and *ACTN2* are highly downregulated DEGs; and regarding Tubulin family, *TUBB* and *TUBB6* are upregulated DEGs.", "\n\n\"Oncostatin M signaling via JAK-Stat\" or \"Oncostatin M signaling via MAPK\" pathways are related to the ligand *OSM* (Oncostatin M) and their receptors. *", "OSM* is a cytokine member of the leukemia inhibitory factor/oncostatin-M (*LIF*/*OSM*) family and a growth regulator with important roles in inflammation and tumor growth inhibition. *", "OSM* effector was not a DEG showing low expression, but its receptors were DEGs (*OSMR* and *OSM receptor*). ", "Downstream, *TIMP1*, a Metalloproteinase inhibitor, seems to inhibit *MMP1* trying to stop ECM remodeling; *CCL2* (or *CCL7*, its horse ortholog gene) increases inflammation signal and *SERPINE3*, a plasma protease inhibitor, probably regulates inflammatory response.", "\n\nAmblyomin-X modulates ER-stress, mitochondria dysfunction, and apoptosis {#Sec16}\n------------------------------------------------------------------------\n\nMany apoptotic signals were high at 6 h (*CASP3*, *CASP4*, and *CYCS*) and their expression lowered at 12 h. Survival signals showed the same behavior (*BIRC2*, *BIRC3*, *ATF6*, and *SOD2*); besides; *SOD2* (up for 6hx0h, and up for 12hx0h), was the only pro-survival signal which is upregulated at both times. ", "At 6 h cytochrome-c (*CYCS*) was upregulated, which shows a possible mitochondrial damage. ", "Calpain 2 (*CAPN2*) and *HSP60*, the latter was a DEG, and *BAX* (verified in previous *in vitro* experiments) support this hypothesis. ", "We assume that ER-stress shows a peak close to 6 h since *GRP78*, *IP3R1*, *ATF6*, *XBP1*, *PDIA6*, and *HSP90B1* were upregulated at this time. ", "Since the treatment can kill some cells and allows others to survive, we hypothesized that it also activates immunogenic cell death (ICD) mechanisms via ER-stress with the release of *HMGB1* and *CALR* (calreticulin), an important DEG at 6 h, which can be found close to ER, in the inner side of the cell membrane, and also on the external side. ", "According to Jheng *et al*.^[@CR49]^, we could map autophagy upstream signals related to ER-stress with the following genes: *CASP4*, *CASP12*, *JNK*, *ATF6*, *CHOP*, *ATF4*, *EIF2AK3* (*PERK*), *EIF2A*, and *GADD34*. ", "Many of them were well expressed, but not modulated. ", "Therefore, autophagy may start later, since it was not enriched, or may even not start (see Fig.", " [6](#Fig6){ref-type=\"fig\"}). ", "Since Amblyomin-X can inhibit the proteasome machinery, some proteins accumulate nearby ER and new chaperones were transcribed (*HSPD1* (*HSP60)*, *HSPA4* (*HSP70)*, *HSP90AA1* (*HSP90*)) resembling what the UPR, an important mechanism belonging to ER-stress pathway. ", "HMGB1-RAGE signaling pathway was also enriched, indicating that it is possibly another effector inducing the transcription of *IL6*, *IL1β*, *CXCL8 (IL8*), *IL1RN*, *SERPINE1* (*PAI1*) and *CHGA* (Chromogranin A). ", "The data was supported by the interactomics profile of Amblyomin-X, in which the binding partners identified were proteins such as cytochrome-c, plasminogen, actin cytoplasmic 1, fibronectin, heat shock protein HSP 90-alpha, E3 ubiquitin-protein ligase, mitochondrial superoxide dismutase, and vimentin.", "\n\nIn conclusion, Amblyomin-X is an antitumor molecule because it acts on multiple cellular targets to induce tumor cell death. ", "It selectively enters only cancer cells via endocytosis, binding to the external membrane attracted by phosphatidylserine affinity, and thereafter, inside the cell, modulates its microenvironment. ", "Amblyomin-X activates the ER- and mitochondria-stress pathways followed by apoptosis and survival responses. ", "There is also a crosstalk between proteasome inhibition and ER-stress that must be further studied. ", "The activation of the innate immune pathways inducing pro-inflammatory cytokines and chemokines was observed, but the initial cause is still unknown. ", "Interferons type I transcription were expected to be seen, but an unknown process inhibits it. ", "We believe that a more detailed data acquisition between 0 h and 6 h will elucidate some processes and their causes. ", "In summary, the horse melanoma tumor model shed light on new genes, pathways, and crosstalks among them, showing to be a useful tool in which our new outcomes must be validated, in the future, in human melanoma experiments.", "\n\nMethods {#Sec17}\n=======\n\nThe whole experiment was divided in: a) *in vivo* melanoma tumor treatment for a month and follow-up with clinical lab tests for up to five months; b) excision of *in vivo* melanoma tumors for histology; c) e*x vivo* excision melanoma tumors after 0 h (control), after 6 h treatment, and after 12 h treatment followed by interactomics and proteomics (Fig.", " [S6](#MOESM1){ref-type=\"media\"}).", "\n\nExperimental conduct and ethical compliance {#Sec18}\n-------------------------------------------\n\nHorses were housed and treated on the Sao Joaquim farm (Araçariguama, SP, Brazil) of the Butantan Institute (Sao Paulo, SP, Brazil). ", "All animal procedures were previously approved by the internal ethics committee of the Butantan Institute (CEAUIB/BUTANTAN, protocol numbers 1999061115 and 8644050716) and were conducted in compliance with Good Clinical Practice guidelines (European Union Committee for Veterinary Medicinal Products), with the Brazilian National Council of Animal Experimentation Control (CONCEA, DBCA v.12/2016), and with the Brazilian Ministry of Agriculture, Livestock and Supply (MAPA) regulations. ", "Animal husbandry was in compliance with the requirements of national legislation and local animal welfare guidelines (Brazilian Federal Law N° 11794/08). ", "These studies were conducted under veterinary supervision, with veterinary attention available at all times.", "\n\nExpression and purification of recombinant Amblyomin-X {#Sec19}\n------------------------------------------------------\n\nRecombinant Amblyomin-X was produced using an *E. coli* expression system as described previously^[@CR50]^.\n\n*In vivo a*nimal experimental conditions and tumor treatment {#Sec20}\n------------------------------------------------------------\n\nFour male gray horses were the subjects used in the *in vivo* experiments herein studied. ", "The horses, aged between 10 and 20 years, and weighing between 320 and 430 kg, were housed in stables with access to food (ration and green) and water *ad libitum*. ", "Each animal was submitted to a general clinical exam before its inclusion in the experiment. ", "Tumor sizes were recorded and melanoma lesions, which appear spontaneously at the perianal and ventral tail regions, were mapped. ", "Tumor dimensions were measured with a caliper and tumor volumes calculated by approximating a sphere volume, *i.e*., ", "using the formula for sphere volume = 4/3 π x radius 1 x radius 2 x radius^3^ (mm^3^)^[@CR51]^. Deeply infiltrating tumors were rejected for treatment due to possible measurement errors. ", "Volume measurements and excised tumor weight were used to estimate the mean tumor density value, which in turn were used to calculate the Amblyomin-X doses as 1 mg/Kg of tumor mass.", "\n\nOn 4 animals, we selected about 9 tumors, of which 3 were injected with Amblyomin-X every 3 days over a period of 28 days; 3 were injected with the same volume of PBS as a vehicle as often; and 3 were not treated (Table [S12](#MOESM1){ref-type=\"media\"}). ", "Some animals had only 8 tumors available, of which we selected 3 for treatment, 2--3 for control, and the remaining 2--3 for the vehicle.", "\n\nClinical evaluation {#Sec21}\n-------------------\n\nBody weights were recorded immediately before treatment and then after every 15 days until the end of the experiment, using a load-bar scale (TOLEDO^®^ MGR-4000). ", "Blood samples were collected from the jugular vein for hematological and biochemical analysis at time zero and after every 3 weeks until the end of the protocol. ", "Hematological and biochemical parameters were obtained using automated analyzers (BC-2800Vet, Midnray and Cobas-Mira Plus, Roche, respectively). ", "Biochemical parameters included urea, creatinine, TGO (AST, aspartate aminotransferase), GGT (gamma-glutamyl transferase), BT (total bilirubin), BD (direct bilirubin), BI (indirect bilirubin), FAL (alkaline phosphatase) and ALB (Albumin). ", "Reagents used were obtained from Kovalent, Brazil.", "\n\nTumor resection and preservation {#Sec22}\n--------------------------------\n\nFor tumor resection, animals were sedated with 10% xylazine hydrochloride (0.53 mg/kg) and detomidine (10 µg/kg), followed by local anesthesia with 10 mL subcutaneous injection of lidocaine. ", "The incision site was shaved and disinfected it by wiping the skin surface with 0.2% chlorhexidine gluconate alcohol, followed by spraying the local with 79^o^ GL alcohol. ", "After the tumor had been completely removing, the cutaneous wound was sutured and cleaned daily with gentamicin sulfate solution (100 mg/mL) and application of a gentamicin based ointment (Vetagloss, Vetenil Inc., Brazil).", "\n\nHistological analysis {#Sec23}\n---------------------\n\nFor histological analysis, excised tumors were fixed in 10% buffered formalin solution, dehydrated and enclosed in synthetic paraffin, followed by hematoxylin and eosin staining.", "\n\n*Ex vivo* experiment: transcriptome analysis {#Sec24}\n--------------------------------------------\n\nNine horses were selected for the *ex vivo* experiment. ", "Melanoma tumors, in the ventral tail, were selected for transcriptome analysis. ", "Treated tumors were injected with a single dose of Amblyomin-X (1 mg/kg of tumor), being excised 6 hours and 12 hours after the treatment, and controls were untreated tumors being injected PBS at 0 h. For each time-point, two tumors were removed from three different animals, yielding six tumors per time-point for analysis. ", "The transcriptomic design can be seen on Table [S13](#MOESM1){ref-type=\"media\"}.", "\n\nSee supplementary material documentation for RNA extraction and library preparation, Quality and filtering fastq Reads, cDNA synthesis, and qRT-PCR\n\nProtein interactions with Amblyomin-X {#Sec25}\n-------------------------------------\n\nPurified and lyophilized Amblyomin-X (6 mg) was dissolved in 1 ml of 0.2 M NaHCO~3~ containing 0.5 M NaCl, pH 8.3. ", "Proteins were immobilized on a HiTrap™ NHS-activated HP 1 ml column (GE Healthcare Life Sciences) according to the manufacturer's instructions. ", "After this, tissue extract from untreated equine tumor samples were applied to the HiTrap™ Amblyomin-X affinity column. ", "The column was washed with 60 ml of 20 mM Tris-HCl buffer, pH 8.3, to eliminate any non-specific protein interaction. ", "Bound proteins were eluted with 200 mM glycine containing 0.5 M NaCl, pH 4.0. ", "The eluent was extensively dialyzed with 25 mM ammonium bicarbonate and dried in a speed vacuum evaporator (Thermo Scientific). ", "Dried samples were stored at −80 °C or dissolved in 50 mM ammonium bicarbonate, containing 10 mM CaCl~2~ for MS/MS analyses. ", "For protein identification, trypsin hydrolysates samples were injected into an EASY-nano LC system (Proxeon Biosystems) coupled online to an ESI-LTQ-OrbitrapVelos mass spectrometer (Thermo Fisher Scientific), which was operated in a positive mode of ionization using the data-dependent automatic (DDA) survey MS scanned tandem mass spectra acquisition. ", "Peaks Studio 7.5 (Bioinformatics Solutions Inc. Canada) was employed for data acquisition, processing and analyses.", "\n\nBioinformatics and systems biology {#Sec26}\n----------------------------------\n\n### Expression analysis {#Sec27}\n\nIn order to map and quantify transcripts, we used featureCounts from Subread package^[@CR52]^ resulting in a table of gene IDs versus samples with raw read counts. ", "Then, we calculated differentially expressed genes (DEGs) using the edgeR^[@CR53]^ package. ", "Genes with low expression (*i*.*e*., ", "all sample groups having sum of counts less than one CPM, count per million in each) were filtered out. ", "DEGs were calculated with the following comparisons: a) 6 h after treatment (6 h) x control (0 h); b) 12 h after treatment (12 h) x control; and also c) 12 h x 6 h, here named as 6hx0h, 12hx0h, and 6hx12h, respectively. ", "Let define LFC as the log2 of the fold change between two conditions and FDR as the false discovery rate. ", "DEGs were defined as genes with absolute value of LFC \\> = 1 and FDR \\< 0.05. ", "All transcripts were mapped using horse Ensembl Gene ID, followed by BioMaRt tool^[@CR54]^ mapping orthologs between horse gene IDs and human gene IDs (*Homo sapiens* reference genome GRCh38 and annotation version 89).", "\n\n### Enrichment, network, and coexpression analysis {#Sec28}\n\nThree different methods were used for *in-silico* enrichment analysis (Fig.", " [S7](#MOESM1){ref-type=\"media\"}). ", "Pathway Enrichment Analysis (PEA) which uses Over-Representation Analysis (ORA) statistics and databases like Metacore^[@CR55]^, Reactome^[@CR56],[@CR57]^, WikiPathways^[@CR58]^, KEGG^[@CR59]^ and Enrichr^[@CR60],[@CR61]^; Fast Gene Set Enrichment Analysis (fGSEA)^[@CR62]^, and String-db^[@CR63]^ version 11.0 enriching against KEGG, GO^[@CR64]^, and pFam^[@CR65]^.\n\nFor network analysis String-db, a PPI network, was used, setting the minimum score to 0.40. ", "Gephi version 0.9.2^[@CR66]^ was also applied, with DEGs as nodes and edge weights as PPI scores obtained from String-db. ", "In addition, circlize^[@CR67]^ was employed to simulate possible crosstalks between enriched pathways.", "\n\nWGCNA^[@CR68]^/CEMiTool^[@CR69]^ was used for coexpression analysis, as an unbiased technique based on gene-gene expression correlation, setting a minimum of 20 genes per module, and merging modules with correlation coefficient above 0.75. ", "We resorted to BioGrid database^[@CR70]^, including only genes with enough reads, in order to build a PPI network for each module. ", "In each module, intramodular and interaction hubs were respectively identified as coexpression and interaction.", "\n\nSupplementary information\n=========================\n\n {#Sec29}\n\nSupplementary Information. ", "S Table 01. ", "S Table 02. ", "S Table 03. ", "S Table 04. ", "S Table 05. ", "S Table 06. ", "S Table 07. ", "S Table 08. ", "S Table 09. ", "S Table 10. ", "S Table 11. ", "S Table 12. ", "S Table 13. ", "S Table 14.", "\n\n**Publisher's note** Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.", "\n\nSupplementary information\n=========================\n\nis available for this paper at 10.1038/s41598-020-63275-2.", "\n\nThis project was supported by Fapesp grant numbers 2015/50040-4, 2016/13588-4, and 2017/02052-9, São Paulo Research Foundation and GlaxoSmithKline grant 2015/50040-4, BNDES grant 13.2.0711/2013, FAPESP-CeTICS grant 2013/07467-1, the National Council of Technological and Scientific Development (CNPQ) grant 303197/2017-0, and Coordination for the Improvement of Higher Education Personnel (CAPES).", "\n\nF.L. and C.E.M.T. -- bioinformatics, system biology, writing and discussion; A.I. and K.L.P.M. -- interactomics, writing and discussion; S.E.A.L.W. and R.V.B. - *in vivo* experiments; C.D.P. - qRT-PCR, RNA sample preparation and discussion; M.B.G. -- sample preparation, writing and discussion; R.C. - project idea, histological analysis, discussion and writing revision; J.G.S. - discussion; R.J.M.N. - histological analysis; F.I.A.A. - bioinformatics and discussion; J.M.A. -- bioinformatics; A.R.M.L. - discussion and writing; I.J.A., M.Y.N.J. and U.C.O. -- sample preparation and transcriptome; A.M.C.T. project idea and discussion.", "\n\nTranscriptomic data were submitted to GEO/NCBI with the accession number GSE145292. ", "Recombinant Amblyomin-X is patent granted (WO/2006/029492).", "\n\nThe authors declare no competing interests.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0, 0.003048780487804878, 0.005016722408026756, 0.0071090047393364926, 0, 0.003367003367003367, 0.008639308855291577, 0.011342155009451797, 0.01556420233463035, 0.00749063670411985, 0, 0, 0.005555555555555556, 0.005025125628140704, 0.007751937984496124, 0, 0, 0, 0.006557377049180328, 0, 0.015873015873015872, 0, 0, 0, 0, 0.006172839506172839, 0, 0, 0, 0, 0.014084507042253521, 0, 0, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0.0036363636363636364, 0, 0.006329113924050633, 0, 0, 0, 0, 0.007633587786259542, 0.003278688524590164, 0, 0.008298755186721992, 0, 0, 0, 0, 0, 0, 0.006622516556291391, 0, 0.006818181818181818, 0.0111731843575419, 0, 0.0024154589371980675, 0.0024875621890547263, 0.002777777777777778, 0, 0, 0.0044444444444444444, 0.005319148936170213, 0.004405286343612335, 0, 0, 0.03143893591293833, 0, 0.008097165991902834, 0.021505376344086023, 0.00784313725490196, 0, 0, 0, 0.0182648401826484, 0, 0.0029498525073746312, 0.012315270935960592, 0, 0.004201680672268907, 0, 0.009345794392523364, 0, 0.004975124378109453, 0, 0.00625, 0.011661807580174927, 0.019157088122605363, 0.002304147465437788, 0.022727272727272728, 0, 0, 0.02197802197802198, 0.012987012987012988, 0.015384615384615385, 0.010638297872340425, 0, 0, 0, 0, 0.004016064257028112, 0, 0, 0, 0.013333333333333334, 0, 0.011111111111111112, 0.016286644951140065, 0, 0, 0.007751937984496124, 0.01293103448275862, 0.008547008547008548, 0, 0, 0.03296703296703297, 0.01015228426395939, 0.009966777408637873, 0.015105740181268883, 0, 0.011320754716981131, 0, 0.0072992700729927005, 0.00796812749003984, 0, 0.004081632653061225, 0.01032258064516129, 0.0031645569620253164, 0.012987012987012988, 0, 0.02304147465437788, 0, 0.006289308176100629, 0, 0, 0.026595744680851064, 0, 0, 0.008264462809917356, 0.01652892561983471, 0.006172839506172839, 0, 0, 0.009302325581395349, 0.008130081300813009, 0.011986301369863013, 0.005555555555555556, 0, 0, 0.007874015748031496, 0.013824884792626729, 0, 0, 0.01282051282051282, 0.013392857142857142, 0.012738853503184714, 0.014814814814814815, 0, 0, 0.015789473684210527, 0, 0.015151515151515152, 0.14285714285714285, 0.005235602094240838, 0.006369426751592357, 0.011834319526627219, 0, 0.007444168734491315, 0, 0.012987012987012988, 0.0136986301369863, 0.0056179775280898875, 0.0064516129032258064, 0.005434782608695652, 0.027522935779816515, 0.00749063670411985, 0.0042643923240938165, 0.01098901098901099, 0.007352941176470588, 0.006896551724137931, 0.011560693641618497, 0.013761467889908258, 0, 0.010416666666666666, 0, 0.011194029850746268, 0.004672897196261682, 0.009900990099009901, 0.007874015748031496, 0, 0.009174311926605505, 0.01, 0, 0, 0, 0, 0.0026109660574412533, 0, 0.004291845493562232, 0.01642710472279261, 0, 0, 0.004415011037527594, 0, 0, 0, 0, 0.0053475935828877, 0, 0.007782101167315175, 0, 0, 0, 0.013793103448275862, 0.02092050209205021, 0, 0, 0.005813953488372093, 0.009009009009009009, 0.004273504273504274, 0, 0, 0.003076923076923077, 0, 0.008522727272727272, 0.013888888888888888, 0, 0.00847457627118644, 0.01282051282051282, 0.015625, 0.016, 0.0169971671388102, 0.017391304347826087, 0.007142857142857143, 0.010869565217391304, 0, 0.009615384615384616, 0, 0.018867924528301886, 0.02564102564102564, 0.009174311926605505, 0.007246376811594203, 0, 0.03260869565217391, 0.00819672131147541, 0.00980392156862745, 0.008264462809917356, 0.015267175572519083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008849557522123894, 0.03258145363408521, 0.0109717868338558, 0, 0, 0, 0 ]
0.006062
5
[ { "analysis_explanation": null, "end": 378, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 369 }, { "analysis_explanation": null, "end": 490, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 483 }, { "analysis_explanation": null, "end": 611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607 }, { "analysis_explanation": null, "end": 744, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 740 }, { "analysis_explanation": null, "end": 821, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 815 }, { "analysis_explanation": null, "end": 857, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 853 }, { "analysis_explanation": null, "end": 977, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 973 }, { "analysis_explanation": null, "end": 1136, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1124 }, { "analysis_explanation": null, "end": 2261, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2229 }, { "analysis_explanation": null, "end": 2728, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2704 }, { "analysis_explanation": null, "end": 2906, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2885 }, { "analysis_explanation": null, "end": 3747, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3737 }, { "analysis_explanation": null, "end": 3816, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3798 }, { "analysis_explanation": null, "end": 4031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3993 }, { "analysis_explanation": null, "end": 5291, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5277 }, { "analysis_explanation": null, "end": 5307, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5300 }, { "analysis_explanation": null, "end": 5408, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5400 }, { "analysis_explanation": null, "end": 5901, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5892 }, { "analysis_explanation": null, "end": 5975, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5968 }, { "analysis_explanation": null, "end": 6089, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6080 }, { "analysis_explanation": null, "end": 6569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6566 }, { "analysis_explanation": null, "end": 7097, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7096 }, { "analysis_explanation": null, "end": 7166, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7161 }, { "analysis_explanation": null, "end": 7170, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7168 }, { "analysis_explanation": null, "end": 7174, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7172 }, { "analysis_explanation": null, "end": 7181, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7179 }, { "analysis_explanation": null, "end": 7643, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7627 }, { "analysis_explanation": null, "end": 7691, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7674 }, { "analysis_explanation": null, "end": 7769, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7756 }, { "analysis_explanation": null, "end": 9140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9133 }, { "analysis_explanation": null, "end": 9436, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9430 }, { "analysis_explanation": null, "end": 9578, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9572 }, { "analysis_explanation": null, "end": 9718, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9712 }, { "analysis_explanation": null, "end": 10801, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10793 }, { "analysis_explanation": null, "end": 10927, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10919 }, { "analysis_explanation": null, "end": 10948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10944 }, { "analysis_explanation": null, "end": 10960, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10954 }, { "analysis_explanation": null, "end": 12031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12023 }, { "analysis_explanation": null, "end": 14399, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14384 }, { "analysis_explanation": null, "end": 14582, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14571 }, { "analysis_explanation": null, "end": 14965, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14957 }, { "analysis_explanation": null, "end": 15257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15252 }, { "analysis_explanation": null, "end": 15320, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15315 }, { "analysis_explanation": null, "end": 15403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15398 }, { "analysis_explanation": null, "end": 15532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15527 }, { "analysis_explanation": null, "end": 15565, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15558 }, { "analysis_explanation": null, "end": 16154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16149 }, { "analysis_explanation": null, "end": 16235, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16230 }, { "analysis_explanation": null, "end": 16340, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16335 }, { "analysis_explanation": null, "end": 17037, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17031 }, { "analysis_explanation": null, "end": 17044, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17039 }, { "analysis_explanation": null, "end": 17063, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17058 }, { "analysis_explanation": null, "end": 17207, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17203 }, { "analysis_explanation": null, "end": 20225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20219 }, { "analysis_explanation": null, "end": 20540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20535 }, { "analysis_explanation": null, "end": 20788, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20785 }, { "analysis_explanation": null, "end": 20906, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20898 }, { "analysis_explanation": null, "end": 21198, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21166 }, { "analysis_explanation": null, "end": 21642, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21633 }, { "analysis_explanation": null, "end": 22812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22809 }, { "analysis_explanation": null, "end": 22889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22886 }, { "analysis_explanation": null, "end": 22954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22951 }, { "analysis_explanation": null, "end": 23048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23045 }, { "analysis_explanation": null, "end": 23286, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23283 }, { "analysis_explanation": null, "end": 23835, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23831 }, { "analysis_explanation": null, "end": 24507, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24503 }, { "analysis_explanation": null, "end": 24779, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24776 }, { "analysis_explanation": null, "end": 24814, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24799 }, { "analysis_explanation": null, "end": 24894, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24891 }, { "analysis_explanation": null, "end": 25379, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25376 }, { "analysis_explanation": null, "end": 26276, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26270 }, { "analysis_explanation": null, "end": 26689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26680 }, { "analysis_explanation": null, "end": 27498, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27490 }, { "analysis_explanation": null, "end": 28478, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28465 }, { "analysis_explanation": null, "end": 28865, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28854 }, { "analysis_explanation": null, "end": 32803, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32799 }, { "analysis_explanation": null, "end": 32907, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32901 }, { "analysis_explanation": null, "end": 33902, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33897 }, { "analysis_explanation": null, "end": 35364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35356 }, { "analysis_explanation": null, "end": 35702, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35699 }, { "analysis_explanation": null, "end": 35740, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35736 }, { "analysis_explanation": null, "end": 35789, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35785 }, { "analysis_explanation": null, "end": 35795, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35791 }, { "analysis_explanation": null, "end": 35890, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35885 }, { "analysis_explanation": null, "end": 35898, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35892 }, { "analysis_explanation": null, "end": 35964, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35961 }, { "analysis_explanation": null, "end": 36007, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36004 }, { "analysis_explanation": null, "end": 36115, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36112 }, { "analysis_explanation": null, "end": 36179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36170 }, { "analysis_explanation": null, "end": 36949, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36943 }, { "analysis_explanation": null, "end": 37004, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36994 }, { "analysis_explanation": null, "end": 37199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37194 }, { "analysis_explanation": null, "end": 37289, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37282 }, { "analysis_explanation": null, "end": 37455, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37448 }, { "analysis_explanation": null, "end": 38147, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38139 }, { "analysis_explanation": null, "end": 38416, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38413 }, { "analysis_explanation": null, "end": 38494, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38480 }, { "analysis_explanation": null, "end": 38552, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38548 }, { "analysis_explanation": null, "end": 38832, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38829 }, { "analysis_explanation": null, "end": 38995, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38991 }, { "analysis_explanation": null, "end": 39301, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39298 }, { "analysis_explanation": null, "end": 39442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39419 }, { "analysis_explanation": null, "end": 39562, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39558 }, { "analysis_explanation": null, "end": 39772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39769 }, { "analysis_explanation": null, "end": 39978, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39970 }, { "analysis_explanation": null, "end": 40218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40213 }, { "analysis_explanation": null, "end": 40328, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40315 }, { "analysis_explanation": null, "end": 40940, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40937 }, { "analysis_explanation": null, "end": 41818, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41811 }, { "analysis_explanation": null, "end": 41878, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41861 }, { "analysis_explanation": null, "end": 42066, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42053 }, { "analysis_explanation": null, "end": 42269, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42258 }, { "analysis_explanation": null, "end": 42288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42276 }, { "analysis_explanation": null, "end": 42292, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42290 }, { "analysis_explanation": null, "end": 42300, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42294 }, { "analysis_explanation": null, "end": 42338, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42329 }, { "analysis_explanation": null, "end": 42342, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42340 }, { "analysis_explanation": null, "end": 42350, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42344 }, { "analysis_explanation": null, "end": 42504, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42494 }, { "analysis_explanation": null, "end": 42519, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42509 }, { "analysis_explanation": null, "end": 43594, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43571 }, { "analysis_explanation": null, "end": 44524, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44512 }, { "analysis_explanation": null, "end": 44541, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44530 }, { "analysis_explanation": null, "end": 44549, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44542 }, { "analysis_explanation": null, "end": 44955, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44942 }, { "analysis_explanation": null, "end": 45164, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45151 }, { "analysis_explanation": null, "end": 45621, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45613 }, { "analysis_explanation": null, "end": 45629, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45623 }, { "analysis_explanation": null, "end": 46165, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46160 }, { "analysis_explanation": null, "end": 46268, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46259 }, { "analysis_explanation": null, "end": 46290, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46284 }, { "analysis_explanation": null, "end": 46866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46859 }, { "analysis_explanation": null, "end": 46879, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46871 }, { "analysis_explanation": null, "end": 48638, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48632 }, { "analysis_explanation": null, "end": 49374, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49371 }, { "analysis_explanation": null, "end": 49507, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49504 }, { "analysis_explanation": null, "end": 49605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49602 }, { "analysis_explanation": null, "end": 49805, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49799 }, { "analysis_explanation": null, "end": 50493, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50479 }, { "analysis_explanation": null, "end": 51322, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51320 }, { "analysis_explanation": null, "end": 51346, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51344 }, { "analysis_explanation": null, "end": 51358, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51356 }, { "analysis_explanation": null, "end": 51370, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51368 }, { "analysis_explanation": null, "end": 51779, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51767 }, { "analysis_explanation": null, "end": 51911, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51899 }, { "analysis_explanation": null, "end": 52086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52082 }, { "analysis_explanation": null, "end": 52272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52266 }, { "analysis_explanation": null, "end": 52517, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52509 }, { "analysis_explanation": null, "end": 52585, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52577 }, { "analysis_explanation": null, "end": 52618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52612 }, { "analysis_explanation": null, "end": 52628, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52620 }, { "analysis_explanation": null, "end": 42519, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.75, "start": 42509 }, { "analysis_explanation": null, "end": 51747, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.75, "start": 51735 }, { "analysis_explanation": null, "end": 51761, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.75, "start": 51749 }, { "analysis_explanation": null, "end": 51779, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.75, "start": 51767 }, { "analysis_explanation": null, "end": 49974, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 49972 }, { "analysis_explanation": null, "end": 51872, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 51863 }, { "analysis_explanation": null, "end": 23310, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 23306 }, { "analysis_explanation": null, "end": 51849, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 51837 }, { "analysis_explanation": null, "end": 51877, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 51863 }, { "analysis_explanation": null, "end": 51911, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 51899 }, { "analysis_explanation": null, "end": 1479, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1477 }, { "analysis_explanation": null, "end": 6618, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6616 }, { "analysis_explanation": null, "end": 7279, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7277 }, { "analysis_explanation": null, "end": 8781, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8779 }, { "analysis_explanation": null, "end": 10525, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10523 }, { "analysis_explanation": null, "end": 11003, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11001 }, { "analysis_explanation": null, "end": 11628, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11626 }, { "analysis_explanation": null, "end": 17185, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17173 }, { "analysis_explanation": null, "end": 20498, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20496 }, { "analysis_explanation": null, "end": 20717, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20715 }, { "analysis_explanation": null, "end": 22959, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22957 }, { "analysis_explanation": null, "end": 23053, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23051 }, { "analysis_explanation": null, "end": 24167, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24165 }, { "analysis_explanation": null, "end": 25372, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25370 }, { "analysis_explanation": null, "end": 25379, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25376 }, { "analysis_explanation": null, "end": 25435, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25433 }, { "analysis_explanation": null, "end": 26006, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26000 }, { "analysis_explanation": null, "end": 26013, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26010 }, { "analysis_explanation": null, "end": 26248, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26245 }, { "analysis_explanation": null, "end": 26641, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26638 }, { "analysis_explanation": null, "end": 26937, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26934 }, { "analysis_explanation": null, "end": 27117, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 27115 }, { "analysis_explanation": null, "end": 27303, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 27298 }, { "analysis_explanation": null, "end": 28682, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 28680 }, { "analysis_explanation": null, "end": 29084, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 29082 }, { "analysis_explanation": null, "end": 29829, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 29826 }, { "analysis_explanation": null, "end": 29941, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 29939 }, { "analysis_explanation": null, "end": 30055, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 30052 }, { "analysis_explanation": null, "end": 30193, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 30191 }, { "analysis_explanation": null, "end": 33694, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 33692 }, { "analysis_explanation": null, "end": 33701, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 33699 }, { "analysis_explanation": null, "end": 33910, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 33908 }, { "analysis_explanation": null, "end": 35056, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 35054 }, { "analysis_explanation": null, "end": 35063, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 35061 }, { "analysis_explanation": null, "end": 40512, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 40510 }, { "analysis_explanation": null, "end": 42091, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 42089 }, { "analysis_explanation": null, "end": 44652, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 44649 }, { "analysis_explanation": null, "end": 47138, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 47135 }, { "analysis_explanation": null, "end": 42748, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.2, "start": 42741 }, { "analysis_explanation": null, "end": 42504, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 42494 }, { "analysis_explanation": null, "end": 42519, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 42509 }, { "analysis_explanation": null, "end": 42504, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 42494 }, { "analysis_explanation": null, "end": 42519, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 42509 }, { "analysis_explanation": null, "end": 51997, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 51991 }, { "analysis_explanation": null, "end": 52860, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 52854 } ]
[ " \n## SCOTT MARIANI\n\n# _The Babylon Idol_\n\n### Copyright\n\nPublished by Avon\n\nAn imprint of HarperCollins _Publishers Ltd_\n\n1 London Bridge Street\n\nLondon SE1 9GF\n\nwww.harpercollins.co.uk\n\nFirst published in Great Britain by HarperCollins 2017\n\nCopyright © Scott Mariani 2017\n\nCover Design © Henry Steadman 2017\n\nScott Mariani asserts the moral right to be identified as the author of this work.", "\n\nA catalogue copy of this book is available from the British Library.", "\n\nThis novel is entirely a work of fiction. ", "The names, characters and incidents portrayed in it are the work of the author's imagination. ", "Any resemblance to actual persons, living or dead, events or localities is entirely coincidental.", "\n\nAll rights reserved under International and Pan-American Copyright Conventions. ", "By payment of the required fees, you have been granted the non-exclusive, non-transferable right to access and read the text of this e-book on screen. ", "No part of this text may be reproduced, transmitted, down-loaded, decompiled, reverse engineered, or stored in or introduced into any information storage and retrieval system, in any form or by any means, whether electronic or mechanical, now known or hereinafter invented, without the express written permission of HarperCollins.", "\n\nSource ISBN: 9780007486229\n\nEbook Edition © May 2017 ISBN: 9780007486410\n\nVersion: 2017-07-07\n\n#### **Join the army of fans who LOVE Scott Mariani's Ben Hope series...**\n\n'Deadly conspiracies, bone-crunching action and a tormented hero with a heart... Scott Mariani packs a real punch'\n\nAndy McDermott, __ bestselling author of _The Revelation Code_\n\n' _S_ lick, serpentine, sharp, and very very entertaining. ", "If you've got a pulse, you'll love Scott Mariani; if you haven't, then maybe you crossed Ben Hope'\n\nSimon Toyne, bestselling author of the _Sanctus_ series\n\n'Scott Mariani's latest page-turning rollercoaster of a thriller takes the sort of conspiracy theory that made Dan Brown's _The Da Vinci Code_ an international hit, and gives it an injection of steroids... [Mariani] is a master of edge-of-the-seat suspense. ", "A genuinely gripping thriller that holds the attention of its readers from the first page to the last'\n\n_Shots Magazine_\n\n'You know you are rooting for the guy when he does something so cool you do a mental fist punch in the air and have to bite the inside of your mouth not to shout out \"YES!\" ", "in case you get arrested on the train. ", "Awesome thrilling stuff'\n\n_My Favourite Books_\n\n'If you like Dan Brown you will like all of Scott Mariani's work – but you will like it better. ", "This guy knows exactly how to bait his hook, cast his line and reel you in, nice and slow. ", "The heart-stopping pace and clever, cunning, joyfully serpentine tale will have you frantic to reach the end, but reluctant to finish such a blindingly good read'\n\n_The Bookbag_\n\n'[ _The Cassandra Sanction_ ] is a wonderful action-loaded thriller with a witty and lovely lead in Ben Hope... I am well and truly hooked!'", "\n\n_Northern Crime Reviews_\n\n'Mariani is tipped for the top'\n\n_The Bookseller_\n\n'Authentic settings, non-stop action, backstabbing villains and rough justice – this book delivers. ", "It's a romp of a read, each page like a tasty treat. ", "Enjoy!'", "\n\nSteve Berry, _New York Times_ bestselling author __\n\n'I love the adrenalin rush that you get when reading a Ben Hope story... _The Martyr's Curse_ is an action-packed read, relentless in its pace. ", "Scott Mariani goes from strength to strength!'", "\n\n_Book Addict Shaun_\n\n'Scott Mariani seems to be like a fine red wine that gets better with maturity!'", "\n\n_Bestselling Crime Thrillers.com_\n\n'Mariani's novels have consistently delivered on fast-paced action and _The Armada Legacy_ is no different. ", "Short chapters and never-ending twists mean that you can't put the book down, and the high stakes of the plot make it as brilliant to read as all the previous novels in the series'\n\n_Female First_\n\n'Scott Mariani is an awesome writer'\n\nChris Kuzneski, bestselling author of _The Hunters_\n\n### __\n\n_'O King, we will not serve your gods, nor worship the image of gold you have set up.'_", "\n\nThe Book of Daniel 3:15–18\nTable of Contents\n\nCover\n\nTitle Page\n\nCopyright\n\nJoin the Army of Fans Who Love Scott Mariani's Ben Hope Series...\n\nEpigraph\n\nPrologue\n\nChapter 1\n\nChapter 2\n\nChapter 3\n\nChapter 4\n\nChapter 5\n\nChapter 6\n\nChapter 7\n\nChapter 8\n\nChapter 9\n\nChapter 10\n\nChapter 11\n\nChapter 12\n\nChapter 13\n\nChapter 14\n\nChapter 15\n\nChapter 16\n\nChapter 17\n\nChapter 18\n\nChapter 19\n\nChapter 20\n\nChapter 21\n\nChapter 22\n\nChapter 23\n\nChapter 24\n\nChapter 25\n\nChapter 26\n\nChapter 27\n\nChapter 28\n\nChapter 29\n\nChapter 30\n\nChapter 31\n\nChapter 32\n\nChapter 33\n\nChapter 34\n\nChapter 35\n\nChapter 36\n\nChapter 37\n\nChapter 38\n\nChapter 39\n\nChapter 40\n\nChapter 41\n\nChapter 42\n\nChapter 43\n\nChapter 44\n\nChapter 45\n\nChapter 46\n\nChapter 47\n\nChapter 48\n\nChapter 49\n\nChapter 50\n\nChapter 51\n\nChapter 52\n\nChapter 53\n\nChapter 54\n\nChapter 55\n\nChapter 56\n\nChapter 57\n\nChapter 58\n\nChapter 59\n\nChapter 60\n\nChapter 61\n\nChapter 62\n\nChapter 63\n\nChapter 64\n\nChapter 65\n\nChapter 66\n\nEpilogue\n\nRead on for an Exclusive Extract of the New Ben Hope Adventure by Scott Mariani\n\nKeep Reading...\n\nAbout the Author\n\nBy the Same Author\n\nAbout the Publisher\n\n## PROLOGUE\n\nFor all of his sixty-three years Gennaro Tucci had lived in the same small cottage on the edge of the same rural village in Umbria. ", "He had been a carpenter much of his working career, but now spent most of his time pottering about his house and garden, keeping himself to himself with little need for much in the way of a social life, apart from a cat. ", "He was a simple, gentle, kindly man with few needs and no regrets in life, whom it took little to make happy. ", "Every Friday morning, Gennaro would amble up the road to the tiny village church, which was usually empty, sit in the same pew within its craggy whitewashed walls and bow his head and offer a few simple prayers. ", "Then he would amble home again, feed his cat and while away the rest of the morning until lunchtime.", "\n\nOne particular Friday morning, in the summer of what would turn out to be Gennaro's final year, he arrived in the church to find that it wasn't empty – though he took little notice of the well-dressed stranger sitting in one of the pews across the aisle, a man of the same approximate age as he was, with grey hair turning white, and a broad, deeply lined face with penetrating eyes, who had looked at Gennaro fixedly as he came in.", "\n\nGennaro never asked himself who the stranger was, whether a newcomer to the village or someone just passing through. ", "He smiled, nodded politely and got on with his habitual prayers, oblivious of the way the stranger kept staring at him. ", "He remained in his pew the same length of time he always did, then left the church and began walking home under the warm sunshine, sniffing flowers and feeling happy at the beauty of the day.", "\n\nHad Gennaro Tucci's mind not been fully taken up with such pleasant thoughts, he might have noticed that the mysterious stranger had left the church at the same time, and was following him at a distance, staring at his back with an expression Gennaro might have found unsettling.", "\n\nAnd, once he'd reached his little cottage on the edge of the village, had Gennaro happened to look out of the window he'd have noticed the stranger standing there by the front gate, watching as though unable to tear his gaze away.", "\n\nBut Gennaro saw nothing, and after a few minutes the stranger disappeared. ", "The next day came and went, as peacefully as ever; then the next.", "\n\nThe following evening, they came.", "\n\nGennaro was upstairs, getting ready for bed, when the lights shone through his windows and he heard the thump of someone crashing through his front door. ", "Frightened, he padded down the stairs, calling, ' _Chi è là?_ '", "\n\nWhen he saw the three intruders, masked and armed, Gennaro almost died of fright. ", "At first he'd thought the men had come to rob him, but that was unthinkable – he had nothing to steal, which was why he'd never locked his door in all these years. ", "But they hadn't come for valuables. ", "It was him they wanted.", "\n\nGennaro struggled and cried out as they grabbed him. ", "One of the men jabbed a hypodermic syringe into his arm, and after that things began to go hazy for the sixty-three-year-old. ", "They dragged his half-unconscious body outside and bundled him into a black van, shut him up in the back and sped off into the night.", "\n\nMany hours later, some four hundred kilometres north of the home Gennaro would never see again, the van finally stopped and his captors dragged him out. ", "By then the drugs had begun to wear off. ", "Gennaro blinked in the strong sunlight and gaped at his new surroundings, too terrified to ask what was happening to him and why he'd been kidnapped. ", "He was in the grounds of some magnificent house by a lake. ", "Poor Gennaro had never left rural Umbria, and had no recognition of where he'd been brought. ", "But he did faintly recognise the man who stood before him as the three thugs shoved and dragged him inside the big house, then threw him down on his knees on the hard marble floor. ", "The man smiled down at him with an expression that was almost benevolent. ", "Gennaro blinked up at him and struggled to remember where he'd seen him before.", "\n\nThe stranger from the church.", "\n\nNow that Gennaro saw him more closely, he was even more confused. ", "It was like looking into a mirror. ", "They could have been identical twins.", "\n\n'What is your name?' ", "the man asked.", "\n\n'G-Gennaro T-Tucci,' Gennaro managed to quaver.", "\n\n'Gennaro,' the man said with a broad smile, 'you are a gift from God.'", "\n\n## Chapter 1\n\nSo many times in the past, Ben Hope had vowed and declared that his crazy days of running from one adventure to another were over, and that he was going to stay put at home for the foreseeable future. ", "And every time he'd said it, before long some new crisis had come barrelling into his life and whisked him off again – the latest in a sorry, never-ending series of broken promises, to himself, and to others, which had sometimes made him wonder if he was cursed by fate.", "\n\nThis time, though, he was determined to be true to his word. ", "This was it. ", "Mayhem, violence, war, intrigue, chasing around the world – he was done with the lot of it, once and for all.", "\n\nIt wasn't so much that, as his longtime friend and business partner Jeff Dekker sometimes joked, 'We're getting too old for this shit.' ", "In his early forties, Ben had plenty of life left in him and could still outrun, out-train and, if necessary, outfight guys half his age. ", "But he would have been lying if he'd said that the recent African escapade hadn't taken a lot out of him, physically and emotionally.", "\n\nThe same went for Jeff, who'd been right there at Ben's side in what had to be the deadliest, most complex and disturbing rescue mission either man had ever experienced, either during their time in British Special Forces and in the years since. ", "Likewise for Tuesday Fletcher, the young ex-trooper who had not long since joined their small staff at the Le Val Tactical Training Centre in rural Normandy but already proved himself ten times over to be a stalwart asset to the team and forged bonds of comradeship with Ben and Jeff that could never be broken.", "\n\nLess than a fortnight had passed since they'd all returned to Le Val, to find a mountain of mail waiting for them. ", "The business was growing by the month, attracting so many bookings from military, law enforcement and private close-protection agencies worldwide looking to refine and extend their tactical skillset that it was hard to keep up with demand. ", "Now that the operation had received a substantial cash injection in the wake of the Africa mission, they were set to grow still further.", "\n\nBut all of that had been set aside for a week, as an official Le Val holiday was declared.", "\n\nBen had spent that time recuperating. ", "For most people, 'recuperating' might have meant lying in bed, or sitting around idle, licking their wounds and feeling sorry for themselves. ", "For Ben it meant getting back into the punishing exercise routines he'd followed for most of his life. ", "Working back up to a thousand push-ups a day, lifting weights, honing his marksmanship skills on Le Val's pistol and rifle ranges, scaling cliffs and sea-kayaking off the Normandy coast, and going for long runs through the wintry countryside with Storm, his favourite of the pack of German Shepherds that patrolled the compound. ", "The harder Ben trained, the more he emptied his mind and the further he left the horrors of Africa behind him.", "\n\nJeff Dekker was no slouch either, but he'd used his recuperation period differently. ", "His romance with Chantal Mercier, who taught at the _École Primaire_ in the nearby village of Saint-Acaire, had grown more serious over the last months, and he'd spent his time off with her. ", "In all the years Ben had known Jeff, throughout the never-ending sequence of on-off, part-time, short-term girlfriends whose names were too many to remember, he'd never seen him so committed to a relationship. ", "He was happy for his friend, and Jeff seemed happy too. ", "Even Jeff's French had improved.", "\n\nMeanwhile, Tuesday Fletcher had taken advantage of the week's holiday to fly home to London to see his parents, Rosco and Shekeia, second-generation immigrants from Jamaica. ", "Tuesday was still recovering from a gunshot wound to the arm, sustained during their flight from the Congo. ", "Ben had no doubt that he'd come up with some white lie to conceal from his parents just how close he'd come to being killed. ", "If anyone could make light of a bullet in the arm, it was the ever-cheerful Tuesday.", "\n\nThe second week since their return, the three of them had started easing themselves back into business-as-usual mode and begun working their way through the backlog of emails, letters, accounts, orders, bookings and the process of hiring new staff to cope with the expanding Le Val operation, and a hundred other matters that had accumulated during their absence.", "\n\nThat was where Ben found himself at this moment, sitting alone in the prefabricated office building across the yard from the old stone farmhouse. ", "It was an early December morning, and the icy rain that had been drumming on the office roof since dawn was threatening to turn snowy. ", "The fan heater was blasting waves of warm air that engulfed Ben as he sat at the desk sipping from a steaming mug of black coffee. ", "Storm and two more of the guard dogs, Mauser and Luger, appeared to have given themselves the morning off and were curled contentedly at his feet, like a huge hairy black-and-tan rug spread over the floor. ", "Ben didn't have the heart to kick them out into the cold.", "\n\nFrom where he sat, through the window he could see the parked minibus that had brought the current crop of trainees to Le Val: eight agents from the French SDAT anti-terror unit anxious to up their game in expectation of more of the troubles that had been rocking Paris in recent times. ", "Tuesday was currently out with them on the six-hundred-yard range, the group probably all freezing their balls off as he took them through their sniper paces. ", "Trembling hands and numb fingers were no great boon to long-range accuracy. ", "Poor sods. ", "Ben was scheduled to teach a two-hour session that afternoon in the plywood-and-car-tyre walled construction they called the 'killing house', covering elements of advanced live-fire CQB, or close-quarter-battle, training that they were unlikely to learn anywhere else. ", "At least they'd be indoors out of the wet. ", "Two more members of the Le Val team who'd be happy to huddle indoors with mugs of coffee were Serge and Adrien, the two ex-French Army guys who manned the new gatehouse – the latest addition to the complex – and controlled people coming in and out.", "\n\nAs for Jeff Dekker, Ben wasn't quite sure where he was at that moment. ", "He'd said something about checking the perimeter fence for wind damage; the region had been buffeted by one winter gale after another that week. ", "With the kind of arsenal that Le Val kept locked up in its special armoury vault, and the sort of work that went on within the various sections of the compound, government bureaucracy insisted on the property being ultra-secure. ", "Not that Ben had lately noticed any gangs of jihadist terrorists roaming the Normandy countryside in search of military hardware. ", "But rules were rules.", "\n\nBen reached for his Gauloises and Zippo lighter, flicked a cigarette from the familiar blue pack, clanged open the lighter and lit up in a cloud of smoke. ", "It suddenly felt even better to be home. ", "Puffing happily away, he reached across the desk for the stack of mail he'd been sifting through. ", "So far it had all been bills, bills, and more bills.", "\n\nBut this letter looked different.", "\n\n## Chapter 2\n\nThe letter certainly was unusual. ", "More than the Italian postmark, Ben was surprised to see the ink-stamped legend ISTITUTO PENITENZIARO BOLLATI on the envelope. ", "He'd heard of the Bollati medium-security prison in Milan, but never been there, could think of no connections the place could have to him, and wouldn't have expected to receive a letter from anyone there.", "\n\nYet there was no denying his name and address neatly handwritten on the front of the envelope. ", "Above them, the date on the postmark showed that the letter had left Milan while Ben was struggling to survive somewhere in the middle of the Congo jungle.", "\n\n'Hm,' he said.", "\n\nAt his feet, Storm cocked an ear and glanced up as though to see what the fuss was about, then lost interest and went back to sleep.", "\n\nBen took another slurp of scalding coffee and another drag on the Gauloise, then put down his mug, rested the cigarette in the ashtray and picked up the old M4 bayonet that served as a letter-opener in the Le Val office. ", "He carefully slit one end of the envelope, reached inside and was about to draw out the single folded sheet of paper when his phone suddenly came to life and started buzzing on the desk like an upturned bee.", "\n\n'Got a problem in Sector Nine.' ", "Jeff's voice was barely audible over the crackle of the wind distorting his phone's mic. ", "Sector Nine was what they called part of the east perimeter fence. '", "That sodding apple tree Marie-Claire wouldn't ever let me cut down? ", "Well, we won't need to now. ", "Sorry to drag you out here, mate, but I need your help.'", "\n\nBen could imagine what had happened. ", "He'd read the letter later. ", "He grabbed his leather jacket from the back of his chair and slipped it on.", "\n\n'You want to come?' ", "he said to Storm, who instantly sprang to his feet as though it were feeding time. ", "Life was simple if you were a dog.", "\n\nOutside in the biting wind, the sleet was turning snowier by the minute. ", "Ben pulled up the collar of his jacket and crossed the yard, past the minibus and over to the ancient Land Rover. ", "It was a tool box on wheels, filled with all kinds of junk including a greasy old chainsaw. ", "Storm hopped in the back and found a space for himself while Ben got behind the wheel, and they set off across the yard and down the rutted track that ran between the buildings parallel with the rifle range and led across the fields towards Sector Nine. ", "He heard the muffled boom of a rifle coming from the range, the ear-splitting report and supersonic crack of the bullet in flight muted by the high earth walls that ran parallel from the firing points to the butts at the far end and prevented any 'flyers' from escaping the range boundaries. ", "Not that such elementary mistakes could happen under Tuesday's expert supervision; he could splatter grapes all day long at five hundred yards with his modified Remington 700, and he was one of the best instructors Ben had ever seen.", "\n\nThe old tree had been a bone of contention for years. ", "Marie-Claire, the local woman they'd employed from day one as an occasional cook, swore the particular apples it produced were essential to her mouth-wateringly delicious traditional Normandy apple tart recipe. ", "As popular as her tart was with the parties of hard-worked and hungry trainees at Le Val, Jeff had always griped that the tree was too close to the fence and had argued that they could get perfectly decent apples at the grocer's in Saint-Acaire or the Carrefour in Valognes. ", "It had been an endless and hard-fought debate, with neither side giving an inch, while the tree kept growing taller and spreading outwards year on year. ", "Now it looked as if the winter wind had settled the argument for them.", "\n\nThe track wound and snaked through the grounds. ", "To Ben's right, he passed the patch of oak woodland, now bare and gaunt, that in summer completely screened the ruins of the tiny thirteenth-century chapel where he sometimes retreated to sit, and think, and enjoy the silence. ", "To his left, beyond hills and fields and forest, he could see the distant steeple of the church at Saint-Acaire pointing up at the grey sky.", "\n\nHe loved this place, in any season. ", "He couldn't imagine why he'd ever wanted to leave it.", "\n\nBut then, he'd done a lot of things in his life that he couldn't understand why, looking back.", "\n\nAs Ben approached Sector Nine, he saw Jeff's Ford Ranger over the grassy rise up ahead. ", "Then Jeff himself, arms folded and frowning unhappily at the branches that had become enmeshed in the wire. ", "The whole tree had uprooted and toppled over, flattening a thirty-foot section of fence with it. ", "Those ever-lurking jihadis had only to come leaping through the gap, and they'd be just a step away from total European domination.", "\n\n'What did I always say?' ", "Jeff said, pointing at the fallen tree as Ben stepped down from the Land Rover. '", "What did I always warn that old bat would happen one day? ", "And did she ever listen to a word? ", "Did she buggery.'", "\n\n'No use crying about it now,' Ben said. ", "He grabbed the chainsaw from the back of the Landy. ", "The dog clambered into the front seat, fogging up the windscreen with his hot breath as he watched the two humans set about dismantling the tree.", "\n\nBen started with the smaller branches, trimming them off while Jeff dragged them away and tossed them in a heap to one side. ", "Once the gnarly old trunk was as bare as a telegraph pole, it was time to start chopping it up into sections before the real work of rebuilding the broken fence could begin. ", "By then, the sleet had delivered on its threat to turn snowy. ", "Ben and Jeff took a break, and sat in the Land Rover watching the snow dust the landscape. ", "Ben lit another Gauloise, smoking it slowly, savouring the tranquillity of the moment.", "\n\n'I love her, you know,' Jeff said, out of the blue after a lengthy pause.", "\n\n'The old bat?'", "\n\n'Chantal. ", "I'm in love with her, mate.'", "\n\nBen had never heard his friend say anything like that before. ", "From his lips, it was like Mahatma Gandhi saying how much he loved a good juicy beefsteak.", "\n\nJeff shook his head, as though he could hardly believe it himself. '", "I mean, I know what it sounds like, and I never thought this would happen to me. ", "But I think she's the one. ", "Christ, I really fucking think so.' ", "He glanced at Ben. ", "There was a look in his eyes something like helplessness.", "\n\n'Chantal's great,' Ben said, even though he'd only met her briefly a couple of times.", "\n\n'Yeah, she is.' ", "Jeff swallowed, like a man about to make a confession. '", "Listen. ", "I... uh, I asked her to marry me. ", "She said yes. ", "Wanted you to be the first to know.'", "\n\nBen masked his complete astonishment and said, 'I'm sure you'll be very happy together.' ", "The subject of marriage wasn't one that was ever discussed between them, given Ben's patchy history in that department. ", "He was more unqualified than most people to extol the joys of married life, but it was all he could think of to say right now.", "\n\n'Thanks, mate.' ", "Jeff smiled, then pointed through the windscreen, obviously keen to change the subject. '", "Look at this frigging snow.' ", "It was thickening by the minute, blown about in sheets by the increasing wind.", "\n\n'No point waiting for it to stop,' Ben said. '", "Let's get on.'", "\n\nThe chainsaw buzzed and snorted and kicked in Ben's hands as he sliced the tree into sections, bending over the prone trunk, with Jeff standing at his shoulder waiting to grab each piece as it came loose and toss it into the pile. ", "Ten minutes later, the top half of the tree was next year's firewood logs ready to be loaded on a trailer and split and stacked in the barn.", "\n\nTwo minutes after that, it happened.", "\n\nThere was a strong gust of wind, followed immediately by a strange whizzing crack that was only faintly audible over the noise of the saw. ", "At almost the same instant, Ben heard Jeff's strangled cry of shock and pain. ", "He looked quickly around, just in time to see the blood fly. ", "As if in slow motion, like a scarlet ribbon fluttering from Jeff's body, twisting in the air. ", "Jeff doubling up. ", "Falling against him. ", "Collapsing into the trampled grass. ", "Mud and snow and sawdust and more blood. ", "Lots of it, spilling everywhere. ", "Ben yelling Jeff's name. ", "Getting no response. ", "The sudden fear twisting his guts like a pair of icy gripping hands.", "\n\nIn those first confused instants, Ben thought that the chain had broken and gone spinning off the bar of the saw, hitting Jeff in some kind of freakish accident. ", "In a panic he hit the engine kill switch. ", "The saw instantly stopped, and Ben realised the chain was still intact.", "\n\nHe threw the saw down and fell on his knees by Jeff's slumped body. ", "Jeff wasn't moving. ", "The snow was turning red in a spreading stain under him. ", "Ben yelled his friend's name. ", "Tried to shake him, to roll him over, to understand what was happening. ", "Blood slicked his hands and bubbled up between his fingers. ", "So much blood.", "\n\nNow Ben was thinking that the spinning chainsaw might have dislodged an old nail or fencing staple buried deep in the tree trunk from long ago, and sent it flying through the air like a deadly piece of shrapnel.", "\n\n'Jeff!'", "\n\nJeff's eyes were closed. ", "His face was white, except where it was spattered red. ", "His jacket and shirt were black and oily with blood. ", "Ben ripped at the material.", "\n\nAnd then he saw the gaping bullet wound in Jeff's chest.", "\n\n## Chapter 3\n\nYou didn't need to be a forensic pathologist to recognise the devastating effect that a high-velocity rifle bullet could have on the human body. ", "And Ben was no stranger to gunshot wounds.", "\n\nThis one was bad. ", "It was very bad.", "\n\nA gust of wind slapped a fresh flurry of snowflakes over them, and suddenly it was blizzarding. ", "Ben crouched in the mud and the blood and the snow, bending over his friend's inert body, blinking away the flakes that swirled into his eyes. ", "His hands shook so violently that he could barely control them enough to check Jeff's pulse. ", "Inside the Land Rover, Storm was howling and barking and scrabbling at the window to get out.", "\n\nThere was no pulse. ", "The shock of the impact had stopped Jeff's heart. ", "He wasn't breathing. ", "Red froth was bubbling at his lips.", "\n\nBen closed his mind to the panic that rushed up inside him, and dived into action with artificial respiration to try to force Jeff's lungs to start working. ", "His own face was soon slick with blood. ", "He could taste the coppery saltiness of it on his lips. ", "He spat and kept trying.", "\n\nAfter ten breaths there was still no response. ", "No breath. ", "No pulse.", "\n\nUsing the edge of his hand Ben gave a sharp rap to the lower part of Jeff's breastbone in the desperate hope that the cardiac compression would jar his heart back into life. ", "That was, if the bullet hadn't carved it into butcher meat.", "\n\nNo pulse.", "\n\nJeff was dead.", "\n\nBut Ben couldn't allow that to happen. ", "He yelled, 'No!' ", "And hit him again, terrified of doing further damage to the wound but not knowing what other choice he had. ", "Blood sprayed from the impact. ", "Jeff's flesh felt cold and lifeless to the touch.", "\n\nOne more time, Ben resorted to the mouth-to-mouth to try to force oxygen into Jeff's inert lungs.", "\n\nAnd this time, Ben's own heart soared as he suddenly felt a pulse, as ragged and delicate as a damaged butterfly's wingbeats. '", "You're not dead yet, Dekker!' ", "Ben yelled, wanting to shake him, slap him. ", "Jeff's body convulsed and a spout of blood burst out of him with a rattling gasp. ", "He was alive, though Ben knew he could slip back down at any moment and not come back up again.", "\n\nThere had been no more shots. ", "In his near-panic, Ben struggled to think straight. ", "He remembered that Tuesday was out with the trainees on the long rifle range. ", "Could a bullet have gone astray somehow? ", "Impossible. ", "Not on Tuesday's watch. ", "And in any case, the shot that had hit Jeff had very clearly come from the opposite direction.", "\n\n_Beyond_ the fence. _", "Outside_ the boundaries of Le Val. ", "Logic dictated that the shooter had hidden himself among the wooded hills somewhere between here and Saint-Acaire. ", "He could have been half a mile away. ", "Waiting, watching through his scope, biding his time for the perfect moment to pull the trigger.", "\n\nBut who was he? ", "And why had he done this?", "\n\nThe landscape was rapidly turning white, visibility suddenly diminished to not much better than a hundred yards. ", "There was no sign of anyone. ", "Nothing moved or made a sound, except for the whistle of the gusting wind and the swirl and patter of the falling snow. ", "Ben didn't want to leave Jeff, but it haunted him that the faceless shooter was still out there, somewhere, perhaps hundreds of yards distant, or maybe moving in closer to finish what he'd started. ", "Ben ran to the Land Rover, wrenched open the tailgate and grabbed the old shotgun that kicked about in the back among the shovels and other tools. ", "A rustic twelve-bore against a long-range rifle was no match, but it was better than being unarmed. ", "He rummaged inside the vehicle for the green plastic first-aid box and shoved it under his arm.", "\n\n'Storm, go find Tuesday!' ", "Ben told the German Shepherd. '", "Fetch!' ", "The dog was trained to know the names of everyone at Le Val, and to locate and alert them on command. ", "Storm cocked his head, understood what Ben was asking him to do, bounded out of the Land Rover and streaked away through the snow like a heat-seeking missile.", "\n\nAs he ran back to Jeff, Ben tore out his phone and dialled 15, the emergency SAMU number for urgent medical assistance. ", "He forced himself to speak clearly and slowly as he explained what had happened. '", "Please hurry.'", "\n\nThe nearest hospitals were in Valognes and Cherbourg, both miles away. ", "Jeff was going to need everything Ben could do to keep him alive until someone got here. ", "He was still losing blood much too fast. ", "The bullet had passed right through his body, making an exit hole between his shoulder blades that Ben could have poked three fingers inside. ", "More blood was leaking from that hole than the entry wound, but he'd have to stem the bleeding from both before Jeff lost a fatal amount.", "\n\nBen pulled open a bandage pack from the first-aid kit and tore it in half. ", "Struggling to get Jeff's dead weight rolled over a little he wedged one knee under his friend's back with a wad of bandage pressed tightly between it and the exit wound, and used both hands to maintain pressure on the entry wound with the other wad. ", "He squeezed with all his might to staunch the deadly haemorrhages. ", "It could take ten or fifteen minutes of steady pressure to stem the flow – by which time it could all be over. ", "Blood quickly soaked through the bandages until they were saturated.", "\n\nIt wasn't long before Storm came pounding back through the snow. ", "Tuesday was sprinting after him, still clutching the scoped rifle they'd been using for their training session. ", "The dog was barking frantically and running circles around Tuesday to guide him on. ", "In their wake came the eight SDAT guys. ", "Tuesday's jaw dropped in horror at the sight of Ben crouching over Jeff's bloody form in the snow.", "\n\n'He's been shot,' Ben said tersely. '", "Don't ask me more, because I don't know. ", "Just help me. ", "I've called for the ambulance but I need more bandages from the kit. ", "Quickly. ", "And keep your head down. ", "The shot came from that way, eleven o'clock. ", "The shooter could still be around.'", "\n\nTuesday nodded dumbly, dropped the rifle and set about tearing open more bandage packs. ", "He knew better than to ask questions. ", "Once a soldier, always a soldier; like Ben he was no stranger to dealing with gravely injured comrades in the field. ", "The SDAT guys were good at what they did, and they were experts in looking tough and intimidating in the black balaclavas and tactical armour they wore on the job, but they had about as much real-life battlefield experience as any other cops, and in those first shocked instants they could do little but watch grimly as Ben discarded the blood-soaked pressure pads and replaced them with the fresh ones Tuesday quickly handed him.", "\n\nThe SDAT team leader was a tough, gruff Frenchman called Roman Vidal. ", "He took out a phone and urgently, efficiently called in police reinforcements, then picked up the rifle and the shotgun and began delegating orders to his men, marshalling them as though they were dealing with a terrorist attack.", "\n\nWhich maybe they were. ", "Ben had no idea what was happening, and right now it was the last thing on his mind. ", "Jeff's pulse was vacillating wildly, sometimes barely there at all. ", "The blood kept coming, though now the flow seemed to be easing a little.", "\n\nWith Tuesday's help Ben laid Jeff out flat on the ground with his legs elevated to make it easier for his weak heartbeat to pump blood to the head. ", "Ben had taken off his bloody jacket and laid it over Jeff to keep him warm. ", "That was all they could do, except hope they could get their friend out of here as soon as possible.", "\n\nThe SDAT guys fanned out along the perimeter, keeping low and scanning the terrain beyond the fence for any sign of the shooter. ", "The falling snow wasn't helping. ", "It was becoming hard to tell where the horizon ended and the sky began. ", "Tuesday stayed close by Ben and Jeff, biting his lip in agonised worry and holding in the thousand questions that were bursting to come out.", "\n\n'Hang in there, Jeff,' Ben kept saying in his ear. '", "Help's on its way. ", "You're going to be all right. ", "You're going to be fine.'", "\n\nHe didn't even know if Jeff could hear him.", "\n\nFinally, after what seemed like hours, Ben caught the sound of an approaching helicopter. ", "He looked up and saw the aircraft thudding towards them out of the grey clouds.", "\n\nBen would never know the pilot's name, but he would forever bless the guy's heroism for having flown out in such bad weather. ", "The white SAMU air ambulance landed just inside the perimeter, whipping up powdery snow from the ground by the blast of its rotors. ", "Two paramedics jumped out and hurried over.", "\n\nIt took a monumental effort for Ben to stand back and let them take charge of the situation. ", "Within minutes, Jeff was being stretchered aboard the chopper. ", "Ben kept his hand from shaking as he scribbled out a few details on a form: Jeff's name, address, blood type and next of kin, which Ben wrote down as Lynne Dekker. ", "Jeff's father had walked out when he was eight. ", "His mother Lynne had emigrated from the UK to Australia's Northern Territory a few years back, where she and her new man, an outbacker called Kip Malloy, ran a crocodile farm supplying leather to the cowboy boot industry. ", "Ben couldn't remember the name of the place.", "\n\nAs he handed the form back to the paramedics, blood smeared all over the paper from his fingers, he asked if there was room for one more on board the chopper and was told, without hesitation, no chance.", "\n\nBen said, 'At least tell me where you're taking him.' ", "The paramedic replied that Jeff would be flown direct to the Centre Hospitalier Louis Pasteur, the big hospital in Cherbourg, being the nearest facility equipped to deal with major trauma. ", "Ben thanked him and let him go. ", "He stood back, and he and Tuesday watched in silence as the hatch slammed shut and the chopper took off.", "\n\nBoth thinking the same terrible thought.", "\n\nThat they might never see Jeff Dekker alive again.", "\n\n## Chapter 4\n\nThe distance from Le Val to Cherbourg was almost exactly thirty-five kilometres by road. ", "Ben couldn't get there as fast as a chopper, but he was damned well going to try.", "\n\n'I'm coming too,' Tuesday declared as Ben clambered into Jeff's truck. ", "It was faster than the Land Rover, not that Ben intended to make the drive in either.", "\n\nBen shook his head. '", "Someone's got to hold the fort, Tues. ", "In a few minutes this place will be crawling with police. ", "In the meantime, kennel the dogs, lock the weapons up in the armoury and get ready for a lot of questions. ", "If they want me, they know where to find me.'", "\n\nTuesday just nodded. ", "He looked as ashen and pallid as it was possible for a healthy twenty-four-year-old Jamaican guy to look. ", "Ben briefly laid a hand on his shoulder. ", "He wanted to give him some kind of reassuring smile, but he couldn't. ", "He slammed the truck door, fired up the engine and took off over the bumpy ground, wipers slapping, lights burning twin beams through the drifting snow. ", "Tuesday, Vidal and the others shrank in the rear-view mirror until the white veil swallowed them up.", "\n\nBen hammered the truck back towards the house. ", "Less than a minute later he was skidding to a halt in the yard, piling out without shutting the door and sprinting past the big stone farmhouse towards the lean-to garage where he stored his personal car.", "\n\nThe old BMW Alpina turbo was neglected and dirty, but its 4.4-litre V8 motor could get Ben where he wanted to be just about as fast as anything else on the road, especially when he was the one behind the wheel. ", "He punched it out of the yard and down the rutted track to the security gates that shut Le Val off from the big, bad world. ", "He left those open, too, for the contingent of gendarmerie vehicles that would soon be descending on them in force. ", "Then he was off, heading north, shifting as aggressively as the untreated and slippery rural roads would let him.", "\n\nHis mind was empty, numb. ", "There was no point in trying to make sense of what had happened. ", "That would come later. ", "And when he figured out who had done this...\n\nHe gripped the steering wheel. ", "He couldn't afford to let his grief and rage take him over. ", "That would come later, too.", "\n\nTraffic grew steadily thicker as he left the countryside behind him and joined the N13 heading towards the city. ", "The sudden snowfall had caught a lot of people unprepared, and the road was heavily congested with sluggish bumper-to-bumper lines of vehicles. ", "Twice he veered off onto the verge to roar by the dawdling drivers blocking his way, and forced past them with his horn blaring to warn them of his approach. ", "People gawked at him from their car windows. ", "He didn't care.", "\n\nA few minutes later, he left the _nationale_ and carved his way into Cherbourg-Octeville. ", "The hospital was located in the north of the city, not far from the port. ", "He screeched through slippery, twisty streets, attracting more stares from drivers and pedestrians, burning through red lights and ignoring one-way systems and not giving a damn about police, until he spotted the sign with a red cross and the words 'HÔPITAL PASTEUR URGENCES'. ", "Moments later he swerved into the hospital car park, skidded into a space, burst out of the BMW and ran for the entrance without bothering to lock the car.", "\n\nIt wasn't until Ben shoved through the doors into the hospital emergency-room reception area that he realised that his hands, face and clothes were still covered in blood and he looked like someone who'd just been dragged out of a train wreck. ", "That probably accounted for some of the looks he'd been getting on the way here. ", "The same expressions were on the faces of the hospital staff as they came rushing to meet him, intent on grabbing him and shoving him onto a gurney before he collapsed on the floor.", "\n\n'It's not me. ", "I'm not hurt,' he explained to the nurses, putting out his bloodstained hands to ward them off him. '", "Jeff Dekker. ", "He was brought here by helicopter. ", "Less than an hour ago. ", "Where is he? ", "Is he—?'", "\n\nNot dead, was all the information he could glean from any of the tight-lipped nursing personnel. ", "A large matron kept insisting that if he would please settle down and wait, Docteur Lacombe the head surgeon would update him as soon as possible. ", "Ben got the impression that Lacombe was deep in the middle of working on Jeff at that very moment. ", "Which explained why the nurses were being noncommittal about the condition of the patient. ", "Which in turn implied that things were very much in the balance and could go either way.", "\n\nBen did what they said and went to a small waiting area with banks of plastic seats and a vending machine. ", "He sat by a window that overlooked the hospital car park and gazed out without seeing anything.", "\n\nThe wait was agonising. ", "He took a few sips of eighteen-year-old single malt scotch from his old steel flask, then stared at it for a moment, thinking back to the time when it had turned a bullet that had been heading for his heart. ", "Perhaps it could have done the same for Jeff. ", "The thought made him want to swallow the whole contents of the flask, but he fought the urge and put it away.", "\n\nHe paced and sat down. ", "Paced and sat down. ", "The snow had stopped falling outside. ", "The sky was leaden, threatening a downpour of rain that would thaw the streets of Cherbourg to a brown slush. ", "Restless and badly in need of something other than alcohol to settle his nerves, he wanted to duck outside for a cigarette but worried that he might miss speaking to this Lacombe guy. ", "After another half-hour he dialled the Le Val office number, and Tuesday snapped up the call before the first ring was over.", "\n\n'Well?' ", "Tuesday sounded breathless with worry.", "\n\n'Nobody wants to tell me anything much,' Ben said. '", "I think they're operating on him as we speak.'", "\n\n'Then there's a chance,' Tuesday gasped. '", "Thank Christ. ", "When the phone rang I thought—'\n\nBen preferred not to dwell on what might all too well turn out to be false hopes. '", "What's happening there?' ", "he interrupted.", "\n\nTuesday let out a frustrated grunt and replied all in a flurry, 'Jesus, what _isn't_ happening here? ", "Now would be a good time to rob a bank, because it seems to me every cop in Normandy's turned up to get a piece of the action. ", "Not long after you left, four NH-nineties landed in the field, full of guys in black. ", "Then about thirty more vehicles rolled up. ", "They've got the whole place surrounded and they're combing through every square inch like it was the biggest terrorist incident in French history. ", "It's mayhem. ", "I've repeated the whole story so many times I'm beginning to feel like a bloody parrot.'", "\n\n'Let them do what they have to do,' Ben said. '", "Maybe they'll find something.'", "\n\nHe very much doubted they would. ", "More likely, the guys in black body armour would strut about feeling pumped up and hungry for Muslim extremists to gun down, then they'd eventually get bored and go home to their shoot-'em-up video games.", "\n\nHe asked, 'Is Vidal still there?'", "\n\n'Overseeing his troops like he's General Patton. ", "There's something else, Ben.' ", "Tuesday paused, sounding uncomfortable. '", "I'm really sorry. ", "I had no choice.'", "\n\n'What?'", "\n\n'They demanded access to the armoury, and I had to let them in. ", "They took the lot. ", "Stripped it totally bare.'", "\n\n'What do you mean, took the lot?'", "\n\n'Every last scrap, down to the empty spare magazines. ", "They even took the slings and bipods for the rifles. ", "Said it was a precaution in accordance with the new anti-terror legislation. ", "So if I tried to stand in their way, that pretty much made me a terrorist myself. ", "They loaded everything into an armoured van and gave me a slip of paper that says it's being kept in secure storage at a government facility until further notice. ", "Which basically means we're out of business for the foreseeable future. ", "I'm sorry, Ben. ", "If you want to fire me now, I'd understand.'", "\n\n'No, Tuesday. ", "You did the right thing and I wouldn't blame you for a minute, and neither will Jeff. ", "Listen, do me a favour. ", "Middle drawer of Jeff's desk there in the office. ", "There's a tatty address book. ", "Look under M and give me his mother's number in Australia.'", "\n\n'Got it,' Tuesday said after a moment, and Ben scribbled the number down on the back of his Gauloises packet. ", "Then he remembered the other call he was going to have to make, a prospect that felt like a cold knife going into his belly. '", "Now look under C.'\n\n'Chantal,' Tuesday said with a groan. '", "God, I'd forgotten all about her. ", "The poor woman. ", "Hold on. ", "Yeah, there's a mobile number.' ", "He read it out. '", "You want me to—?'", "\n\n'I'll do it,' Ben said grimly. '", "Thanks, Tuesday. ", "I'll keep you posted when I know anything.' ", "He ended the call. ", "Then took a deep breath and made the first of the two other calls he was dreading. ", "As the dial tone was pulsing in his ear he tried desperately to formulate what he had to say. ", "A woman's voice answered at the fourth ring, ten thousand miles away.", "\n\n'May I speak to Mrs Lynne Dekker?'", "\n\n'Speaking. ", "Who is this?'", "\n\n'Mrs Dekker, you don't know me. ", "My name's Ben Hope. ", "I work with Jeff.'", "\n\nIt was one of the worst calls he'd ever had to make. ", "But the next one, to Chantal Mercier, was even harder. ", "First the same stunned silence, then the same cry of anguish, the same gulping sobs. ", "Then, to make Ben even more miserable, followed the rage, the recriminations, the bitter accusations. ", "Chantal was certain that it was as a result of all the awful and dangerous things they did at Le Val that Jeff was hurt. ", "Ben tried to placate her, but could think of little to say.", "\n\nWhen it was over, he put the phone away and went back to the slightly lesser ordeal of waiting. ", "He wasn't counting the minutes. ", "He was counting the seconds.", "\n\nAbout nine thousand more of them had ticked by in his head, and the hands on the wall clock in the waiting room had left midday far behind, by the time a door swung open and a figure in a blue doctor's overall appeared, spotted him and started walking briskly over. ", "Ben stood up on jelly legs, his heart rate suddenly doubled. ", "He stopped breathing.", "\n\n_Here it comes_ , he thought. ", "\n\n## Chapter 5\n\nDr Lacombe was a she, with a mop of streaky blond hair that would probably have reached down past her waist if it hadn't been scraped back from her face and heaped and plaited into an elaborate French braid. ", "She was probably around thirty-five but looked older, with shadows under her eyes as if she'd been up all night and was ready to drop from stress and exhaustion. ", "Ben could picture how she must have looked just a minute earlier, in a surgical mask and apron and latex gloves, with even more of Jeff's blood spattered on her than he had.", "\n\n'Sandrine Lacombe, head surgeon,' she said, offering a hand, and Ben could tell from her tone that the news couldn't be entirely bad. ", "Relief flooded through him like warm honey pouring through his veins. ", "He started breathing again.", "\n\nThe doctor's grip was firm and dry. ", "She had a clipped, efficient manner that Ben liked instantly as she started briefing him quickly on the situation.", "\n\nIt wasn't as bad as it could have been, but it could have been a lot better. ", "Jeff had lost a tremendous amount of blood, necessitating an emergency transfusion the moment he'd been brought in. ", "Meanwhile the path of the bullet, narrowly missing his heart, had caused massive tissue damage and internal bleeding in the chest cavity and collapsed a lung. ", "They'd almost lost him twice during the three-hour operation. ", "Now moved to the intensive care unit, he seemed to have stabilised. ", "Holding on, but still deep in the woods.", "\n\n'We've done all we can,' Dr Lacombe sighed. '", "I managed to sew up and reinflate the ruptured lung. ", "As for the rest of the damage, now only time will tell if he's going to pull through.'", "\n\n'Thank you,' was all Ben could reply.", "\n\nDr Lacombe puffed her cheeks and gave a little shrug as if to say, don't thank me too soon. '", "The next twelve hours will be difficult,' she warned. '", "There's a high risk of complications. ", "Frankly, given the extent of the trauma I would give him little more than a sixty per cent chance of surviving this. ", "He wouldn't have made it even this far, if someone hadn't prevented him from bleeding to death at the scene.' ", "Her weary but sharp blue eyes flicked up and down, taking in Ben's bloodied appearance. '", "I take it that someone was you, Monsieur—?'", "\n\n'Hope. ", "Ben Hope.'", "\n\nA flicker of surprise in her eyes, that she wasn't speaking to a Frenchman. ", "Ben spoke the language without any trace of accent. ", "She went on, 'It was also you who provided the patient's blood group. ", "Thank you for that. ", "If we hadn't known in time, there's little chance he would still be with us now. ", "It appears you have some medical training?'", "\n\n'British Special Forces, a long time ago. ", "They teach you a few basics to keep your people going when they've been shot, burned or blown up.'", "\n\nShe nodded pensively. '", "I thought you looked _militaire_. ", "Anyway, you've helped to save his life for the moment, and with any luck he may live to thank you for it. ", "We'll do everything we can from here. ", "But please don't get your hopes up.'", "\n\n'I appreciate your directness, Doctor. ", "That's exactly what I need.'", "\n\n'May I ask what is your relation to the patient?'", "\n\n'Friend and business partner.'", "\n\n'This business, it's in Basse-Normandie?'", "\n\n'We've been based here for a number of years.' ", "Ben left out what she didn't need to know: that he'd spent a good portion of that time flitting from place to place and getting himself into trouble all over the world, and could speak a variety of languages as well as French. ", "Jeff was Mr Stay-at-Home by comparison.", "\n\n'I see. ", "What about his family – has Monsieur Dekker any relatives?'", "\n\n'A mother who emigrated to Australia. ", "And a fiancée a little closer, in Saint-Acaire. ", "They've already both been notified. ", "His mother's got a long way to travel to the nearest big airport, but I'd imagine she'll be on her way soon.'", "\n\n'It'll be a while before I'll allow him to have any visitors.' ", "Dr Lacombe paused. '", "What about you? ", "You have a contact number?'", "\n\n'I'm not going anywhere. ", "Any changes in his condition, I'll be right here.'", "\n\n'Just in case,' she said, handing him a card, 'this is my personal cell number, if you need to talk. ", "I don't give this out to everyone, you understand?'", "\n\n'I appreciate your help, Doctor.'", "\n\nShe paused again, fixed him with those sharp eyes, as blue as topaz, and said, 'You know I have to report this, don't you? ", "A gunshot wound of this kind—'\n\n'I understand,' Ben said, 'but the police already know all about it. ", "Some of them were already there just after it happened. ", "I'm afraid more of them will be landing on your hospital pretty soon, looking for me.'", "\n\nShe shook her head. '", "What did happen?'", "\n\n'He was shot.'", "\n\n'I can see that. ", "I mean, what _happened_?'", "\n\n'We were cutting up a fallen tree. ", "Talking about this and that. ", "He'd just told me that he was getting married. ", "It was a happy time. ", "We had no idea that someone was watching us. ", "Someone hidden, quite a distance away, with a rifle. ", "Then they fired. ", "One shot, one hit. ", "You know the rest.'", "\n\n'I don't understand.'", "\n\n'Neither do I,' Ben said. '", "Not yet.'", "\n\n'Does your friend have, I don't know, enemies?'", "\n\n'Looks that way,' Ben said. '", "One with a rifle, and who knows how to use it. ", "Sniper-style, probably set up on a bipod and fitted with a scope. ", "Judging by the ballistics, the gun's something around a thirty-calibre, like a .270 or a .308. ", "Maybe fitted with a silencer too, which could explain why I heard nothing over the noise of the chainsaw. ", "Those are the only clues I have so far, for what they're worth.'", "\n\n'I don't know anything about guns, except what they can do to people,' Dr Lacombe said with a faraway look and a slight shiver, as if she was visualising a whole back-catalogue of horrors she'd personally witnessed in the course of her surgical career. '", "And I don't like them.'", "\n\n'I don't much like them either,' Ben said. '", "Except when they're used for good.'", "\n\n'How can a tool of violence and death be used for good?'", "\n\n'When it's deployed against the person who spilled first blood,' Ben said.", "\n\n'You're talking about justice. ", "That's a job for the police.'", "\n\n'When they can find the guy. _", "If_ they can find him.'", "\n\n'Are you saying you intend to find him?'", "\n\n'I'm saying I intend to make this right.'", "\n\nShe looked at him. '", "This is not a war, Monsieur Hope.'", "\n\n'Tell that to your patient,' Ben said.", "\n\n'When he recovers,' she said. ' _", "If_ he recovers.'", "\n\n'He's tough as an old boot,' Ben said. '", "He's been hurt before and pulled through.'", "\n\n'As badly as this? ", "Then I hope for your friend's sake that he's as fortunate this time.'", "\n\nBen felt suddenly weary and dizzy, as if all his energy had drained out through his feet. ", "He glanced around him for something to lean on. '", "No,' he admitted quietly. '", "Not as badly as this.'", "\n\n'You don't look good,' Sandrine Lacombe said, frowning at him. '", "I think we should take a look at you.'", "\n\n'I'm not hurt. ", "None of this is my blood. ", "I already told them that.'", "\n\n'I know a delayed shock reaction when I see one.'", "\n\n'I'm fine.'", "\n\n'No, you're not. ", "Trust me, I'm a doctor.'", "\n\n## Chapter 6\n\nDespite his protests, Sandrine Lacombe dispatched a squad of nurses to attend to Ben while the doctor herself hurried back to the ICU to check on Jeff and see to the rest of her rounds. ", "Ben was taken into an examination room where he did his best to fend off the nurses' attentions, but gave in when he caught a glimpse of himself in a mirror and didn't recognise the wild man looking back at him: the figure of an escaped desperado who had taken refuge in a slaughterhouse. '", "You can't go around the hospital looking like that,' said the head nurse. '", "You'll frighten the patients.'", "\n\nOnce they'd exchanged his bloody rags for a hospital gown and confirmed what he already knew, that none of the blood was his, they started insisting on treating him for shock. ", "Ben drew the line at sedatives. ", "He needed to keep his wits about him. ", "But a hot shower seemed like a good idea, and he gladly followed the head nurse down the corridor to get himself cleaned up.", "\n\nHe stood under the splashing hot water for fifteen long minutes, trying to wash away the tension that locked up his neck and shoulder muscles. ", "Looking down at his feet, he saw the cloudy rust-coloured swirl of Jeff's blood running off him and circling the drain. ", "He still felt strangely numb. ", "It all seemed somehow surreal, as if he were watching himself from the outside; as if these events were just an awful dream from which he half expected to awake at any second. ", "One instant Jeff had been there at his side, his usual self, cheerful and focused and content with the future; the next there was an empty, desolate space where Jeff used to be. ", "Good old solid Jeff, who was always there when you needed him, whose spirits were so hard to dampen, who had saved Ben's skin on more than a couple of occasions. ", "Someone like that couldn't just disappear from your life and not be there any more.", "\n\nNo, it didn't seem real. ", "But reality would bite soon enough, all right, if Sandrine Lacombe returned to break the news that the patient had slipped away despite all their efforts. ", "Ben had lost enough people close to him to know exactly how he would feel then.", "\n\nOne step at a time, he decided. ", "There was no other way to deal with this.", "\n\nAfter his shower Ben towelled himself and put on the clothes that the nurse had left folded on a chair for him. ", "His own, except for his leather jacket, were probably already in the hospital incinerator. ", "What they'd brought him would have fitted a man two inches shorter and forty pounds heavier, but at least he wouldn't have to meet the cops dressed like an in-patient.", "\n\nJust as he'd expected, there were six plain-clothes officers waiting for him in the corridor when he emerged from the bathroom. ", "During his years as a kidnap rescue specialist and since, Ben had dealt with a lot of police officers in a lot of countries. ", "A few notable exceptions apart, he'd never been able to form much of an affinity with them. ", "But in this situation, he promised himself, he would try to keep it civil.", "\n\nIt proved to be a hard promise to keep. ", "Even as he walked towards them along the corridor and saw them all turn to stare at him, Ben's eye had picked out the most officious-looking one and decided he must be in charge. ", "He was right. ", "Inspector Sébastien Tarrare couldn't have been more puffed-up if he'd been personally appointed by the president as commander-in-chief of French national security.", "\n\nThey waved him into the same small waiting area whose walls Ben had already spent three hours studying. ", "The shortest and fattest of the cops, with a bristly neck and protruding teeth, helped himself to a Coke from the vending machine. ", "Ben gave him a hard look. ", "Tarrare invited Ben to sit. ", "Ben preferred to stand. ", "They'd barely exchanged ten words yet, and already it wasn't going too well. ", "All six cops looked on edge, shooting him cagey looks as though he was some kind of terror suspect himself. ", "It was a good thing his name was Ben Hope and not Bin Hossain, he thought, or Tarrare and his little posse would have cordoned off a security zone several blocks around the hospital and called in tanks and artillery support by now.", "\n\nInspector Tarrare briefly introduced his five colleagues, whose names Ben dismissed from his memory the instant he heard them, and then went on to offer a few insincere-sounding condolences for what had happened.", "\n\n'He's not dead yet,' Ben said.", "\n\n'But I am given to understand he is mortally wounded,' Tarrare replied, arching an eyebrow.", "\n\nBen definitely didn't like him now.", "\n\n'In any case we are obliged to treat this as a matter of the utmost priority. ", "Especially under the circumstances, considering the nature of the target.'", "\n\nNow it was Ben's turn to arch an eyebrow. '", "The target?'", "\n\n'A terrorist's dream. ", "Your place of business has more military hardware all stockpiled in a single place than any French Army base.'", "\n\nBen said, 'If that's true, then the government had better step up its defence spending. ", "We have a small armoury, kept highly secure and subject to regular inspections, every item in it registered and licensed down to the last round of ammunition, with a stack of official paperwork to prove it. ", "Which I know you already know, Inspector, so let's cut the bullshit. ", "Besides, as far as anyone can prove at this point the target was a man, not a place of business. ", "My friend was shot. ", "I didn't see a terrorist raiding party storming the compound to blow open the armoury for its contents. ", "Nor did any of the witnesses to the immediate aftermath of the shooting, including several officers of your very own SDAT.' ", "So put that in your pipe and smoke it, he wanted to add, but didn't.", "\n\n'All the same,' Tarrare said without missing a beat, 'this is an extremely serious situation.'", "\n\n'No argument there,' Ben told him. '", "You have an attempted murder to solve and a guy running loose with a rifle. ", "Maybe that should be your priority.'", "\n\n'And maybe you should read the papers,' said the porcine cop with the can of Coke, tipping it towards Ben as he spoke. '", "France is under attack from radical extremists. ", "Any day now, another major incident is expected to happen anywhere in the country. ", "But you don't seem to think this incident is connected with the current national state of emergency?'", "\n\n'By radical extremists, I take it you mean Islamic ones?'", "\n\nTarrare pulled a face and grunted, 'Who else?'", "\n\n'Just making that clear,' Ben said. '", "I mean, for all we know it could have been anyone from the National Liberation Front of Corsica, to the Basque separatists, to the Unité Radicale bunch who tried to shoot your president a few years back. ", "Or maybe those Action Directe guys or the Red Army Brigade are back in business and looking to procure some weaponry for a new wave of terror attacks that will shake things up like nothing Europe has ever seen before. ", "Basically, it could be anyone at all. ", "I'd say you boys have your work cut out for you, for sure.'", "\n\nNobody replied. ", "The cops all glared at him.", "\n\nBen pointed up at the big clock on the waiting-room wall, which read 2.15 p.m. 'But you must be hungry, missing lunch over this stuff. ", "Why don't you do what you do best, head down to the nearest bistro for a nice meal and a bottle of wine and spend an hour or two working out how to become the heroes who saved the republic? ", "Then maybe you'd like to call Commander Roman Vidal and ask him if they've found a single scrap of evidence down there at Le Val linking the shooting with the activities of any known or suspected terror group of any kind.'", "\n\nThe cop with the can pulled a nasty sneer. '", "If it wasn't terrorists, then what? ", "Maybe a hunter let off a stray shot? ", "Thought your friend was a wild boar?'", "\n\nBen stared at him coldly and wondered how fast the guy's smirk would disappear with that Coke can rammed down his throat. '", "Wild boar hunters shoot in groups, with spotters and beaters. ", "They don't snipe at their quarry from extreme ranges, with no safety backstop except someone's wire fence. ", "They don't use silencers and they don't generally confuse a human with a large hairy pig. ", "Though,' he added, giving the cop a deliberate up-and-down look, 'in some cases I can see how that misunderstanding might arise.'", "\n\nThe cop's eyes narrowed and he flushed scarlet. '", "Then who did this? ", "Enlighten us, as you're obviously so knowledgeable.'", "\n\n'That's a very good question,' Ben said. '", "I don't know who did this, any more than you do. ", "But then, I'm not the police, am I? ", "I'm just a visitor to this hospital, waiting to find out if my friend in there is going to live or die, and having to waste my time answering pointless questions while you guys should be out there searching for the answers. ", "So how about you leave me alone now?'", "\n\nWhen the disgruntled cops eventually did leave, Ben called Tuesday again to update him on Jeff's condition. ", "Moments after he'd put his phone away, Ben heard footsteps and turned to see Dr Lacombe approaching. ", "The look on her face made his heart jerk to a stop for a moment. ", "Even before she opened her mouth to speak, he knew she'd come to deliver bad news.", "\n\n'There's been a complication,' she said gravely.", "\n\n'What kind of complication?'", "\n\nShe sighed. '", "I'm very sorry. ", "I was afraid something like this would happen.'", "\n\n'Talk to me. ", "Tell me he's alive.'", "\n\n'He's alive. ", "But—' She went into a rapid stream of medical terminology like post-traumatic pulmonary thromboembolism and right ventricular failure and circulatory failure and mechanical ventilation, until Ben stopped her.", "\n\n'I don't understand. ", "What happened?'", "\n\n'He had a blood clot in the lung. ", "It caused a severe stroke and he's no longer able to breathe on his own. ", "We gave him a massive dose of barbiturates to induce deep unconsciousness, so the machine could breathe for him. ", "I have no idea how long we might have to keep him under. ", "Worst case, perhaps indefinitely.'", "\n\nBen could only repeat her words dully, as if he'd become stupid. ", "His brain couldn't compute what she was telling him. '", "Are you saying—?'", "\n\n'I'm afraid so, yes. ", "He's in a coma.'", "\n\n## Chapter 7\n\n'There's nothing you can do here,' she told him. '", "You might as well go home and rest. ", "You look like you need it.'", "\n\n'Maybe I'm not the only one,' Ben said. ", "Sandrine Lacombe looked every bit as wrecked as he felt.", "\n\nShe shrugged. '", "I'll stay with him as long as I can. ", "I might go home myself for a couple of hours' sleep, but I'll have my colleague Dr Sauveterre call me if there's any change in his condition. ", "I live nearby, so, any developments, I can come straight over.'", "\n\nBen was touched by her determination to do whatever she could for Jeff. '", "I'll go,' he agreed. '", "There are some matters I need to attend to back at the house. ", "But before I do, can I see him?'", "\n\nDr Lacombe frowned and seemed about to say no, then relented. '", "Just for a minute, okay?'", "\n\nShe was about to lead the way when a movement outside caught Ben's eye and he looked out of the window to see a black Peugeot taxicab come speeding into the hospital car park. ", "It pulled up close to the entrance and a pretty brunette in a tweedy winter coat clambered out, her face red and streaked with tears.", "\n\nSandrine Lacombe noticed Ben's expression. '", "The fiancée?'", "\n\nHe nodded. ", "Chantal Mercier had arrived.", "\n\nMoments later there was commotion in the reception area. ", "Ben grimly went to meet her, but didn't have a lot of talking to do as the doctor took charge of the emotional scene and broke the news of the latest negative developments with a level of calm, sympathetic but firm professional control that a lot of top-rank military commanders would have envied.", "\n\nChantal sniffed, wiping her eyes. '", "Where is he?' ", "Her voice was hoarse from crying.", "\n\n'You can see him,' Sandrine Lacombe said gently with a glance at Ben. '", "But only for two minutes.'", "\n\nChantal barely looked at Ben as the doctor led them down a series of corridors to the ICU. ", "Jeff had been moved into a room behind a glass partition. ", "His bed was surrounded by so much equipment that he was barely visible. ", "A coloured monitor on a stand showed his heartbeat, slow and steady. ", "More screens and racks of beeping electronics were flashing up streams of data that were meaningless to Ben. ", "A drip bag dangled above his friend. ", "Lying there completely still in the middle of it all, Jeff looked shrunken and frail under the sheet, as if all the vital force had been sucked out of him. ", "The respirator tube was attached to a mask over his mouth and nose. ", "Dozens of smaller pipes and hoses hung off him like snakes. ", "His eyes were shut. ", "He was barely recognisable.", "\n\nChantal let out a stifled cry when she saw him, raced to the bedside and clasped Jeff's hand in both of hers, her face contorted and streaming with tears all over again. '", "Oh my God, oh my God,' she kept murmuring. '", "He feels so cold.'", "\n\n'That's normal,' Sandrine Lacombe said, but Ben could see the sharp worry lines etched into her face.", "\n\nChantal pulled herself as close to Jeff as all the tubes and wires would let her. ' _", "Mon pauvre amour, est-ce que tu m'entends? ", "Réponds-moi_.'", "\n\n'He can't hear you,' Sandrine Lacombe said softly. '", "He's far away.'", "\n\nChantal looked up, eyes swimming and full of terror. '", "How long will he be like this?'", "\n\n'I can't say.'", "\n\n'What does that mean? ", "Are you trying to tell me he could be like this for _ever_?'", "\n\n'I can't say,' the doctor repeated, tight-lipped.", "\n\n'If he wakes up, will he be... like before?'", "\n\n'I'm sorry. ", "I can't say that either.'", "\n\nAn angry flush of colour came back into Chantal's cheeks. '", "You're supposed to be a doctor. ", "How can you not know these things? ", "I want a second opinion. ", "I _insist_ on—'\n\nBen couldn't stand it any longer. ", "He stepped around the foot of the bed, gently took Chantal's arm and said, 'Dr Lacombe is doing all she can. ", "Let me drive you home. ", "We can come back when it's okay to visit.'", "\n\nBut Chantal jerked her arm away and shook her head furiously. '", "I want to stay with him.'", "\n\n'That's not an option,' Sandrine Lacombe said, gentle but firm. ", "Chantal opened her mouth to protest, but all that came out was sobbing.", "\n\nIt was a long and sombre drive back. ", "The cold rain was lashing down, and all that remained of the earlier snow was the dirty roadside slush. ", "Chantal sat with her head bowed and her face in her hands all the way, not speaking. ", "Ben didn't know what to say to her. ", "He was having a hard time dealing with his own emotions, and in the end he fell into silence too.", "\n\nThe short winter day was darkening by the time they reached Saint-Acaire. ", "When the Alpina pulled up outside her little terraced house on the edge of the village, Chantal got out and ran to her door and disappeared inside without a word. ", "The door slammed.", "\n\nBen sat for a moment, lit a Gauloise and then drove on.", "\n\nWhen, a few minutes later, he turned off the road onto the innocuous farm track that led to Le Val's entrance, he found its floodlit security gates partially blocked by a TV crew van and alive with a throng of reporters armed with cameras and microphones and clamouring for details about the shooting. ", "A cop car was in attendance nearby but the gendarmes seemed content just to smoke and watch from a distance as Serge and Adrien, from inside the locked gates, were kept busy holding the noisy crowd at bay, repeating 'No comment, no comment' to a thousand insistent questions fired at them like bullets.", "\n\nBen slipped the BMW through the chaos, as thankful for the tinted glass shielding him from flashing cameras as he was for the tall fence and barbed wire keeping the zombie horde from invading the private sanctuary inside.", "\n\nOnce he'd made it through the gates and down the track to the heart of the compound, Le Val had never seemed to him so empty and desolate. ", "The fleet of police vehicles had all gone. ", "Jeff's Ford Ranger was still where Ben had left it. ", "Parked behind the pickup was the old Land Rover, and behind that was a little Renault Clio hatchback he didn't recognise, but he was too tired and upset to think about it.", "\n\nTuesday must have seen the approaching lights of the BMW. ", "He stood silhouetted in the glow from the open farmhouse door as Ben stepped out of the car and walked up the steps. ", "Tuesday's face was drawn and grim, and became even more so when Ben gave him the latest update on Jeff. ", "They spoke for a few moments in the kitchen, where a bottle of scotch and a half-empty glass rested on the table. ", "It wasn't like Tuesday to drink, but he'd made some inroads into the bottle already. ", "Ben fetched down another glass from the cupboard, filled it to the brim and knocked half of it down in a long, stinging swallow that made his eyes water.", "\n\n'We're all over the TV news,' Tuesday said. '", "It's a bloody circus. ", "I've given up watching.'", "\n\n'What do they know?'", "\n\n'Just that some British guy got shot. ", "None of the details have been released yet. ", "But watch this space. ", "This is going to be terrible for the business.'", "\n\n'To hell with the business,' Ben said. ", "He slumped at the kitchen table with his drink. ", "It was only now that the full reality of the situation was beginning to kick in. ", "It would be a long night. ", "And a long day to follow. ", "The first of many long days.", "\n\nTuesday was shifting about uncomfortably as though he wanted to say something but didn't know how to put it. ", "Ben looked at him. '", "What aren't you telling me?'", "\n\nTuesday pointed in the direction of the living room. '", "You, um, you have a, erm, visitor.'", "\n\nBen's heart fell, remembering the strange car outside. ", "Tuesday's nervousness and the way he suddenly made himself scarce a moment later, told him all he needed to know. ", "Left alone in the kitchen, Ben refilled his glass. ", "He walked slowly from the room. ", "Paused outside the living-room door. ", "It was ajar and he could see a dim light on inside.", "\n\nHe pushed the door silently open and stepped through it.", "\n\nShe was standing with her back to the doorway. ", "Her rich auburn hair was shorter than it had been last time he'd seen her. ", "The sight of her brought a whole new flood of emotions that Ben didn't know if he could handle, not at this moment.", "\n\n'Hello, Brooke,' he said.", "\n\n## Chapter 8\n\nShe turned. ", "Apart from her hairstyle, she hadn't changed. ", "She was as achingly beautiful as ever. ", "More, even, but maybe that was just because he hadn't seen her in such a very long time. ", "But there was no smile. ", "Not that he'd expected one from her, even on a better day than today. ", "Her green eyes, vivid even in the dim light of the single side lamp, were moist with tears.", "\n\n'I came as soon as I heard,' she said.", "\n\nBrooke was officially still on the books as a member of the Le Val team, although she hadn't worked there lately. ", "Tuesday must have called her earlier that day. _", "Thanks for letting me know_ , __ Ben thought.", "\n\n'What happened?' ", "she said. '", "Who did this?'", "\n\nHe shook his head. '", "I wish I knew what to tell you.' ", "A long mournful silence filled the room. ", "He took a step towards her. '", "It's good to see you again,' he said, because he didn't know what else to say. ", "In any case, it was a lie. ", "Seeing her again, especially now, like this, was indescribably painful.", "\n\n'Whatever,' she murmured.", "\n\n'How are you?' ", "It sounded so lame.", "\n\nShe shrugged. '", "There isn't much to say, Ben. ", "I'm working. ", "Living in London again. ", "Life goes on. ", "I'm with someone else now.'", "\n\nBen said, 'I hope you're happy.'", "\n\n'Don't try so hard to sound like you mean it.' ", "Her voice rose a tone, cracking out at him like a whiplash. ", "Then she paused, softened a little, let out a sigh. '", "I'm sorry. ", "I shouldn't have said that. ", "Yes, I'm happy. ", "I think I am. ", "That is, I was, until today, until I heard about Jeff. ", "This is so awful.'", "\n\nHe hesitated, knowing that the question bursting to come out was the wrong thing to say, especially at this moment. ", "But then he thought, Fuck it, and let it out anyway. '", "Please don't tell me you're back with that prick Rupert Shannon again.'", "\n\nShe stiffened. '", "Give me some credit, will you?'", "\n\n'That's something, at least. ", "Then who is he?' ", "Ben asked, knowing very well how badly he was crossing the line. ", "But he'd committed himself now and there was no turning back.", "\n\nBrooke folded her arms across her chest and gave him a piercing look. '", "What I do and who I see is my business. ", "You took yourself out of my life when you walked away. ", "Your choice, Ben. ", "Live with it.'", "\n\nHe had been living with it, not always successfully. '", "Yeah,' he muttered. '", "I'm sorry I asked. ", "It was wrong.'", "\n\n'Is Jeff going to be okay?'", "\n\n'They had to induce a coma.'", "\n\nBrooke's face fell. ", "She'd known Jeff for years, going back to when she'd first come to lecture classes at Le Val as a visiting expert on hostage psychology. ", "Dr Brooke Marcel, one of the leaders in her clinical field. ", "One of the great lost loves of Ben's life. ", "Letting her go the way he had was his biggest regret – it hurt him every day, like an old war wound that could never quite heal.", "\n\n'I booked a room at the Manoir in Valognes,' she said. '", "I'll drive up to the hospital in the morning, but then I have to rush back to London for work.'", "\n\n'Thanks for stopping by.'", "\n\n'I don't know why... I just thought...' Her voice trailed off, and then she shook her head. '", "God, what a mess. ", "Who could have done this to him? ", "I can't understand. ", "I mean, Jeff never hurt anybody.'", "\n\nBen thought about that. ", "You couldn't be the high-level military operator Jeff Dekker had once been without hurting anyone, or at least being involved in a good deal of it. ", "Special Forces made enemies around the world and there was no shortage of folks who would go to all kinds of lengths to get back at them if they could. ", "But the shroud of secrecy around the Special Boat Service, Jeff's old unit, was no different from the impenetrable cloak that protected the identities of operatives within Ben's own former 22 SAS regiment. ", "Practically nobody on the outside knew who these men were. ", "Targeted revenge attacks against individuals in response for things they had done in the name of their country were pretty much unheard of. ", "Unless someone within their own unit had somehow been turned or manipulated by a third party with an axe to grind, or gone bad themselves. ", "Ben had already worked through a mental list of possible candidates, and crossed their names off one by one until none remained.", "\n\n'Whoever it was,' he said, 'they've just made the biggest mistake of their life.'", "\n\nShe looked at him, understanding from the look in his eyes what he was thinking. ", "Brooke knew him well enough, from long experience, to know exactly how he was liable to respond in this situation.", "\n\n'Leave it to the police, Ben. ", "Hasn't there been enough trouble already?'", "\n\n'It seems to me that the shooter isn't having any trouble at all,' Ben said. '", "He got in, did his work, and got out. ", "Job done, nice and easy. ", "Now he's out there somewhere enjoying life with a clear conscience. ", "I can't let that happen.'", "\n\n'So you're taking it upon yourself to sort things out. ", "As usual.' ", "Brooke said it with an exaggerated tone of resignation.", "\n\n'You haven't met Inspector Tarrare and his goon squad. ", "They couldn't catch the flu in the middle of an epidemic. ", "Don't try to twist this around, Brooke. ", "If that was me lying in that hospital bed, breathing through a machine, Jeff would do the same thing and you know it.'", "\n\n'Jeff needs you here.'", "\n\n'As in, don't go running off and getting yourself killed?' ", "he said. ", "He almost added, 'Why should you care anyway?' ", "But he bit his lip. ", "He'd already said too much.", "\n\nShe gave a sour laugh. '", "What am I saying? ", "As if anyone had a chance in hell of stopping you, once your mind's made up. ", "Running off when people need you around is what you do best, after all.'", "\n\nThat hit below the belt. ", "Ben could have replied, 'You were the one who broke off the engagement, not me.' ", "But this was no time for a drawn-out argument. ", "He clenched his teeth and said nothing.", "\n\n'I didn't come here to fight,' Brooke said sadly after a beat. '", "I'll go now, before one of us says something we'll both regret.'", "\n\nThere was no physical contact between them as she was leaving. ", "He wanted to reach out to her, even if he didn't deserve the comfort of her touch. ", "He stood in the door and watched the tail-lights of the Renault Clio disappear up the track towards the gates, where she'd have to run the gauntlet of zombie reporters clamouring for their story. ", "Then she was gone, and the rainy night closed in behind her.", "\n\nBen could have done with some company, but Tuesday had disappeared. ", "He returned to the kitchen and swallowed down some more whisky. ", "Still the best cure ever devised for delayed shock, and other things.", "\n\nHe wandered back outside into the rain. ", "Out of the darkness came a familiar shape, and a wet nose nudged Ben's hand in greeting. ", "Storm trotted by his side as he crossed the yard, looking up at him curiously. ", "The dog seemed subdued, as if he understood something.", "\n\nBen walked over to the dark, silent office building opposite the house. ", "Inside, he flipped on the light. ", "Looked at Jeff's empty desk. ", "Sat down at his own, and stared into space. ", "It was cold inside the office building, but Ben was too numb to feel the chill. ", "Just like he was too sick to feel hungry, even though his stomach was empty apart from ten-year-old Laphroaig. ", "Maybe he needed to drink some more, because the image of Jeff lying there in the hospital kept coming back to him. ", "He tried to flush it out of his mind's eye by picturing the unknown shooter. ", "The blank face behind the rifle. ", "Ben wondered what he was doing right this moment, what he was thinking.", "\n\n'I'll find you,' he said out loud. '", "Don't ever think I won't.'", "\n\nBut he wasn't going to find him tonight. ", "Wherever the shooter had gone, he had a head start that Ben knew he couldn't hope to make up by going off half-cocked, jumping in his car and tearing off on a revenge mission with not a single clue or lead.", "\n\nTomorrow would be another day.", "\n\nUntil then, Ben could only bide his time, lay aside his restless thoughts and try to relax.", "\n\nAs he sat there at the desk, he looked down and saw the unopened letter from the Bollati penitentiary in Milan, lying there exactly where he'd left it that morning when he'd gone to help Jeff with the fallen tree. ", "He'd forgotten all about it until now.", "\n\nHe gazed at it for a moment. ", "He had nothing better to do, and maybe it would help take his mind off things. ", "He picked up the envelope, slipped out the letter. ", "Unfolded it.", "\n\nAnd began to read.", "\n\n## Chapter 9\n\nThe letter was handwritten on three thin sheets of headed Bollati prison paper. ", "The first thing that caught Ben's eye was that it was in Italian, a language he spoke less fluently than French but in which he nonetheless could hold his own pretty well. ", "The second thing he noticed was the handwriting itself, a fine flowing italicised script that very few people could produce any more, and which clearly showed its author as being someone of a certain age and education.", "\n\nAt the top of the first page the November date, a few days earlier than the postmark on the envelope, told him that it had been written while he, Jeff and Tuesday were fighting for their lives in Africa. ", "No indication of the writer's identity, so Ben flicked over to the last page and ran his eye down to the bottom. ", "His eyes narrowed in surprise when he saw the signature.", "\n\nThe letter's author was one Fabrizio Severini.", "\n\nA name Ben recognised immediately. ", "It flooded his mind with memories from years back, returning him to a chapter in his life when he'd still been working freelance as what people in that little-known trade called a 'K&R crisis consultant'. ", "The K and R stood for kidnap and ransom, which had been Ben's particular area of expertise in those days. ", "When vulnerable, innocent people – many of them children – were taken by ruthless criminals looking to extort money from their loved ones, and when the conventional avenues for getting them back had been tried and failed, it had been Ben's job to employ his own specialised means to hunt the kidnappers and bring the victims home as unscathed as possible. ", "The kidnappers had rarely come out of it unscathed themselves. ", "It had been a dangerous business for them once Ben was involved.", "\n\nDangerous for Ben, too. ", "And the strange mission that had indirectly brought him into contact with Fabrizio Severini had been one of the most hazardous of them all. ", "What had started as the race to save the life of a child had led Ben through some unexpected twists and turns before placing him in conflict with one of the most tenacious, ruthless enemies he'd ever encountered, a man named Massimiliano Usberti.", "\n\nUsberti was a rogue senior Italian archbishop who controlled a secret and powerful Christian fundamentalist cult called _Gladius Domini_ : Sword of God. ", "Its brainwashed members, branded with a tattoo to show their allegiance, were prepared to kidnap, torture or assassinate anyone who stood in Usberti's way. ", "One of Usberti's trusted inner circle had been a psychopathic killer called Franco Bozza. ", "Another had been his close aide and personal secretary, Fabrizio Severini. ", "Ben had worked alongside the only law enforcement officer he'd ever trusted, the intensely cerebral, sharp-witted and fiercely driven Parisian cop Luc Simon to bring down Gladius Domini. ", "In the process, Ben had been shot, almost stabbed, come within a whisker of being crushed by a speeding train, and been very nearly incinerated in a burning mansion. ", "All more or less run-of-the-mill stuff for him. ", "He'd also found love, not lastingly, in the form of the American scientist Roberta Ryder.", "\n\nDuring the final shakedown that brought the cult to its knees, Massimiliano Usberti had been arrested while many of his cronies, Severini included, had fled for the hills. ", "But Severini had proved much less wily than his leader: INTERPOL had scooped him up just a few weeks later, while over the next few months – pretty much as Ben had expected might happen – Usberti had used his influence in high places, his power and his wealth, to oil his way out of trouble. ", "In the end Usberti had walked away from the affair a free man – albeit disgraced, broken and barred from ever again regaining his old position in the church.", "\n\nWhen the news had broken that the charges against Usberti had been controversially dropped, Ben had already been moving on with his life and becoming involved in the hunt for a missing girl abducted by an international child sex trafficking ring.", "\n\nFor a while afterwards he'd toyed with the idea of going after Usberti to deliver some natural justice where the courts had failed. ", "But he'd reluctantly given up on the plan. ", "If anything untoward had happened to the former archbishop, Luc Simon – by then promoted from the Paris police to a desk at the INTERPOL HQ in Lyon – would have known about it, instantly put two and two together and jumped on Ben with all the force of his new position. ", "Ben had thought about it less and less over time, and eventually let the whole thing fade from his mind. ", "It wasn't a perfect world. ", "The bad guys sometimes walked: you just had to deal with it.", "\n\nIf there was any consolation, it was that not all of Gladius Domini's surviving members had got off so lightly. ", "Quite how Usberti had managed to get Severini to take the fall for him, Ben would never know and had long ago stopped caring. ", "But the prison notepaper in his hands was certainly proof, if nothing else, that Severini's plunge had been a spectacular and enduring one. ", "Ben wondered how many more years the man had left to serve.", "\n\nThat wasn't all Ben was wondering as he returned to the start of the letter and began reading, translating from Italian as he went. ", "Why on earth was Fabrizio Severini, a man he'd never even seen in the flesh, writing to him after all this time? ", "He was about to find out.", "\n\n_Dear Signor Hope,_\n\n_It is with a heavy conscience and only after a great deal of soul-searching that I write to you, as well as with the heartfelt wish that you will both forgive this unsolicited and most unorthodox personal communication and treat its content as an expression of my utmost sincerity._", "\n\n_Considering we have never met in person and never shall, you are doubtless wondering why I have chosen to send you this letter. ", "I fully understand that you may not wish to read it and will instead feel impelled to tear it up; but for reasons that will become clear below, I beg you to read on and hear what I must tell you._", "\n\n_In the years since its downfall, I have always remembered you as the man primarily responsible for bringing to an end the insidious organisation in which I once so strongly believed, and whose name I cannot now bring myself to mention. ", "Nor do I find it easy to express the deep shame I continue to endure each and every day, as I sit here in my cell with little to do except think back to those dark times, to the many and terrible sins committed, to which I was so blind, and to the man I once idolised and trusted as though he were my own father. ", "I believed myself at the time to be collaborating with a true visionary, a man of God. ", "Instead, as I later came to realise, I was in fact working in league with the Devil. ", "I allowed myself to become an unwitting instrument of this maniac whose pure evil is matched only by the cunning that has, to this day, enabled him to evade justice._", "\n\n_I was a fool, and I have been rightly punished for my mistakes. ", "I deserved all that befell me: to have lost my cherished family, my home, my position within the Church, and my freedom. ", "It is not to gain sympathy that I tell you of the complete psychological breakdown and the torment of mental illness I suffered for so long following my arrest and incarceration. ", "The experience broke me and, in effect, I went mad. ", "I spent an extended period of time in a facility for the criminally insane, and only after prolonged treatment were my rational faculties slowly restored, permitting my transfer here to the Istituto Penitenziaro Bollati – where in the last two years I have received far more humane and compassionate treatment than I could ever hope to merit._", "\n\n_Though the horrors of my insanity are now largely behind me, the burden of guilt I suffer can never be lifted from my shoulders. ", "Every day I have prayed for God's forgiveness for my part in the unspeakable crimes Massimiliano Usberti perpetrated in the name of the Catholic faith. ", "I was once a man of God, blessed each day by His love and guidance; but that source of Divine wisdom was lost to me as the Lord turned His back and spoke to me no more, however much I begged Him to reveal Himself to me as He once did. ", "His long silence has in many ways been the hardest punishment for me to bear._", "\n\n_Finally, after all these years of torment, God in His mercy has spoken to me once again. ", "But now that He has taken me back into the favour of His Divine goodness, it pains me deeply to say that He has only confirmed to me what I have always dreaded to be the case._", "\n\n_And this brings me, my dear Signor Hope, to my reason for penning this letter to you – a reason so terrible that the very thought makes me shake with fear as I write. ", "For I am now more utterly certain than ever, in my heart of hearts, that we have not seen the end of this evil maniac Massimiliano Usberti. ", "A man like him does not simply fade into the background. ", "If he has managed to remain in the shadows for so long, it is only because he is hatching some dreadful new plan that eclipses even his monstrous exploits of the past. ", "Moreover, I am convinced that he will return to seek vengeance against those he perceives as having wronged him – those who prevented him from carrying out his pernicious goals and may attempt to do so again when he inevitably rises once more from the darkness._", "\n\n_Signor Hope, I beg you to be vigilant and pray that you will take heed, for I am one of the few people alive who understands the power and depth of the merciless hate that motivates Usberti. ", "I am weak and vulnerable, trapped as I am behind these bars. ", "If his villainous influence can reach me inside prison by the hand of some assassin, so be it; I deserve little better. ", "But you are strong, and free. ", "You must do all you can to guard yourself from him. ", "Not only yourself, but every one of those virtuous, wholly innocent individuals who played a part in his downfall. ", "With all my heart and for their sakes as well as your own, I beseech you not to take this warning lightly._", "\n\n_May God in His infinite glory watch over you and protect you._", "\n\n_Your humble servant,_\n\n_Fabrizio Severini_\n\n_Prisoner 56139_\n\n## Chapter 10\n\nThe letter left Ben stunned. ", "He clutched the thin sheets tightly in his hands and read them again, twice, word by word, in case he'd somehow misunderstood or mistranslated.", "\n\nHe hadn't. ", "The message couldn't have been clearer. ", "Fabrizio Severini, repentant sinner, acting on a mystical revelation from God, was warning him that his old enemy Massimiliano Usberti was coming back for revenge.", "\n\nAnd with those three pages of elegant handwriting, it was as though the planet had suddenly flipped its magnetic polarity, turning everything upside down.", "\n\nFor the thousandth time since that morning, Ben revisualised the awful memory of the shooting. ", "The details were exactly the same, yet everything was completely different. ", "In his mind's eye he pictured the two of them standing by the fallen tree: Ben cutting, Jeff close by waiting to grab the next section of log and toss it on the pile. ", "Then, like an extreme slow-motion replay: the bullet closing in from nowhere. ", "The blood spray. ", "Jeff falling. ", "The entire nightmare sequence happening a fraction of a second _after_ the gust of wind that had buffeted them with a fresh snow flurry. ", "A gust of wind that could very easily have diverted the trajectory of the bullet just those few critical inches and caused it to hit...\n\n_The wrong target_.", "\n\nIt seemed so obvious to him now that Ben was furious with himself for not having thought of it before. ", "As a trained sniper himself, it had been drilled into him long ago that even a 10mph gust of sidewind, coming in right-to-left from three o'clock or left-to-right from nine o'clock, could blow a medium to long-range rifle shot far enough off course in either direction to spell the difference between a hit and a miss. ", "Even the most experienced rifleman could be caught out by a sudden change in windspeed and direction. ", "At a range of three hundred yards, the deviation could be a full seven inches left or right depending on which way the gust blew. ", "At five hundred yards the shot could veer off by up to twenty inches or more; and at a thousand yards it could be off by over fifty inches, missing the bullseye by a whole four feet. ", "And that was the data for a ten-mile-an-hour gust. ", "A stronger wind could affect the shot even worse.", "\n\nThe realisation made Ben's mind reel. ", "Because if Severini's warning could be believed in any way, it meant that the bullet hadn't been meant for Jeff at all.", "\n\nIt had been meant for him.", "\n\nHe was clutching the letter so tightly in his hands that the paper ripped. ", "He let the torn pieces fall to the desk as his mind raced and filled with questions. ", "Had the sniper known he'd hit the wrong man? ", "Was it possible that the gust of wind, whipping in a fresh snow flurry between him and his distant target, could have obscured the view through his scope just long enough to mislead him? ", "He pressed the trigger; he saw a man go down; he packed up his kit and hurried from the scene, running back to his hidden vehicle, getting on the phone to report back to base that his mission was accomplished.", "\n\nWhereupon, the assassin might have gone after the next target on his list.", "\n\nBen looked down at the torn letter. _", "You must do all you can to guard yourself from him. ", "Not only yourself, but every one of those virtuous, wholly innocent individuals who played a part in his downfall._", "\n\nThe next question that flashed into Ben's mind was: what other names were on the hit list?", "\n\nHe could think of four apart from his own. ", "Four people whom Usberti would have blamed and never forgiven for their involvement in the affair. ", "The first and most obvious was INTERPOL Commissioner Luc Simon, Ben's main ally in bringing down Gladius Domini.", "\n\nThe next was Roberta Ryder, who had become entangled in the intrigue through no fault of her own and become Usberti's target for assassination and kidnap, narrowly escaping with her life.", "\n\nThen there was Father Pascal Cambriel, the elderly French priest who had sheltered Ben and Roberta at his humble village home after Ben had been shot, and ended up playing a key role.", "\n\nAnd lastly there was Anna Manzini, the scholar and expert on the history of the Cathars, who had helped Ben unravel the bizarre background behind Usberti's obsession with alchemy and after whom Usberti had sent his murderer Franco Bozza, to butcher her in her villa near Montségur in southern France. ", "Like Roberta, Anna Manzini had had a close call and only just survived.", "\n\nUsberti's henchman Franco Bozza was out of the picture now. ", "Ben had seen him get shot in the throat and die right in front of him. ", "But the world was full of eager professional killers hungry for work, at the right price. ", "And Massimiliano Usberti was a rich man, from an aristocratic family with enough property and investments to shield him from even the most catastrophic financial loss. ", "If Severini was right, the fallen archbishop had his own twisted reasons for wanting to get even with all four people on the list, and the means to carry it out.", "\n\n_If_ Severini was right. ", "If, if, if.", "\n\nEverything depended on whether Ben could trust this crazy letter from a recovering mental patient living under massive psychological stress, who based his claim on a direct communication from heaven above. ", "Either the guy was a nut, and Ben could throw the letter away, or he was for real, and Ben needed to act on it. ", "There was very little middle ground between those two options, and no room for mistakes. ", "He had to know more before he could let himself jump to conclusions. ", "He swivelled his chair around to face the computer terminal on the desk. ", "The sleeping screen flashed into life and he started urgently hitting keys.", "\n\nThe name Fabrizio Severini threw up a smattering of search engine results that were mainly old news archives related to the fall of Gladius Domini and the subsequent police investigation, the arrests, the court cases, the sentencing, the scandal that had rocked the church and drawn all kinds of censure from the Vatican. ", "Ben didn't see anything he hadn't seen before.", "\n\nBut then he found something new.", "\n\nThe item was a cursory, low-key article from the Italian current affairs website _La Repubblica_ , too insignificant to have been picked up by other news agencies. ", "It took Ben only a second to read it: an announcement of the recent suicide of the disgraced former senior Church official Fabrizio Severini, found hanged in his cell at the Istituto Penitenziaro Bollati in Milano. ", "Checking the reported date of his death, Ben saw that it had happened just three days after the postmark on the envelope. ", "The letter might not even have reached Le Val by the time Severini's body was discovered.", "\n\nBen didn't know what to make of it. ", "Had someone got to Severini, as he'd seemed to resign himself to the fact that they might? ", "Or had the demons in his own mind got to him in the end? ", "Again, it was impossible to tell.", "\n\nUndecided, Ben ran another internet search, this time keying in the name Massimiliano Usberti. ", "The computer did its thing, spat out its findings, and Ben found himself being taken back to _La Repubblica_ and a report dated from just over six months earlier.", "\n\n'I'll be damned,' he muttered to himself.", "\n\n_The former archbishop Massimiliano Usberti, previously stripped of his title by the Vatican following allegations that he was the leader of a radical fundamentalist cult linked to suspected murders and racketeering, has died in a bizarre boating accident near his home on Lake Como. ", "Usberti, who since his dismissal from the Church had filed for bankruptcy and been treated for depression and alcoholism, is believed to have fallen from the deck of a motor yacht and been caught up in the propellers, resulting in such extensive cranial and facial injuries that the coroner's identification needed to be carried out using dental records..._\n\nThe piece ended with a line or two about the private funeral ceremony that had taken place at Usberti's family estate, where he had been laid to rest in the ancestral chapel.", "\n\nIf Ben felt any satisfaction from the news of Usberti's death, it was swamped by his utter confusion about what was going on here. ", "Sitting back in his chair he lit another cigarette and closed his eyes as he tried to puzzle it out logically. ", "Le Val hadn't existed when Ben and Usberti's paths had crossed; so, for Severini to have traced him there and known where to address his letter, he must have been allowed some limited internet access by the relatively relaxed system at Bollati, and been able to Google Ben's name just as Ben had done with Severini's. ", "The bookish, educated ex-clergyman was just the kind of inmate who would spend a lot of time in the prison library, enjoying the privilege of keeping up with what happened out there in the world.", "\n\nWas it believable, then, that he wouldn't have learned of his hated former employer's death? ", "Could such an important piece of news have gone unnoticed? ", "Or had he been aware of the facts, but preferred to listen instead to the imaginary voices in his head telling him otherwise? ", "Ben could well imagine that to be the case. ", "If his suspicion was right, and if Severini was really nothing more than a poor raving lunatic racked with guilt and suffering from hallucinations and delusions, the letter was worthless junk and Ben was left with nothing.", "\n\nIt was rare for Ben to be lost for ideas, and even rarer for him to feel the need for another man's counsel in a moment of crisis. ", "But with his best friend in a coma and his mind jangling with confusion and fatigue, he badly needed to reach out to someone he could trust. ", "He took out his battered old leather wallet, thumbed through the collection of business cards inside, and found the one that bore the blue-and-gold emblem of INTERPOL. ", "He reached for the phone and dialled the direct line number on the card.", "\n\nThe evening was wearing on, but calling at this late hour didn't matter. ", "Luc Simon wasn't the kind of guy to clock off when the factory whistle blew. ", "He ate most of his meals at his desk, and probably slept there most nights: his wife would no doubt have confirmed that, before she'd got sick of being married to a ghost and left him for someone who could pay her a little more attention.", "\n\nLuc's phone answered on the second ring. ' _", "Bureau du Commissaire Simon_.'", "\n\nBen said, 'It's me.' ", "He was about to say more, when he realised that the voice on the line was quite different from the smooth Gallic tone of Luc Simon's. ", "This man sounded older, coarser. ", "And even more worn out with exhaustion than Ben felt.", "\n\n'Who's calling?' ", "the voice asked.", "\n\nBen gave his name. '", "I was looking for the commissioner. ", "This is his direct number, isn't it?'", "\n\n'Yes, it is,' the voice said, wearily, maybe slightly suspiciously.", "\n\n'Is he there? ", "It's okay. ", "My name's Ben Hope – he knows me. ", "Check me on his database if you want.'", "\n\nA silence. ", "Then, 'He's not here. ", "He's gone.'", "\n\n'Gone?' ", "For Luc to have gone home before midnight would have been a record. ", "For him to have left his job would have been unthinkable. '", "Gone where?'", "\n\nThe second silence on the line was heavier than the first, and it brought a chill that went down Ben's spine and told him something was wrong.", "\n\n'If you know Commissioner Luc Simon,' the voice said, laden with sadness, 'then I regret to inform you that he is dead.'", "\n\n## Chapter 11\n\nBen couldn't reply for several seconds. ", "He wouldn't have called Luc Simon a close friend, but they'd known each other a long time and collaborated on more than one occasion. ", "The news hit him deep and low in the stomach. ", "Finally he was able to say, 'When this did happen?'", "\n\n'The commissaire didn't come into work today, and didn't respond to phone calls. ", "As you know, he lived alone. ", "We thought perhaps he had been taken ill. ", "When agents visited his home this afternoon, they found him in his bathroom. ", "He was stabbed to death in the shower, either this morning or last night, we don't yet know for sure. ", "Nobody knows anything,' he added. '", "It's chaos here. ", "We're putting together a press release, but so far—'\n\n'You have no idea who did it,' Ben finished for him.", "\n\n'That is all I can tell you,' the voice said. '", "I'm sorry.'", "\n\nBen muttered a word or two of thanks, then put the phone down. ", "He was wishing he'd brought the bottle from the house, to help chase away the visions of a slashed shower curtain and blood-spattered tiles that were crowding into his mind. ", "But there was no time to dwell over his shock and sorrow. ", "Because Severini's warning letter had just come back into sharp focus. ", "Ben no longer cared if the guy was crazy or not. ", "This was happening.", "\n\n'Roberta,' he said out loud. ", "His arm shot across the desk to snatch up the phone again.", "\n\nWhen Ben had first met her, she'd been a struggling independent research scientist living in Paris. ", "In the wake of the Gladius Domini affair she'd relocated to Ottawa and Dr Roberta Ryder had become Dr Roberta Kaminski, to protect her identity, and had slipped out of Ben's life until she'd needed his help once again. ", "The last time he'd seen her had been an emotional farewell in Indonesia, and even though he still had her mobile number he'd always avoided calling it. ", "He knew why that was. ", "The chemistry between them had been one of the factors behind his relationship breakdown with Brooke.", "\n\nOntario was six hours behind, making it afternoon there. '", "Come on,' he muttered as the dial tone burred in his ear. ", "Then his heart jumped as he heard her voice. '", "Roberta?'", "\n\n'Who is this?' ", "She sounded as if she was walking somewhere briskly. ", "Always in a hurry, that Roberta Ryder.", "\n\n'It's me.'", "\n\n' _Ben?_ ", "What—?'", "\n\n'Where are you?'", "\n\n'Carleton. ", "Where else?' ", "Carleton University in Ottawa was where she taught now. '", "Freezing my ass off in the snow outside the main science block, about to head across campus to the cafeteria for a badly needed coffee before my next class begins in exactly twenty-four minutes' time. ", "If you really needed to know, which frankly is a mystery to me. ", "But then, you always were one of life's great mysteries, weren't you?'", "\n\n'Are you okay?'", "\n\n'You sound weird, Ben. ", "And why do I get the feeling this isn't purely a social call?'", "\n\n'Just tell me. ", "Are you okay?'", "\n\n'I was doing great, until a moment ago,' she replied acerbically, and he could just see her, halted in the snow, one hand on her hip, one eyebrow raised, in that questioning way of hers. '", "Living the dream. ", "Single, free and contented, and I gave up long ago waiting for you to call me. ", "Yet now here you are. ", "What's the matter?'", "\n\n'I don't have time to explain,' he said. '", "Listen to me. ", "You need to get out of town, right this minute.'", "\n\n'Wow. ", "Not a word from you for months and years, now this. ", "You really know how to lay the charm on a lady, Hope. ", "In the desert of life, you are my mirage.'", "\n\n'I'm serious. ", "Something's happening. ", "Don't ask me what, because I don't know. ", "Just get away from there immediately.'", "\n\n'Are you nuts? ", "Just like that? ", "Get out of town, no explanations, no nothing? ", "I have classes. ", "I have a _job_ , Ben.'", "\n\n'Never mind all that. ", "You might not be safe and I need you to do as I say.'", "\n\n'Why – am – I – not – safe?'", "\n\n'Someone tried to get me. ", "They got Luc Simon.'", "\n\n'The Paris cop? ", "What do you mean, _got?_ '", "\n\n'He wasn't a Paris cop any more. ", "And I mean, they killed him. ", "They could be coming after you next.'", "\n\nHer tone changed to one of shock. '", "What the hell's happening? ", "Are you okay?'", "\n\n'It's not me I'm worried about. ", "It's you.'", "\n\n'I can look after myself,' she said defiantly. '", "Remember?'", "\n\n'So can Jeff Dekker. ", "But he's lying in the hospital with a bullet hole in his chest, meant for me. ", "These people aren't messing about. ", "How much money have you got on you?'", "\n\n'About seventy bucks. ", "You are officially freaking me out right now. ", "Is Jeff going to be all right? ", "Who's doing this?'", "\n\n'No more questions, Roberta,' Ben interrupted. '", "Please, just do as I say. ", "Don't go back to your apartment. ", "Grab all the cash you can from the campus ATM and jump on a bus. ", "Keep changing buses, taxis, whatever you have to do to cover your trail. ", "You see anyone following you, anything out of the ordinary, go straight to the police.'", "\n\n' _Following me?_ '", "\n\n'Keep your eyes open. ", "Head north into the mountains, where nobody can find you. ", "Book into a hotel, cash, using a different name, and don't do anything until I call you again. ", "Promise me you'll do that.'", "\n\n'Ben, I—'\n\n'I mean it, Roberta. ", "I know how it sounds. ", "But you have to promise me. ", "I can't have anything happen to you.'", "\n\n'Does this mean you love me after all?'", "\n\n'No jokes. ", "Do it.'", "\n\n'Who said I was joking?'", "\n\n'I'll be in touch.'", "\n\n'I've heard that one before. ", "I can't wait.'", "\n\n'Will you do it?'", "\n\n'YES! ", "All right! ", "I must be even crazier than I thought, but I'll do it. ", "This is going to cost you big-time, Ben Hope. ", "Of all the goddamn lunatic things I ever did for y—'\n\nHe cut her off by ending the call. ", "He could only pray she'd take him seriously. ", "What was it with red-headed women? ", "Without a doubt, she was the most stubborn, headstrong person he'd ever known. ", "That was, besides himself.", "\n\nThe next name on Ben's list was Father Pascal Cambriel. ", "Ben had checked in on him now and then since the Gladius Domini business, mostly to ask after his health. ", "Now in his mid-seventies, the old priest still lived in the same humble cottage in the little village of Saint-Jean in the south of France. ", "A little slower, more dependent on his walking stick, but still active and enjoying his simple rural existence – feeding his chickens, tending to his little vineyard, kindling his fire and reading the Bible by candlelight every night as he puffed on his old briar pipe and indulged in more of his homemade wine than perhaps was good for him. ", "Life didn't change a great deal for Pascal Cambriel, including his tendency to not always answer the phone, a piece of modern technology the old man could take or leave. ", "If he even possessed such a thing as a mobile, it wouldn't survive the first battery discharge.", "\n\nBen dialled Pascal's landline number. ", "He wasn't surprised when it rang and rang, but it didn't allay his worry much either. ", "Le Val to Saint-Jean was an eight-hour drive that Ben was prepared to make if he got no response that night.", "\n\nIn the meantime, he had one more name to check on the list.", "\n\nBen had lost contact long ago with the dusky, black-haired history professor Anna Manzini. ", "The last time he'd seen her had been in the private hospital room, filled with the scent of scores of red and white roses, where she'd been recuperating after the violent assault by Franco Bozza that had nearly killed her. ", "Ben had gone there to say goodbye and tell her how sorry he was that she'd become involved. ", "Even bruised up from the attack, with a dressing on her right cheek where Bozza had slashed her with his knife, she'd managed to look beautiful.", "\n\nThat day, Anna had told him she'd had enough of France and was going back to live in Italy to take up her old university professorship. ", "Her last whispered words to him, as he'd sat on her bedside and she kissed him tenderly on the cheek, had been: 'If you ever find yourself in Florence, you must give me a call.'", "\n\nBen hadn't found himself in Florence since then, and he didn't have a number for her in any case. ", "Returning to the computer, he Googled the _Pagine Bianche_ , the white pages online phone directory for Italy. ", "When the website came up he entered MANZINI and FIRENZE into a search box and punched TROVA. ", "The computer came up with ' _30 Risultati trovati_ ', lots of Manzinis but not the one he was looking for. ", "Unlisted. ", "Damn.", "\n\nNext he brought up the Florence University website and clicked open the faculty page to check through the list of academic staff. ", "Unlikely that the university would divulge the phone details of faculty members, but there might be an email contact.", "\n\nHe found neither, because Anna Manzini was no longer listed there. ", "Instead, he found her on a separate page for former faculty members, which gave no details at all except her name, department and the dates of her service. ", "She'd left Florence University nearly two years ago.", "\n\nIt looked as though he'd lost her trail, until a new idea came to him. ", "Anna had always been more than just an academic; she was a successful writer too, which was what had brought her to live in France in the first place, where she'd been researching a new project on the Cathars. '", "Who knows?' ", "she'd said to Ben during that last meeting. '", "Perhaps one day I'll finish my book.' ", "When he widened his online search on her, Ben discovered her author website and found that she'd not only finished it, but that it had been a bestseller – the first of several successful works of historical non-fiction she'd churned out in the last few years. ", "Her latest biography of the mystic, visionary, and polymath, Hildegard of Bingen, had sold quarter of a million copies.", "\n\nAnna's picture beamed at him from the screen. ", "She'd been forty-two when he'd known her, but looked thirty-eight. ", "She seemed not to have aged a day since. ", "Either thanks to the wonders of plastic surgery, or else maybe the miracle of Photoshop, there wasn't a trace of a scar from Usberti's attempt to kill her. ", "But selling a truckload of books wasn't going to protect her from this renewed threat. ", "Ben had to warn her, and fast.", "\n\nHer author website gave no email address or social media handle, just a generic form. ", "Frustrated, he filled it in, giving his mobile number and a brief note saying it was vital that she contacted him immediately. ", "All he could do then was hope she'd respond.", "\n\nHe'd been sitting in the office far too long. ", "The last thing he did before leaving was to try Pascal's number again – to no avail.", "\n\n'Damn,' he muttered. ", "Then there was nothing else for it.", "\n\n'Let's go,' he said to Storm. ", "The dog followed him as he sprinted back to the house. ", "He ran upstairs to Tuesday's room and banged on the door. ", "Tuesday answered. ", "The sound of Levi Roots' reggae music was coming from his stereo in the background, but it didn't seem to be cheering Tuesday up. ", "He looked even glummer than before.", "\n\n'You can come out now. ", "Brooke's gone,' Ben said.", "\n\n'I only wanted to give you guys some space.'", "\n\n'So we could rip each other's guts out in private. ", "Thanks. ", "Listen, Tues. ", "Remember I said about you having to hold the fort here? ", "Well, you're going to have to hold it a little longer. ", "There's been a development and I have to go.'", "\n\n'Go where?' ", "Tuesday said, blinking.", "\n\n'I'll call you from the road,' Ben replied. '", "Any news about Jeff, any news about anything at all, keep me updated.'", "\n\nTuesday said he would. ", "Without another word, Ben hurried to his own quarters on the top floor of the rambling old house. ", "It was a small, simple space, which he kept uncluttered with a minimum of belongings, as neat as a military dorm. ", "He rummaged through his cupboard, then grabbed his battered green canvas bag. ", "The old army haversack was permanent home to various items that tended to come in handy when Ben was on his travels, such as his mini-Maglite torch with LED upgrade for when he found himself in dark spots, and a roll of super-strong duct tape that was useful for anything from trussing up captives to making improvised field dressings. ", "Ben stuffed in a couple of changes of underwear, two pairs of Helikon winter socks, the same ones the Norwegian Army used, a spare pair of black Levi's and a heavy denim shirt identical to the one he was already wearing. ", "From a box on the dresser he took a thick roll of cash without counting it, wrapped it up with his passport inside a double skin of two plastic Ziploc bags and tucked the package in on top of his spare clothes. ", "Then he jammed in two packs of Gauloises, his whisky flask, and a can of fluid for his lighter.", "\n\nFinally, there was the other item he kept hidden under the loose floorboard at the foot of the single bed: one piece of hardware that the anti-terror cops couldn't confiscate, because no official knew it even existed. ", "The nine-millimetre Taurus automatic had belonged to a Romanian drug dealer called Dracul, before Ben had commandeered the handgun as a trophy of war. ", "He snicked a full magazine of Federal +P hollowpoints into its butt, cocked it and locked it and tucked it into the bag where he could get to it quickly. ", "Because in situations like this, it was a lot better to have it and not need it, than to need it and not have it.", "\n\nThree minutes later, Ben was jumping into the Alpina, flinging his bag onto the passenger seat, firing up the engine with a throaty blast and gunning the car out of Le Val's yard.", "\n\nEight hours to Father Pascal's village of Saint-Jean. ", "He aimed to make it there in seven.", "\n\n## Chapter 12\n\nBen drove hard and fast through the night. ", "Rain and sleet battered his windscreen, turned to snow for a while around Orléans, and then petered out again as he hammered southwards. ", "He chain-smoked his way through the rest of his current pack of Gauloises, then broke into a fresh one. ", "The strong, unfiltered cigarettes did little to settle his tension; the frenetic modern jazz station blasting from the Alpina's sound system didn't help much either.", "\n\nApproaching Bourges, running low on fuel and energy, he pulled off the motorway into an _aire de service_. ", "The night was chilly and damp. ", "After he'd finished filling the tank, out of habit he parked the car in a corner of the rest area car park where it was shaded under the trees from the lights. ", "He took his pistol from his bag and slipped it into his belt, behind the right hip where it was hidden by his jacket. ", "Then he locked up the car and walked to the nearby all-night café and shop to get something to eat. ", "He felt hollow and weary, yet jumpy and agitated. ", "More conscious than usual of the hard steel lump of the gun nestling against the small of his back, he walked wide of any corners or doorways where an attacker could suddenly leap out. ", "None did, but the edginess remained.", "\n\nHe walked into the café. ", "It was warm inside. ", "Tall windows offered a view of the brightly illuminated fuel station on one side, the darker car park on the other. ", "Piped muzak was playing quietly in the background. ", "There were a few late-night travellers taking a rest, some couples but mostly solitary men, sitting at plastic tables and desultorily sipping coffee while fiddling with phones or tablets. ", "Nobody took any notice of Ben as he went in, but he eyed each one, sizing them up as though they could be a potential threat.", "\n\nMaybe he was being paranoid, he thought. ", "Or maybe he wasn't. ", "If the shooter had figured out by now that he'd got the wrong target, he could have hung around Le Val and picked up the trail of the Alpina. ", "Ben was pretty sure nobody had followed him, but you could never be one hundred per cent certain of spotting a skilled tail. ", "Especially when they worked in a team, relaying one another, keeping in contact by phone or radio, maintaining a constantly-shifting net of surveillance around their target. ", "Ben had worked in enough of those teams himself to know exactly how they operated. ", "If somehow Usberti was behind this – despite apparently being dead – then there was no telling how many paid guns he could have brought on board.", "\n\nBen bought a pack of sandwiches and a carry-out paper cup of steaming black coffee, paid cash and made his way back to the BMW. ", "Nobody followed him. ", "He locked himself inside the car, took the gun from his belt and laid it on the centre console close by his right hand. ", "He tore open the sandwich pack: Gruyère cheese and pâté de campagne. ", "His body craved food but he had no appetite. ", "As he ate mechanically and slurped the hot coffee, he checked the latest news reports on his smartphone.", "\n\nOne small consolation was that the media were still in the dark about the details of the shooting incident at the obscure training facility in rural Normandy. _", "The as-yet unidentified victim is believed to be a British national residing in France, with unconfirmed reports suggesting an ex-military connection. ", "The British Ministry of Defence were unavailable for comment. ", "Details of the victim's condition have not yet been released and the exact circumstances of the incident remain uncertain... SDAT anti-terror officers have said they are involved in the investigation but have not revealed whether the shooting may have been carried out by a member or members of an extremist Islamic group._ ", "And on, and on.", "\n\nThe other news item he wanted to check was much more forthcoming on detail, but no more conclusive. ", "INTERPOL's fury in the wake of Luc Simon's murder was splashed all over the media, along with gruesome images of the shower unit, post-body-removal, that looked as if a butcher had hung up a live pig in there by its hind legs and slit its throat.", "\n\nIt was no way to go for a good guy like Luc Simon.", "\n\nINTERPOL were lining up suspects on the working theory that the killing was an act of revenge, carried out either by someone Luc had put away or on their behalf. ", "No charges had yet been brought. ", "Inevitably, the media were whipping up their own storm of speculation that the murder of a high-ranking law enforcement officer was yet another terrorist atrocity. ", "Ben wouldn't have been surprised if, in the next day or two, the cops pinned it on some claimed Muslim fanatic they found on an intelligence watch-list, complete with the 'discovery' of maps and photos of Luc Simon and his home in the suspect's apartment, along with the requisite anti-West hate literature and bomb-making materials under his bed. ", "And maybe they'd be right. ", "But Ben didn't think so.", "\n\nNext he tried Roberta's number, but her phone was switched off. ", "Then he tried Pascal's landline number once more for luck, and gnashed his teeth in frustration until the dial tone went dead. ", "So much for the communication age.", "\n\nBut at least someone was answering their phone. ", "The third number he tried, he got a reply after three rings.", "\n\n'Dr Lacombe? ", "It's Ben Hope.'", "\n\n'This is why I don't generally give out my personal number,' complained the sleepy voice on the other end of the line. '", "Do you know what time it is?'", "\n\n'How is he? ", "Any change?'", "\n\n'There hadn't been, when I came home to get some sleep. ", "They haven't called. ", "So, no, none.'", "\n\n'I'm sorry if I woke you, Doctor.'", "\n\n'It's okay. ", "And you can call me Sandrine.'", "\n\n'Are you alone, Sandrine?'", "\n\n'What kind of question is that?' ", "she said sharply. '", "Yes, I do happen to live alone, for your information. ", "Did you call to ask me on a date or something?'", "\n\n'Not exactly,' Ben said. '", "The reason I asked is because I need a favour.'", "\n\n'What kind of favour?'", "\n\n'The sensitive kind that needs to be strictly between you and me. ", "One that concerns Section Forty-Five of the French Code of Medical Ethics.'", "\n\n'I see. ", "Regarding patient confidentiality?'", "\n\n'Specifically, the matter of releasing a victim's identity to the media. ", "Or not releasing it, more to the point.'", "\n\n'And you have some reason for having it kept quiet, I suppose.'", "\n\n'I have reason to think the shooter got the wrong guy, but doesn't know it yet. ", "I'd like that knowledge to be kept from him for as long as possible. ", "Now you understand what I meant by sensitive.'", "\n\nA rustling sound as she sat up in bed, fully awake now and unlikely to get any more sleep that night. '", "What are you telling me here? ", "If he was the wrong guy, then who was the intended target?'", "\n\n'Let's just say if they'd succeeded, it would have been a little hard for me to call you.'", "\n\n'Someone tried to kill _you_? ", "But who?'", "\n\n'A dead man,' Ben said. '", "Or so people believe. ", "If he isn't one already, he soon will be.'", "\n\n'Do the police know this?'", "\n\n'They're fixated on their own ideas of what this is about. ", "If I told them I thought I was the target, I'd spend the next week sitting in an interrogation room being hammered with all the questions they can't ask Jeff.'", "\n\n'Where you'd at least be safe.'", "\n\n'But other people wouldn't be. ", "And I can't have that. ", "So no, I have no intention of telling the cops what I know.'", "\n\n'This is just plain crazy. ", "Things like this don't happen in my world.'", "\n\n'Things are a little different in mine,' Ben said.", "\n\n'I can't be drawn into this intrigue,' she said. '", "Have you seen the news? ", "The story's getting bigger by the hour. ", "I'm a doctor, not a spy. ", "There are rules, you know?'", "\n\n'I understand. ", "Forget I mentioned it.' ", "He was about to end the call when she said, 'Hold on, don't go.'", "\n\n'I'm still here.'", "\n\nThere was a pause on the line, followed by a sigh of resignation; then she said, 'To reply to your question, the answer is no, I haven't signed off on that disclosure, and can't, without the consent of the victim or their next of kin, which I haven't got at this point. ", "If this was an instance of, say, rape or child abuse, where there's a clear case for withholding the victim's identity, that's one thing. ", "But where a violent crime has been committed involving firearms, especially in this day and age—'\n\n'The media are hungry for all they can get and the police can release the details themselves, I know. ", "They haven't yet, but it could all change by morning. ", "I was hoping you could exert some professional influence.'", "\n\n'When you said you wanted a favour, you weren't kidding.' ", "She heaved another sigh. '", "All right. ", "I can try to delay things from my end, but probably not for more than a day, maybe two. ", "And I know someone who knows someone in the police media liaison department. ", "It's possible that I can pull a few strings there, too, assuming I can come up with a plausible-sounding reason to persuade them. ", "It won't be easy.'", "\n\n'Whatever you can do, it's appreciated.'", "\n\n'I can't promise anything,' she warned him. '", "I don't even know why I'm agreeing to this.'", "\n\n'I'll bring you a big bunch of flowers.'", "\n\n'Your friend needs them more than I do.'", "\n\n'He's not really that into them.'", "\n\n'You take care,' she said. '", "Don't do anything stupid.'", "\n\n'Why change the habit of a lifetime? ", "I'll be in touch.'", "\n\n## Chapter 13\n\nBen sped on southwards through the night. ", "As he drove, he made one last call.", "\n\nThe kind of help Ben needed to ask for next could only be had from certain highly specialised quarters. ", "And sixty-odd-year-old former sergeant Boonzie McCulloch, once Ben's military instructor, later his friend and mentor, long since retired to an idyllic rural life in Campo Basso but still with a few fingers in a few pies, was just the man to go to.", "\n\nAlong with the rest of the world, Boonzie had seen the news about the shooting at Le Val and had been just about to call when Ben beat him to it. ", "The Scotsman's shocked silence quickly turned to molten anger as Ben described Jeff's condition. '", "If I'm right, whoever did this is after me. ", "And the moment it leaks that they got the wrong guy, they'll be back.'", "\n\n'Aw, fuck this for a game of soldiers,' Boonzie's gravelly voice rumbled over the line. '", "I'm on ma way. ", "Tonight, reet noo. ", "I'm gettin' in the car and I'm comin'.' ", "It was like letting a rabid pit bull off the leash. ", "Ben could almost hear the phone cracking in Boonzie's iron fist.", "\n\n'That's not what I want,' Ben said firmly, reining him in. '", "I've already dragged you into too much trouble in the past. ", "I'll deal with this my way, alone. ", "But I could use some backup.'", "\n\n'Say the fuckin' word, laddie,' Boonzie rasped, wanting blood.", "\n\n'I need six guys. ", "I was thinking maybe McGuire, Fry and Blackwood, if they're available, plus three more. ", "How fast can you get a team together for me?'", "\n\n'For you? ", "They'll be trippin' over themselves tae help, son. ", "And woe betide these murderin' basturts when we get oor haunds on them. ", "Leave it wi' me. ", "I'll get back tae ye asap.'", "\n\nBy the time Ben had reached Limoges in west-central France, it was all arranged. ", "Within a few hours three good ex-regiment men would be rolling up at Le Val, two of them flown in from London and the third from Germany where he'd just finished a VIP close protection stint. ", "They'd be heavily armed, and they wouldn't need to use the main gate. ", "Their mission: to back up Tuesday and the others in case the bad guys tried to strike again. ", "Meanwhile, another trio urgently summoned in from various parts of Europe would speedily converge on Cherbourg, where they'd station themselves in and around Louis Pasteur Hospital to spot, intercept and detain anyone suspicious who might come snooping in the event of an information leak.", "\n\nSandrine Lacombe would flip if she knew her place of work was under guard by professional hard men with guns. ", "But the good doctor would never know. ", "Unless something happened – in which case all hell might just break loose.", "\n\nWith his insurance policy in place as best he could arrange it, Ben stormed on through the night. ", "The Alpina ate up the distance as he carved southwards on the A20 motorway. ", "Driving, driving, driving. ", "A cold stream of wind whistling from the cracked-open window. ", "The heater blasting, the radio blaring. ", "Fists clenched on the steering wheel, eyes wedged open against his growing fatigue and burning with anger as he thought about Jeff lying there in that hospital bed and about Luc Simon in the morgue. ", "When his thoughts turned to Father Pascal, to Anna Manzini and Roberta Ryder, frustration and impatience scoured him like acid and he willed the car to go even faster.", "\n\nFrom Limousin he passed into the Midi-Pyrénées. ", "A while later the signs for Toulouse flashed by. ", "He left the motorway and veered south-east into Roussillon, then due south from Carcassonne, deep into the rugged landscape along ever narrower and twistier roads, slippery with ice, that led him up dizzying mountain passes where the ruins of medieval castles stood silhouetted on craggy snow-capped peaks against the winter sky; then plunged steeply down into green pine valleys, through small towns and villages and hamlets too small to feature on the map. ", "Couiza, Quillan, Montségur. ", "He passed within a couple of kilometres of the villa that had been Anna Manzini's base for her research on ancient Languedoc history and the mysteries of the Cathars. ", "The same villa where Franco Bozza had almost managed to kill her.", "\n\nBeing back here again for the first time since that summer brought back memories he'd thought he'd left far behind him: he and Roberta Ryder dodging bullets and chasing clues all over the Languedoc; the deadly running pursuit on which Usberti's hired killers had led them; playing tag with Luc Simon and an army of police; finding Anna battered and unconscious after Bozza's attack; the final bloody standoff with Bozza in an underground cavern buried deep in the heart of a mountain. ", "And Ben remembered the kindness that Father Pascal had shown him when he'd turned up on the priest's doorstep, badly hurt. ", "The old man had been more of a father to him than his real one ever had. ", "The memory sent a painful stab of guilt deep inside Ben as he replayed those images inside his head.", "\n\nHe should have done more to stay in contact. ", "But keeping in touch with people who had been important in his life had never been one of his greatest talents.", "\n\n_If you ever find yourself in Florence, you must give me a call._", "\n\n_In the desert of life, you are my mirage._", "\n\n_Running off when people need you around is what you do best, after all._", "\n\nTheir voices echoed in his mind. ", "He'd let them all down. ", "For that, he was truly sorry.", "\n\nSoon, his speeding headlights lit up a road sign for the village of Saint-Jean. ", "Dawn was still a couple of hours away. ", "He'd made good time.", "\n\nThe village was still more or less as Ben remembered it – a few new houses might have sprouted up at its edges, and more of the ancient red-tiled roofs were incongruously decorated with recent add-ons like solar panels and satellite dishes. ", "He passed the drystone wall that had been painted with blood from his gunshot wound, then winding deeper into the village he passed the little church in which he'd prayed alone in the dead of night; then he saw the graveyard, and beyond it the slope of scrubland leading up the hillside where Pascal tended to his vines; and then he saw the priest's cottage. ", "The same old pale-blue Renault 14 was parked in the narrow, winding street outside. ", "Ben's spirits brightened seeing it, knowing it meant Pascal was at home.", "\n\nHe pulled the Alpina up at the kerbside and got out. ", "Looked up at Pascal's windows, dark and shuttered like every other window in Saint-Jean. ", "The cold stillness seemed to hang over the place like a shroud, and he shivered. ", "He didn't want to wake Pascal, and thought about sitting a while longer in the car, but changed his mind, walked up to the door and knocked softly.", "\n\nThere was no response after a couple of minutes, so Ben made his way around the back, through the neat yard, past the henhouse. ", "A goat bleated from somewhere in the darkness. ", "The back porch was open. ", "He creaked the door ajar and stepped into the narrow hallway. ", "He smelled the rich cherry and vanilla tang of aromatic pipe tobacco that had soaked into every crevice of the old stone walls. ", "An antique case clock ticked steadily, sonorously from within. ", "He called out softly, 'Father Pascal?'", "\n\n' _Arrêtez!_ ' ", "The voice behind him made him tense and whirl around. ", "Yellow torchlight shone in his face and glinted off something that Ben instantly recognised as a wartime French service revolver. ", "One that was pointed right at him.", "\n\nBen froze and put up his hands. ", "Normally, when faced with a firearm aimed in his face, he would have done either one of two things: move in faster than a striking cobra and take control of the weapon, breaking the fingers of the person holding it. ", "Or, if that wasn't tactically favourable, he would have drawn out his own gun and fired first. ", "And so far in his life, Ben had always been quicker.", "\n\nBut he wasn't about to do either of those things when the person with the gun was a little old woman as frail as a sparrow, so frightened that the weapon was fluttering in her skinny hand. '", "Who's there?' ", "she quavered.", "\n\n'Don't shoot,' he said in French. '", "It's all right. ", "I'm a friend of Father Pascal. ", "My name's Ben.'", "\n\nThe woman hesitated, then reached tentatively out and clicked on the wall light. ", "She was in her seventies, with thinning grey hair, wearing a dressing gown topped by a shawl draped around her shoulders. ", "Her eyes were reddened as though she'd been crying.", "\n\n'I couldn't sleep,' she said. '", "I saw the car lights. ", "I thought perhaps _they_ had come back.'", "\n\n'You thought who had come back?'", "\n\n'Those men. ", "The men who—' Her voice trailed off. ", "She sniffed.", "\n\n'You don't have to point the gun at me,' Ben said, eyeing the antique revolver and her finger on the trigger. ", "It might be a relic, but if it had been good enough to kill Germans in two world wars, he didn't want to be on its business end. '", "I promise I won't hurt you. ", "Where's Pascal? ", "What men are you talking about? ", "Is everything all right?' ", "But it obviously wasn't. ", "He sensed something was terribly wrong.", "\n\nThe gun drooped in her thin hand, pointing at the floor. ", "The old woman's eyes filled with tears. ", "And now Ben knew for sure, and he felt his own shoulders sag.", "\n\n'When?' ", "he asked.", "\n\n'Two days ago.'", "\n\n'What happened?'", "\n\n'There was an attack. ", "At the church. ", "The police think it was two intruders. ", "Nobody knows. ", "Nobody saw anything.' ", "She sniffed again, and shook her head. '", "Pascal... I knew him all my life. ", "And now he is gone.'", "\n\nBen's throat was so tight that he could barely speak. '", "What did they do to him?'", "\n\n'They beat him. ", "They killed him, _les salauds_. ", "The funeral is this morning.'", "\n\nBen was numb as he walked back to the car. ", "He watched the old woman disappear inside her house, her head bowed. ", "He sat and smoked, letting his mind become empty.", "\n\nDawn came; the sky lightened in gradual shades. ", "A fog hung over the mountains in the background. ", "The old woman reappeared, dressed in boots and a coat. ", "If she was still carrying the gun out of fear that the attackers might return, it was hidden in a pocket. ", "She let Pascal's hens out and fed them, moving stiffly in the morning cold. ", "Seeing Ben sitting there in his car, she came over with a sad smile and asked if he'd like to come inside for coffee. ", "He said no, thanks, and apologised for having scared her earlier. ", "He told her the men wouldn't be back, and that she shouldn't be afraid.", "\n\nThere was nothing more to say. ", "Nothing more to do here. ", "He'd be on his way, after the funeral.", "\n\nAt ten o'clock in the morning, Father Pascal Cambriel was laid to rest in the graveyard of the church of Saint-Jean where he'd spent so many years caring for his community. ", "Many had turned out to pay their final respects to the much-loved priest they'd known all their lives. ", "Ben stood at the back of the crowd and watched with a clenched jaw as the coffin went into the ground. ", "There were tears and sobs. ", "A younger priest drafted in from a neighbouring town said a few solemn words. ", "Ben spoke to nobody.", "\n\nHe was the last to leave the cemetery. ", "As he knelt alone by the fresh grave, he made his promise. ", "Then, slowly, calmly, he walked back to the car and drove away, never to return to Saint-Jean.", "\n\nGentle, kind Pascal wouldn't have approved of the vow Ben had taken at his graveside. ", "But Pascal hadn't lived in Ben's world and had only the smallest understanding of what motivated evil men and the cruelty they were capable of. ", "Those were things Ben understood very well indeed. ", "And whoever was doing this, whoever was hurting his friends, he was going to track them down, and find them, and destroy every single one of them.", "\n\nThey wanted blood. ", "They were going to get it.", "\n\n## Chapter 14\n\n_'Gennaro, you are a gift from God.'_", "\n\nWhen Massimiliano Usberti had uttered those words six months earlier, he'd meant them literally. ", "For a man of such profound religious faith as his, there had been no other way to describe an event so serendipitous. ", "It was the act of Divine providence he had been praying for. ", "Now that it had come, with it came the long-cherished opportunity to start putting his plans into action.", "\n\nHe'd been waiting a long time.", "\n\nLife was quiet when you were a disgraced former archbishop. ", "Too quiet. ", "For years, Massimiliano Usberti had seen almost nobody, spoken only to the small band of faithful disciples who hadn't abandoned him since his fall from grace. ", "And what a spectacular fall it had been. ", "The pain and humiliation of his rapid, sudden descent remained with him every waking moment. ", "His private retreat, the villa set into its own four acres on the shores of Lake Como, was his only comfort, though for all its opulence it was a far cry from the magnificent Renaissance palace outside Rome that had been his main residence at the peak of his career as a senior archbishop.", "\n\nBack in those halcyon days, it had seemed as if nothing could stop him. ", "He'd been on track to become a cardinal. ", "One day, perhaps even Pope. ", "Anything, everything, he dared to dream felt within his grasp. _", "Gladius Domini_ , the Sword of God, his brainchild, his life's work, had secretly attracted powerful investors from every fundamentalist Christian enclave across the world and mighty friends in China and the USA. ", "Its goal: to re-Christianise the globe and destroy once and for all the rising Islamic threat that was spreading everywhere like a cancer; to bring about a new golden age of holy crusade against the heathen menace in the East. ", "Its mission statement was _Necos eos omnes. ", "Deus suos agnoscet._ ", "Or, in layman's terms, 'Kill 'em all and let God sort them out'.", "\n\nWhen the crash had come, thanks to the combined efforts of Usberti's enemies, the blooming flower that had been Gladius Domini had been trampled into the dirt. ", "All but a handful of his powerful friends in high places had deserted him in the wake of the disaster. ", "The investors had dropped him like a hissing stick of dynamite and run a mile. ", "His dreams had crumbled into ashes as he escaped imprisonment by the skin of his teeth, letting minions like the hapless Severini take the fall in his place.", "\n\nAnd so, with his power hugely diminished, his ambitions crushed and his once-substantial wealth slowly eroding, Massimiliano Usberti had become a virtual recluse. ", "No longer the proud, physically imposing, leonine man he once had been, he grew scraggy and wrinkled and started paying less attention to his personal appearance. ", "He lost interest in food and gained a little too much interest in strong spirits. ", "His beloved motor yacht, in which he'd once merrily sailed the sparkling blue waters of Lake Como, no longer held any joy for him. ", "He would sometimes be confined to his bed for days on end by fits of black depression from which not even his new assistant, a devoted young priest called Silvano Bellini who had joined his shrivelled retinue a few months earlier, could rouse him.", "\n\nWhen he did take Bellini's advice to get some fresh air and exercise, all he could do was pace restlessly about the lakeside estate, brooding and muttering to himself. ", "Indoors, he became glued to the internet, obsessing over the state of the world. ", "Was he the only one who could see how desperately, now more than ever, God's guiding hand was needed to avert the catastrophic decline of civilisation? ", "The more he scoured the web for fuel to feed the fire burning inside him, the more evidence he saw of the entire globe's descent into ruin: heading faster and faster towards utter degradation as the situation that had seemed untenable even at the height of Gladius Domini's glory days now seemed to spiral ever further into complete chaos.", "\n\nUsberti was convinced that the age of Sodom and Gomorrah was returning in modern times exactly as prophesied in Scripture, bringing with it a plague of abominations that were the sure signs of the approaching apocalypse. ", "The holy institutions of family and marriage breaking down. ", "Promiscuity and drugs, pestilence and mental illness everywhere, perpetrated and encouraged by a subculture of corrupt intellectual elitists who had turned their back on God's wisdom and taught others to follow their disgraceful example. ", "Men marrying men now, heaven help us. ", "What next, sheep and goats? ", "As if that perversion were not gruesome enough, barely a day seemed to pass without Usberti wanting to throw up at the sight of yet another aberrant bearded transsexual being fêted by the online media. ", "The Western world was in the throes of lunacy, celebrating bestial sin and surrendering to all manner of vile unnatural passions and self-obsessed neurosis, even as the invading enemy hordes came flooding through their open borders: a never-ending army of so-called refugees bringing with them a wave of crime, rape and violence perpetrated against the decent Christian people who had welcomed them into their lands. ", "Roaring in like a rogue wave, the heathen invaders were set to colonise all of Europe and beyond, one nation after another. ", "The weak, ineffectual puppet governments of those countries, paralysed by the spell of political correctness and terrified of committing what the propagandists defined as a 'hate crime', would simply stand back and do nothing, until the faithless and dissolute West ultimately fell to the invasion of Islam and Shariah law.", "\n\nNeedless to say, Usberti had seen the whole ugly mess coming a long time ago; nobody had wanted to listen to his warnings and now it was almost too late to stem the tide. ", "It was left to a brave few to fight back, and Usberti yearned to take his place at the head of a righteous campaign to restore sanity and godliness to the world. ", "But what could he do? ", "His money was dwindling, his influence was dead and his name was a joke.", "\n\nHowever badly his frustration over the state of human affairs consumed him, it was his bitter hatred of his personal enemies that ate deepest of all into his soul. ", "He spent hours daily plotting all kinds of bitter revenge against those who had engineered his downfall. ", "One in particular: Ben Hope.", "\n\n_Ben Hope_.", "\n\nEven the sound of the name made Usberti want to spit bile. ", "For years, the only thing that sustained him was to dream about the terrible things he would do to the despicable swine who, more than anyone, had destroyed his future. ", "Not just Hope, but all the others too: a list of names that Usberti recited endlessly in his mind and often wrote down by hand, scratching the letters so deep that his pen would wear right through the paper and mark the surface of his desk.", "\n\nThose filthy pigs thought he was finished. ", "They thought they had stopped him. ", "How wrong, how oh-so-very wrong, they were. ", "And how pitifully they would all squeal for his mercy when he was restored to his former power, one day.", "\n\nOne day.", "\n\nBut he knew that could never happen. ", "Oh, he had the means to take his revenge, all right. ", "He wasn't broke, not yet, and he still commanded the loyalty of followers who would do whatever he asked. ", "Neither his personal assistant Silvano Bellini nor his administrator Pierangelo Volpicelli were coarse or brutal men, but Usberti had made sure he surrounded himself with others who were exactly that: men such as Ennio Scorceletti, known simply to his associates as 'the big man', along with Renato Zenatello, Federico Casini, Aldo Groppione, Luca Iacono, Maurizio Starace and half a dozen others who lived in barrack-style accommodation on the estate, were uncompromisingly vicious thugs from a variety of criminal backgrounds. ", "The hulking Scorceletti was a staunch Catholic who had beaten his estranged wife to death with a hammer after she left him for another woman. ", "Zenatello, a former carabiniere, had done time in prison for his role in the murder of four Afghan immigrants. ", "Convicted rapist Groppione had performed similar tricks against a Nigerian asylum seeker and his wife, killing them in their car outside Fermo with a hunting rifle. ", "Iacono was a computer hacker by trade, who had proved his fealty to God by setting fire to a mosque in his home town of Naples.", "\n\nThe list went on.", "\n\nFor all of these men, the primary appeal of their employer's brand of Christian fundamentalism was that they could vent as much hatred as they liked against homosexuals, Muslims, atheists, liberals and other filthy servants of Satan. ", "They each loved nothing more than being sent on a vigilante mission of faith-inspired violence in the sure knowledge that they were consolidating their places in heaven. ", "Some of them, like Scorceletti, had been recruited into the ranks of Gladius Domini back in the glory days, before the fall; if anything, Usberti's topple from grace had only intensified the fierceness of their loyalty to him. ", "He had only to give the order, and he could unleash all manner of bone-breaking, razor-slashing nastiness on those he dreamed of punishing.", "\n\nSo many sleepless nights he'd spent working out his vengeful plans, he knew exactly what form the punishment would take. ", "But as much as he yearned to give the order, he knew that the moment he took any such action against his list of enemies, his involvement would be so transparently obvious to even the most obtuse law enforcement official that he'd be instantly whisked away to prison for the rest of his life. ", "And however much he detested the scum who had brought him down, he wasn't prepared to give up what little freedom and luxury remained to him.", "\n\nThen how could he strike back at them? ", "He couldn't think of a solution. ", "It would take a gift from the Lord above to make it happen. ", "Every day he got down on his knees and prayed for Divine help in making his plans possible. ", "Had he not been a loyal servant of God all his life? ", "Didn't he deserve just one break?", "\n\nUsberti seldom ventured from the privacy of his sanctuary. ", "That summer, however, he had taken a rare road trip to visit his last surviving relative, an uncle who lived in a luxury residential clinic for the elderly not far from Assisi in Umbria.", "\n\nUsberti's reasons for travelling four hundred kilometres to see the old man, on whom he hadn't laid eyes in at least thirty years, were by no means sentimental: Fortunato Usberti was two months shy of his hundredth birthday, reportedly possessed barely an organ in functioning condition, had completely lost his marbles and was as rich as Croesus. ", "His devoted nephew therefore felt obliged to rekindle the somewhat lapsed relationship between them, in the hope that the ailing Fortunato might consent to leaving him a little something when he shuffled off to a better place, which with any luck wouldn't be too long away. _", "This is what it's come to_ , Usberti seethed on the journey south.", "\n\nA double disappointment awaited him in Umbria. ", "On arrival at the rest home he found his uncle disturbingly alive and plenty chipper enough to molest the nurses, while now so senile that he didn't even know he had a nephew, let alone one he recognised. ", "Usberti didn't stay long. ", "He got back in the Mercedes and instructed his driver to get him out of here. ", "Soon afterwards, as they passed through a small village, Usberti spied a little church and felt the urge to go inside. ", "Maybe the Lord would grant him some new miracle.", "\n\nAnd that was exactly what the Lord did.", "\n\nUsberti's heart nearly stopped beating when he saw Gennaro Tucci walk into the coolness of the empty church. ", "Then, of course, he didn't know the man's name or anything about him – except that this complete stranger could have been cloned from Usberti's own flesh and blood. ", "The resemblance was uncanny, quite stunning, although Usberti was the only one who seemed to spot it as the man barely glanced at him with a quick smile.", "\n\nThat was when the idea had come to him, in a flash. ", "It was so simple, so blindingly obvious; and Usberti realised that God, in those mysterious ways of His, had provided His loyal servant with the perfect means to take his long-sought revenge.", "\n\nThe decision that followed was an easy one to make. ", "Gennaro Tucci lived alone, a poor man with a simple life and few friends. ", "That much had been easy to find out, and it was all Usberti needed to know.", "\n\nTwo days later, his men Casini, Zenatello and Scorceletti seized their victim at his home and brought him back to the Lake Como estate. ", "There Gennaro was kept locked in a disused wine cellar for a week, while Usberti quickly and secretly, through a defunct company name, allocated a substantial part of his remaining fortune to the purchase of a small island off the Sicilian coast. ", "The moment the sale went through, it was time to move briskly to the next phase. ", "They brought the hapless prisoner up from the cellar, forced cognac down his throat until he was half unconscious, dressed him up in some of Usberti's own clothes, then dragged him to the boathouse where the motor yacht was launched for the first time in years.", "\n\nThe rest was history. ", "When the disfigured body was dragged from the water later that day, it was an open and shut case: death by misadventure. ", "Nobody would lament the passing of the disgraced former archbishop, just as little was made of the disappearance of a retired, penniless carpenter from Umbria. ", "Even if it had, nobody would ever connect the two.", "\n\nAnd now Usberti, whisked off in the night to live in hiding on his island off the coast of Sicily, was ready to strike back at his enemies from a position of absolute safety, where nobody would suspect him, let alone come looking for him. ", "Vengeance would be his, and it would be carried out from beyond the grave.", "\n\nHe couldn't wait.", "\n\nBut what Massimiliano Usberti couldn't possibly have known back then, six months ago, was that his revenge quest would lead him to a greater reward by far. ", "A treasure he couldn't have imagined in his wildest dreams of wealth and power.", "\n\nUsberti was soon to make the discovery of his life.", "\n\n## Chapter 15\n\nAs Ben drove away from Saint-Jean, he considered his priorities. ", "The first of which was to understand who was doing this. ", "Was someone else carrying out these attacks on Usberti's behalf, or was Usberti alive? ", "If he was alive, where was he?", "\n\nIf the situation had been different, Ben could have picked up the phone and talked to Luc Simon. ", "Now that the one cop he trusted in the world was gone, he might have been thinking about driving east, over the Italian Alps, to pay an unscheduled visit to Usberti's home estate. ", "But that wasn't his only or even his main priority, because there still remained one name on the hit-list to be ticked off. ", "Ben had to find Anna Manzini and make sure she was safe.", "\n\nHe checked his email – still no reply to the message he'd posted via her author website. ", "Looking again at the site, he noticed the name and number of Anna's literary agent in Florence on the 'contacts' page. ", "It was worth a try.", "\n\n' _Agenzia letteraria_ Carlo Scanzi,' said a gravelly voice.", "\n\nBen hadn't spoken Italian in a while. ", "He politely introduced himself, explained that he was a friend of Signor Scanzi's client Anna Manzini, said he urgently needed to contact her and asked if he could have a number or address, preferably both.", "\n\nThe agent responded with a snort. '", "Sure. ", "If you're such a close friend of my client's, why are you calling me? ", "You people will do anything to get your little feet in the door, won't you?'", "\n\nIt wasn't a good start. ", "Ben asked, 'What people?'", "\n\n'You're the second one today. ", "What's it this time, trawling for a free signed copy? ", "A referral to a publisher? ", "Help with some crappy project you think's gonna make you rich? ", "Dream on. ", "Wait, I know who you are. ", "You're not Italian. ", "You're that freaky Dutchman who tried to shove your manuscript on Signora Manzini at the Turin book fair and chased her into the ladies' bathroom. ", "I'm onto you, pal. ", "You breach that restraining order and I'll have the carabinieri down on you so fast it'll make your head spin.'", "\n\n'I told you who I am,' Ben said coolly. '", "And when I said this was important, I meant it. ", "Anna knows me. ", "Call her, tell her I'm trying to get in touch with her and that it's urgent. ", "Give her this number.'", "\n\n'Stick it.' ", "Scanzi hung up.", "\n\nIn truth, Ben couldn't blame the guy for protecting his client. ", "What troubled him the most was that he hadn't been the first one to call that day, trying to find out Anna's details. ", "It appeared that he had competition, and perhaps from more than just an overzealous book fan.", "\n\nWhich meant two things: first, if he couldn't get in touch with Anna by phone or email, he was going to have to travel the 750 kilometres to Florence and reach her in person; and second, he was going to have to get there before someone else did.", "\n\nThe quickest flight he could find online from Montpellier Méditerranée to Peretola Florence was a one-stop with Alitalia that was going to take over eight hours all told, with a long connection in the middle, on top of which would be the extra time-wasting hassle of hiring a car at the other end. ", "He reckoned he could drive there in a little over six hours, if he kept his foot down and avoided police entanglements.", "\n\nBut he couldn't do it without getting some rest first, or he risked falling asleep at the wheel. ", "Kipping in the car in a cold December was inviting hypothermia, so he hammered up the coastal A9 motorway as far as Montpellier, located a little hotel called the Ibis in a pine forest off exit 32 and crashed fully dressed into bed, where he tossed and turned for a couple of hours. ", "He awoke feeling as refreshed as he was ever going to, whether he slept two hours or twelve. ", "After a fast shower and a change of clothes he checked his email once more: still no reply. ", "Committed now, he jumped back into the Alpina munching on a brioche and raced eastwards, stopping only for fuel and coffee. ", "The French and Italian Rivieras flashed by unnoticed. ", "Marseille, Cannes, Monaco, Genoa. ", "By eight that evening, he was arriving in a wintry-looking Florence.", "\n\nCarlo Scanzi's office was on the top floor of a handsome old apartment building off Via dell'Agnolo, near to the historic centre's limited traffic area. ", "Ben drove slowly past the building to check that the upper windows were in darkness, then parked two blocks away, grabbed his bag and walked back. ", "The temperature had dropped below zero and a freezing mist cloyed the narrow streets, but the cold night air wasn't Ben's sole reason for having slipped on the pair of Blackhawk light assault gloves that he kept in the car.", "\n\nBen waited in a shadowy doorway across the street from the apartment building, watching the windows and the entrance until a young couple came out and hurried off, arm in arm, braving the chill. ", "Before the door had swung shut, Ben was across the street and inside.", "\n\nNobody was about. ", "He padded silently up the spiral stairs to the darkness of the top floor. ", "From his bag he fished out the mini-Maglite and turned it on. ", "He shielded its bright, thin beam with his gloved hand as he hunted for the agency office's door and quickly found it, marked by a brass plaque. ", "Ben reached back into his bag and took out the small pouch that contained his lock picks. ", "If Scanzi didn't want to talk to him, then he'd have to access the agent's client files by other means.", "\n\nBut when Ben went to pick the lock, to his surprise he found the door was already open. ", "He put away the picks and stepped quietly inside, pausing to listen and let his eyes adjust to the dark. ", "He was in a short hallway with a door at its far end. ", "He moved towards it in absolute silence, gently turned the door handle and slipped through.", "\n\nScanzi's office was in pitch blackness and utterly still. ", "The torch beam swept back and forth like a laser, picking out glass-fronted bookcases, artwork and tasteful furniture until it landed on what Ben was looking for, the antique desk cluttered with papers, piled-up books and a shiny Dell laptop. ", "On the wall behind Scanzi's desk chair hung a framed blow-up taken at some book event, where a small balding man in his sixties, wearing a rumpled suit and with skin the colour of tea stains, was shaking hands with a tall, immaculately dressed younger man baring perfect teeth at the camera. ", "Ben was no authority on Italian authors past or present, but he figured the glamorous one was some famous writer and the small rumpled unhealthy-looking one must be Scanzi.", "\n\nAs he approached the desk, Ben's torch beam picked out something else that made him stop in his tracks.", "\n\nHe said, 'Hm.'", "\n\nIt seemed that Carlo Scanzi hadn't gone home after work that day. ", "Because he was lying twisted on the rug in front of his desk. ", "And he looked even less healthy than he did in his photo. ", "In the photo, he hadn't had his throat cut and his chest and belly perforated by at least a dozen knife wounds that had turned his white shirt black with blood. ", "Scanzi's glassy stare seemed to be aimed right at Ben. ", "His face was contorted with terror and agony. ", "He hadn't died pleasantly, but there didn't seem to have been much of a struggle. ", "His murderer was evidently a much larger, more powerful man. ", "Whoever he was, he was long gone. ", "Ben didn't feel the need to draw his pistol.", "\n\nBen crouched by the corpse, cautious not to step in the blood that had saturated the rug and was still drying, telling him that Scanzi hadn't been dead for too long. ", "That impression was confirmed by the rigor mortis that had frozen his face in a mask of horror but not yet fully spread to his limb muscles, which could take five or six hours. ", "Scanzi had probably died sometime that afternoon. ", "Stepping over the body and exploring further with his torch beam, Ben could see none of the pictures of wife, kids and grandkids that a man of Scanzi's age might have added to the clutter on his desktop. ", "The agent wore no wedding ring, either: not a family man, then. ", "Which could account for why nobody had come looking for him when he hadn't returned home that day. ", "If nothing else, Ben could at least rest easy in the knowledge that he wouldn't be disturbed in the next few minutes while he searched for what he needed.", "\n\nThe Dell laptop had gone to sleep, and flashed into life when Ben touched the power button. ", "What came up on-screen was the most recently opened file. ", "It was an agency agreement, a kind of document Ben had never seen before but which he guessed must be a standard boilerplate contract between authors and literary agents. ", "It was dated two years earlier. ", "The bold print header read AGENZIA LETTERARIA CARLO SCANZI. ", "On the line below was the name and address of the client who had signed up to be represented by him.", "\n\nAnna Manzini.", "\n\nWith a sick feeling, Ben realised he'd been right. ", "Someone else had been following up the same line of inquiry as him. ", "Someone who was now a critical step ahead of him and knew where to find her. ", "Someone with a knife that had already been bloodied once that day.", "\n\nBen left the apartment and raced back down to the street. ", "He wanted to sprint the two blocks back to his car, but kept to a brisk walk in case a report of a man running from a murder scene later attracted suspicion. ", "Anna's address was scrawled on the notepad in his pocket. ", "He punched her postal code into his sat nav. ", "Moments later he was screeching through the streets of Florence, heading south.", "\n\nThe sat nav led him eight kilometres outside the city, into rolling countryside dusted with frost. ", "Judging by the place she'd rented in the Languedoc when he'd known her, she had a taste for elegant and secluded homes; as he turned through the gates and found himself winding up a long, private tree-lined driveway, it was clear that her new residence was no exception.", "\n\nAs the villa came into view, Ben's already rapidly beating heart stepped up a notch. ", "The blue lights of emergency vehicles swirled through the mist up ahead. ", "The property was swarming with cops. ", "Paramedics were carrying a body on a gurney from the house towards a waiting ambulance.", "\n\nOnce again, he'd got there too late.", "\n\n## Chapter 16\n\nThe villa was fronted by a grand paved circular courtyard with an ornate baroque-style fountain as its centrepiece, all illuminated in the hard glare of the swirling blue lights and the softer glow from the house's many windows, all of them lit up. ", "Ben hurriedly parked the BMW away from the cluster of police cars, got out and ran towards the boil of activity, taking in the scene. ", "There was only the single ambulance, accompanied by five blue Florence police Alfa Romeos and a Lamborghini fast pursuit car belonging to a pair of swaggering plain-clothes guys who had taken charge of the dozen or so uniformed cops present.", "\n\nThe paramedics had nearly reached the ambulance. ", "Pushing his way closer, Ben saw that the body on the gurney was covered in a bloody sheet. ", "His stomach twisted up at the sight. _", "Anna._", "\n\nBut as he pressed onwards through the police cordon he saw that the sheet wasn't pulled up right over the victim's face the way they did with dead bodies – and that the face, wearing an expression of agonised pain, wasn't Anna Manzini's. ", "It was a male, youngish, dark-haired, thirty or less. ", "He didn't look fatally injured, but he'd been pretty badly cut up.", "\n\nBen felt a presence and turned to see one of the plain-clothes men approaching. ", "He was thirty-something, dressed in an immaculate Burberry trench coat, and looked like he spent more time in the gym and at the hairdresser's than chasing bad guys. ", "Eyeballing Ben suspiciously he took an ID badge from the right hip pocket of his coat and flashed it. '", "Detective Tito Bellomo. ", "Who're you?'", "\n\n'I'm a friend of Anna Manzini, the owner,' Ben said. '", "Where is she?'", "\n\n'This is a police crime scene,' he said. '", "You've no business here, so move on, please.'", "\n\n'Is she here?' ", "Ben insisted. '", "Is she all right?'", "\n\n'I said move on,' Bellomo said, giving Ben a scowl that he probably practised in the mirror every day. '", "Or I'll arrest you for loitering.' ", "He tucked his ID badge back in his coat pocket.", "\n\nBen held up his hands. '", "No problem, officer. ", "Hey—' He pointed at the sleek blue-and-white police Lamborghini that was gleaming in the villa's lights. '", "Is that your car? ", "Wow, that's really something, isn't it?'", "\n\nBellomo couldn't resist looking round to admire it himself for a moment, before he turned back to Ben with the scowl. '", "Are you still here?'", "\n\n'On my way, Detective. ", "Sorry I troubled you.'", "\n\nBen made as if to head back to his car, but the moment he saw Bellomo walk off, he slipped into the shadows and watched the scene unfolding. ", "From here he could see through the tall front doors of the villa and into the entrance hall, twice the size of Le Val's living room and gleaming with marble, a broad sweeping staircase in the background.", "\n\nObserving the crowd of people in the hall, Ben couldn't see Anna among them and wondered where she could be. ", "There were two young women dressed as though for a night out, bare-armed in flimsy dresses and shivering and hugging themselves in the cold from the wide-open door. ", "Both were crying and being gamely consoled by the pair of men they were with, who looked about the same age as the victim being loaded aboard the ambulance and just as traumatised as their female companions. ", "The four of them were being questioned by Bellomo's plain-clothes partner and a team of patrol officers.", "\n\nIf they were witnesses to whatever had happened here tonight Ben wanted to speak to them, but there was no way he could get close.", "\n\nThen he noticed a third young guy, dressed similarly smart-casual as the first two and about the same age, who had wandered outside to sit on the low wall surrounding a little patio or barbecue area off to one side of the house, half-lit by the swirling blue lights. ", "The cops either hadn't noticed him, or for some reason they were less interested in speaking to him than to his friends. ", "He didn't seem particularly upset by the evening's drama, more concerned with the cigarette he was trying to ignite from a lighter that was sparking but wouldn't produce a flame.", "\n\nBen walked over, sat next to him on the wall and offered his Zippo. '", "Try mine,' he said in Italian.", "\n\nThe young guy puffed ferociously on the lit cigarette, passed Ben back his Zippo and muttered, 'Thanks, man.' ", "He was in his mid-twenties or thereabouts, with a scrappy beard and long black hair that kept flopping into his eyes. ", "He paused for a moment to glance Ben up and down, then pointed at the villa. '", "Look, I already told Detective Franciosa in there all I could. ", "I was barely involved in this whole thing, you know?'", "\n\nBen nodded sagely, took out the ID card he'd just lifted from Bellomo's trench-coat pocket after distracting him and let the young guy have a quick glance at it, keeping his thumb over the mugshot photo. '", "Detective Bellomo, Florence CID. ", "Just a minute of your time, Signor—?'", "\n\n'Morante, Luciano Morante. ", "Where you from, Detective? ", "If you don't mind my saying, your accent's kind of weird.'", "\n\n'I worked abroad a long time,' Ben said, taking out his notepad and jotting down Luciano's name, just like a real detective would.", "\n\n'That's what I'd like to do, you know, see the world. ", "Hey, man, that police Lambo is the coolest car. ", "What's it like, being in your job? ", "You get to shoot a lot of people?'", "\n\nBen looked at him. '", "You wouldn't believe me if I told you.'", "\n\nLuciano's eyes twinkled. '", "You got a gun? ", "Can I see it?'", "\n\nBen hesitated. '", "If I show it to you, will you answer my questions?' ", "He was wondering if it would be quicker just to put the gun to this twerp's head and give him three seconds to spill what he knew, but maybe even Italian detectives didn't behave that way towards members of the public.", "\n\n'Sure.'", "\n\nBen slipped out the Taurus, dropped the magazine, jacked the round from the chamber and let Luciano fondle the unloaded weapon. ", "Satisfied, Luciano passed the pistol back to him, took another draw of his cigarette, blew out a gigantic cloud of smoke and motioned towards the house.", "\n\n'Man, what a scene, huh? ", "Never even met Gianni Garrone before. ", "Poor bastard. ", "I only came along for the ride; I'm a friend of Pietro there, you know?' ", "He pointed. ", "Pietro was one of the two men in the hallway, still talking to Franciosa and the uniforms.", "\n\nLuciano went on, shaking his head, 'It's unreal, man. ", "I'm new in town, first party I get invited to, next thing I know I'm walking in and there's the host, this Garrone dude, tied to a chair and some big psycho maniac carving him up with a knife in one hand and a fucking digital recorder in the other. ", "One glance at us, and he takes off. ", "The sicko probably gets his kicks playing back the screams of his victims. ", "I saw that in a movie.'", "\n\nIt felt like history repeating itself. ", "Another Manzini villa, another sadistic knife attack. ", "As though Franco Bozza was back, and up to his old tricks. ", "But that couldn't be. ", "In his mind, Ben was seeing the bloodied, ripped shower curtain at Luc Simon's apartment in Lyon. ", "Picturing the blade shearing through thin plastic and slicing into vulnerable, naked flesh. ", "He asked, 'Did you get a good look at the attacker? ", "Would you recognise his face?'", "\n\n'No way, man. ", "He was wearing a mask, like a ski mask?'", "\n\n'You said he was a big guy.'", "\n\n'No, not big. ", "Huge. ", "Definitely over two metres tall. ", "All bulked up like he was a powerlifter or something, but fast on his feet. ", "He disappeared into the woods on the other side of the house. ", "A minute later we saw a car go speeding off. ", "Might've been a van, probably dark-coloured or black, hard to say.'", "\n\nIt was a usefully detailed description. ", "Ben jotted it down. '", "Your friend, you said his name was Pietro—?'", "\n\n'Rossi. ", "We work at the International Film School together. ", "I just started there a couple months ago.'", "\n\nBen's list was growing. ", "He scribbled the name Pietro Rossi next to Luciano Morante, circled them together and wrote beside them, FLORENCE INT. ", "FILM SCHOOL _. '_ ", "So the victim, Gianni Garrone, he's a buddy of Pietro's too?'", "\n\n'Yeah, though like I said, I never saw him until tonight. ", "It's my first time coming here. ", "Pietro's been to a few of Garrone's get-togethers. ", "Said there were going to be girls. ", "Well, I count two. ", "For three guys, plus Garrone makes four. ", "Some night this turned out to be. ", "Can you believe I've been here two months and I still haven't got laid?'", "\n\nLeaving aside Luciano's frustrated love life, Ben asked, 'Does Garrone live here?' ", "Thinking that maybe Garrone was Anna's current younger male squeeze, who could have moved in with her. ", "That didn't seem like Anna's style to Ben, but it occurred to him that perhaps he didn't know her as well as he thought he did. ", "That still wouldn't explain where Anna was now.", "\n\nLuciano shook his head. '", "He lives here, but not like, it's his place. ", "He works here. ", "The owner's a woman. ", "Hot stuff, too.' ", "He grinned. '", "Pietro said, first time he saw her, he thought she was Valentina Del Cuore. ", "You know, the movie star? ", "Absolute dead ringer.'", "\n\nBen grunted, pretending to have heard of her.", "\n\n'This Manzini chick's a writer, apparently. ", "Gianni's, like, her assistant. ", "Helps with research and stuff, makes phone calls, runs errands. ", "Lives over there, in the annexe next door, but she lets him have parties and stuff in the big house when she's away.'", "\n\n'And that's where she is, away?'", "\n\nLuciano blew more smoke. '", "I guess she must be, yeah. ", "She's not here, anyhow. ", "If she was here, you guys would've found her when you searched the house, no?'", "\n\nBen's relief was outweighed by his frustration. '", "Did Pietro happen to say if he knew where she'd gone?'", "\n\n'Nah, man, not to me.'", "\n\n'But if Gianni's her assistant, he must know where she is.'", "\n\n'I guess so, yeah,' Luciano said noncommittally, puffing like a steam train. '", "What's the deal with her? ", "She in trouble or something?'", "\n\nBen put away his notepad, stood up and offered his hand. '", "You've been a big help to the investigation, Signor Morante. ", "I'll know where to find you if we need to talk again.'", "\n\n'Detective Bellomo, right?'", "\n\nBen walked away. ", "He wanted to confirm what he'd learned with Pietro and perhaps find out more, but Pietro was still deep in conversation with the cops. ", "Meanwhile, the paramedics had finished loading the injured Gianni Garrone into the ambulance and were closing the doors. ", "If Ben wanted to find out where they were taking him, now was his only chance. ", "If he drew a blank, he could always pay a visit to the Florence International Film School later to catch up with Pietro Rossi.", "\n\nMaking his choice, Ben trotted to the Alpina and fired it up. ", "He waited for the ambulance to go first, making its way down the villa's driveway with its headlamps burning beams through the mist.", "\n\nHe followed.", "\n\n## Chapter 17\n\nThe ambulance headed back towards Florence with its blue lights flashing. ", "Ben had expected it to lead him to some modern hospital on the outskirts of the city, but instead it led him deep into the historic centre, to the Piazza di Santa Maria Nuova where it pulled up outside the portico of an ancient hospital building by the same name. ", "Ben tucked the Alpina into a parking space off the square a short distance away, and watched from behind the wheel as the paramedics and a team of hospital staff unloaded Gianni and hustled him quickly inside out of the cold.", "\n\nBen waited an hour in the car, during which time he got back on the phone. ", "Still no email response from Anna. ", "Frustrated, he dialled Sandrine Lacombe's number. ", "She sounded anxious. ", "There had been no change in Jeff's condition and she had little to report, except that his mother had arrived from Australia and had to be sedated after the shock of seeing him. ", "Sandrine seemed totally unaware of the armed guard Ben had posted on her hospital. ", "But something in her tone made him suspect she wasn't telling him everything.", "\n\nNext, he called Le Val for an update on things there. ", "Tuesday told him that McGuire, Fry and Blackwood had arrived early that morning. ", "Between them, they were watching the perimeter day and night and if anyone was lurking nearby, they'd know about it. '", "Have you seen the news?' ", "Tuesday added in a dark undertone.", "\n\nWhen Ben checked the online media channels immediately after ending the call, he fast discovered what Sandrine Lacombe hadn't wanted to tell him. '", "Shit,' he muttered.", "\n\nIt had to have happened sooner or later – and it had, while he was heading towards Italy. ", "The BBC, Euronews.com and the other channels had all broken the story more or less identically:\n\n_'The victim of the recent suspected terrorist incident in Normandy has been named by French police as Jeff Dekker, a British ex-serviceman and director of the Le Val Tactical Training Centre near Valognes, a shooting gallery used by law enforcement and the military, as well as civilians. ", "Mr Dekker is currently being treated for gunshot wounds at Louis Pasteur Hospital in Cherbourg, where he remains in a critical condition. ", "Le Val co-director, Benjamin Hope, was unavailable for comment. ", "France's Secretary General for National Defence, Henri Couillon, yesterday expressed grave concerns over the security risk posed by private firms such as Le Val, where large arsenals of deadly assault weapons are vulnerable to easy theft by extremist groups...'_\n\nOrdinarily, Ben would have been irritated by the 'Benjamin' part, as well as the article's misleading sensationalism and description of Le Val as a 'shooting gallery'. ", "But right now, what concerned him was the fact that his enemies, whoever they were, knew that they'd got the wrong man. ", "They wouldn't have to be geniuses to figure out that their intended target was still out there, and gunning for them.", "\n\nIn other words, his element of surprise had just vaporised.", "\n\nBen quelled his annoyance with a couple of cigarettes. ", "As his thoughts calmed, he realised that the leak also meant that Jeff was no longer at risk in Cherbourg – not from sneak assassins, at any rate. ", "He made a quick call to Boonzie to instruct him to pull the two guys off their post in Cherbourg and send them down to Le Val to fortify the defences there.", "\n\nOnce that was done, Ben looked at his watch and decided that Gianni Garrone's doctors had had plenty enough time to do whatever they needed to do to patch up their patient. ", "He left the car and wandered inside the old hospital building, keeping an eye out for cops but, so far, spotting none. ", "At the front desk, he flashed the police ID and asked to see the patient. ", "He was ready to bolt at the first sign of trouble, but the real Detective Bellomo obviously hadn't yet sounded the alarm over his stolen badge, and the hospital staff were happily taken in by the impostor – weird accent or not. ", "The nurses tried to insist that he should come back later as Signor Garrone was in no fit state to receive visitors yet. ", "Ben sweet-talked them into letting him have ten minutes alone with the patient. ", "This kind of work was so much easier when you could open doors with a wave of your badge. ", "He wished he could be a cop more often.", "\n\nThe hospital wasn't much more modern inside than it was outside. ", "A nurse led him to a curtained-off corner of a ward, where he found Garrone propped up in bed, heavily bandaged and even more heavily drugged.", "\n\nBen pulled up a chair. ", "When the nurse had gone, he said, 'I'm Detective Bellomo. ", "You had a lucky escape tonight, Gianni. ", "I know you're hurting, so this won't take long. ", "I need to know where Anna is. ", "I don't have time to explain, but she's in serious danger.'", "\n\nGarrone couldn't turn his head. ", "His bloodshot eyes rolled sideways to peer at Ben in surprise at the mention of Anna. ", "He was pumped full of so many painkillers that his lips barely moved as he croaked, ' _Is... she... okay?_ '", "\n\n'I hope so, Gianni, and I mean to keep her that way. ", "But I need your help.'", "\n\n' _Left... three days ago... research trip..._ ' The patient winced as though every breath was causing him terrible pain, which Ben didn't doubt it was. ' _", "Really big... Important,_ ' he added.", "\n\n'I don't care what she's researching, Gianni. ", "That's not what I need to know. ", "Just tell me where she went.'", "\n\nGarrone's eyes drifted shut, and for a moment Ben thought he'd passed out. ", "He had to lean close to hear the murmured word, ' _Olympia._ '", "\n\nBen didn't think he meant the capital of the state of Washington, USA. ", "Or the exhibition centre in London. '", "She's in Greece?'", "\n\nAlmost inaudibly, Gianni whispered, ' _She went... to meet a man... Theo Kambasis._ '", "\n\n'Kambasis,' Ben repeated, writing it down.", "\n\nGianni nodded. ", "The drugs were rapidly carrying him under.", "\n\n'Stay with me, Gianni. ", "One more question. ", "The man who attacked you. ", "He was after her, wasn't he? ", "He hurt you so you'd tell him where she'd gone. ", "That's why he had the sound recorder.'", "\n\nAnother barely perceptible nod. ", "Gianni's breathing had slowed down to the merest sigh.", "\n\n'Did you tell him, Gianni? ", "Do they know where Anna is?'", "\n\nBut by then, Gianni Garrone was far away in a chemical haze from which he might not emerge for hours. ", "Ben had got all he was going to get, and it was time for him to leave.", "\n\nHe just had to hope he could find her before the killers did.", "\n\n## Chapter 18\n\nAs Ben was leaving the hospital, he was scanning a mental map of Europe and measuring distances. ", "Olympia was a long way away, right down on Greece's Peloponnese peninsula. ", "To travel there by road represented a monster journey back north past Bologna and Ferrara, then over the arch of the Gulf of Venice to Trieste near the Italian border. ", "Once out of Italy would begin the long slog southwards through the snowy forests and mountains of Slovenia and Croatia, across Bosnia and Herzegovina, through Montenegro and Albania and much of Greece itself. ", "Such a long drive was out of the question, time-wise. ", "As was the prospect of hacking all the way down to Ancona or Bari on Italy's east coast to catch a ferry – if ferries even operated at this time of year.", "\n\nNo: it was clear he was going to have to leave the car here in Florence and jump on the first flight he could get. ", "Assuming he could locate Anna Manzini in Olympia when he arrived. ", "Assuming she was still there by the time he did. ", "Assuming she was still alive when he found her.", "\n\nA lot of assumptions, but it was all he had.", "\n\nBen's mind was working fast as he walked away from the hospital portico arches and headed across the square towards where he'd parked the Alpina. ", "Piazza di Santa Maria Nuova was cordoned off by stumpy chained-together bollards, to stop cars blocking up the parking spaces for ambulances. ", "He stepped over the drooping iron chain and walked a few paces up the narrow street towards the car, lighting another Gauloise.", "\n\nHe was so consumed with his thoughts that he at first failed to register the pair of blazing headlights approaching the wrong way up the street, from the opposite direction. ", "Snapping back to the present moment he turned and saw the black van.", "\n\nGoing much too fast. ", "Heading right for him.", "\n\nBy the time Ben realised that the driver's intention was to run him down, it was almost too late to get out of its path. ", "He leaped back over the chain cordon, placing the two-foot-high concrete bollards between him and it.", "\n\nThe van didn't slow down. ", "It rammed into the bollards with a crunch of crumpling metal. ", "Its front rode up off the ground as it smashed the concrete into rubble and kept coming, like a tank, bearing down on him.", "\n\nBen ducked through the rapidly narrowing gap between the corner wall of the square and the oncoming vehicle. ", "He made it to the first parked car, a yellow Fiat, dived for it, slid sideways across its bonnet and landed on his feet. ", "Immediately he was running up the street towards the Alpina, knowing he had little chance of reaching it before the van caught him.", "\n\nWith just one headlight still intact and its bumper and grille twisted and mangled, the black van ploughed through the remains of the bollards and entered the mouth of the street, the roar of its engine echoing between the tall buildings either side. ", "Its left-side wing caught the front of the yellow Fiat and rammed it violently into the car behind it, a red Alfa that bounced sideways out of its parking space and almost flattened Ben as he raced past.", "\n\nBen was still ten long strides from his BMW. ", "The van smacked the wreckage of the cars aside and kept coming. ", "The passenger window was rolling down. ", "A black-gloved hand was reaching out, clutching what took only a split-second glance for Ben to identify as a SIG Sauer MPX machine pistol.", "\n\nThe weapon opened fire, filling the narrow canyon of the street with noise and releasing a stream of bullets that stitched a ragged line of holes in the sides of the parked cars in Ben's wake, punching through metal and glass.", "\n\nHe reached the Alpina's driver's door, but there was no time to get in. ", "Ducking around the back of the car he fell into a crouch and whipped his Taurus from his belt. ", "In advanced pistolcraft classes at Le Val, they taught the art of high-speed combat fire without using the sights. ", "Things were happening too fast to take aim in any case as the van bore down on him, the machine gun snorting from its passenger window. ", "He let off three fast snap-shots, saw his bullets splat into the van's crumpled bonnet and windscreen. ", "The MPX opened up with another strafing volley, blowing out two of the Alpina's side windows, shredding the rear door and wing and forcing him to duck. ", "The car shielded him from the gunfire. ", "Solid German engineering. ", "But if they'd been using a rifle-calibre assault weapon the bullets would have torn right through and found him on the other side. ", "Some things in life, you had to be grateful for.", "\n\nThe van slewed to a skidding halt, blocking the street. ", "Its doors burst open and two men jumped out. ", "They were wearing ski masks and body armour. ", "The one on the passenger side, dumping the spent mag from his machine pistol and slapping in a fresh load from a tactical pouch on his belt, was small and slightly built. ", "The driver was a monster, muscular and tall, and the Franchi Spas combat shotgun he was wielding like a claymore was built to match.", "\n\nBen remembered the witness description of Gianni Garrone's attacker. _", "A huge guy, bulked up like he was a powerlifter, but fast on his feet_. ", "Same guy – and maybe also the same bastard who had shot Jeff and murdered Father Pascal, Luc Simon and Carlo Scanzi. ", "He and his accomplice must have been hanging around the villa, waiting for the ambulance to go by so they could tail it to the hospital in Ben's wake and lie in wait for their moment to finish the job and eliminate the witness.", "\n\nAnd Ben had walked right into their path. ", "They'd obviously watched him go inside the hospital, and decided to make their move when he reappeared. ", "But Ben wasn't about to let himself be picked off so easily.", "\n\nFiring past the van's open door the big man let off a roaring blast from his shotgun that ripped away part of the Alpina's rear wing and tail-light, inches from where Ben was crouching. ", "Then another, blowing out most of the rear window pillar and spraying Ben with broken glass.", "\n\nPinned down, he used the moment to consider his tactical options. ", "In an ideal world, the torturer needed to be taken alive. ", "The big man had been the one sent into Anna's villa to gain the information; hence he was the most trusted and senior member of the hit team; hence he was more likely to know who they were working for. ", "By contrast, the little guy on the passenger side was expendable.", "\n\nSo in the next instant, when Ben felt a pause in the gunfire and reared up from his cover to take another shot, it was the little guy he fired at. ", "When the enemy is wearing armour, you abandon the traditional centre-of-mass approach and aim a little higher. ", "Ben held the Taurus tightly in both hands and snapped off a double-tap, BANGBANG, that took him right in the head, a little off-centre but who would quibble. ", "The little guy jerked backwards off his feet and went down on his back, the MPX clattering from his hand. ", "Before he'd hit the ground Ben was swivelling the pistol a few degrees sideways to open fire on his muscular pal, hoping to wing him and take him out of the game without inflicting a lethal hit.", "\n\nBut the big guy was as fast on his feet as Luciano Morante had said. ", "He ducked behind the open door of the van, clambering back inside with surprising agility for a man his size. ", "Ben fired at the windscreen, turning it into a web of cracks. ", "The van's engine roared. ", "It lurched forward and took off, leaving the dead man lying in the road. ", "As it sped past, Ben rattled off a string of shots and shattered the passenger window. ", "But the van kept going, making its escape the wrong way up the narrow street.", "\n\nBen could have run to check the dead man, but he had two reasons for ignoring him. ", "One, as a source of information he was past his best; two, Ben could hear the growing wail of police sirens through the ringing in his ears, a sound he didn't want to hear any more than the enemy did.", "\n\nHe scrambled out from behind his car. ", "The Alpina looked as if the SAS had been using it as a shooting-range target. ", "He could only hope it still went. ", "He wrenched open the bullet-riddled door, dived behind the wheel, twisted the key in the ignition – and to his relief the engine burst throatily into life.", "\n\nThe van's impact against the row of parked cars had squeezed them up nose-to-tail like railway carriages. ", "Ben slammed the gearbox into forward drive and rammed the car in front, then crunched it into reverse and rammed the one behind him, trying to widen the gap so he could batter his way out. ", "The van was getting further away every second.", "\n\nThe Alpina surged out of its parking space, wheels spinning. ", "Both headlamps were smashed, but that was what street lighting was for. ", "He punched the gas, roared into the square and pulled a 180-degree handbrake turn to bring himself facing the right direction. ", "In terms of the traffic system that was also the wrong direction, but all that mattered was catching up with the van.", "\n\nThere was no time for anything like fastening the seat belt. ", "Ben accelerated hard and the narrow ancient street with its crumbling stone walls and barred windows and shuttered doorways and graffiti became a tunnel. ", "Cold air whistled in through the shattered windows.", "\n\nThere was the van, racing wildly ahead. ", "Amid a screeching of brakes and blaring of horns, a bus appeared, blocking the van's way. ", "But a side street lay between them to the left, and the big guy threw the van down it, rocking hard on its suspension as he rounded the tight bend and almost flattened an old man and his dog who were crossing the road. ", "The bus driver kept coming, then had to slam the brakes back on again with a shake of his fist as Ben forced him to a halt a second time.", "\n\nThe Alpina hammered down the side street. ", "The van had lost precious seconds of lead. ", "Ben was catching up, but the van driver had no intention of slowing down for anything, any more than he had respect for the one-way system.", "\n\nBen felt the fierce thrill of the chase as he sped after his enemy. ", "He was the predator now, and he wasn't going to let the big man get away from him.", "\n\n## Chapter 19\n\nOn they went, reaching insane speeds as they zigzagged this way and that through the maze of narrow streets that was the heart of the old city, so tight in places that the van was scraping its sides to squeeze between the lines of parked cars on one side and the walls of shops and houses on the other. ", "Oncoming traffic veered onto the kerb to avoid a collision, adding to the cacophony of angry horns. ", "A lone motorcyclist braving the chill did a panic-brake to avoid being run down, lost control of his machine and went sliding off in a shower of sparks.", "\n\nThe van skidded right, left, right again. ", "Ben grimly chased on after it, battering past the traffic that swerved aside to let them through. ", "The police sirens were still there in the background but he couldn't see any cop cars in his mirror – yet.", "\n\nSuddenly the street opened up and they were tearing through one of Florence's great landmarks, the Piazza del Duomo. ", "The lit-up Gothic facade of Santa Maria del Fiore cathedral towered magnificently over them like a giant black-and-white cake. ", "Its great dome and Giotto's bell tower stood shrouded in mist. ", "On a less freezing cold night the square might have been crowded with pedestrians, and Ben was thankful it was almost deserted as the two vehicles went chasing across it at breakneck speed, sliding and fishtailing on the slippery paving stones.", "\n\nThe chase had to end soon, and it wasn't going to end well for either of them if the lunatic behind the wheel of the van kept this up much longer. ", "The night was murky and with only one working headlamp between them, it was virtually certain that either the van or the car was going to end up piling into a wall or a lamp-post.", "\n\nJust when Ben was steadily gaining on his target, he had to brake hard and almost lost control as a taxicab pulled out in front of him. ", "Gritting his teeth he saw the van's tail-lights vanishing off ahead and jammed the accelerator down hard in pursuit. ", "The cold air streaming into the car was whipping the breath from his lungs and making his eyes water, while his fists were going numb on the steering wheel.", "\n\nThey were carving southwards now, away from the cathedral district. ", "The Alpina was closing the gap once more – but now Ben could see the inevitable flashing blue lights in his rear-view mirror. ", "More lights were in the sky above, strong white search-lamps cutting through the mist as the Florence police helicopters joined the chase.", "\n\nHe couldn't give up. ", "The van was just thirty yards ahead of him, racing up a narrow street called Via del Moro, veering left and right and scattering rubbish bins into the Alpina's path and sending Ben into a slalom that took up what width the street had to offer. ", "The end of the street raced towards them and Ben glimpsed another square and a big junction up ahead, flanked with red lights. ", "Traffic was streaming across their path, but the van roared across the junction without slowing down and Ben had no choice but to go right after it, bracing himself for a collision that never happened as cars streaked and swerved past and horns chorused all around him.", "\n\nBen realised they'd reached the point where the River Arno bisected the city. ", "Ahead of him, the wildly careering van was heading for the Ponte alla Carraia, one of the most famous bridges in Florence. ", "Behind, the lights of police cars behind were filling the street in an ocean of blue. ", "The beat of helicopters was clearly audible over the wind and engine roar.", "\n\nBen chased the van onto the five-arched stone bridge. ", "Either side of them, the waters of the Arno were a broad stretch of black between the city lights. ", "He gunned the throttle and the rear of the van seemed to accelerate towards him. ", "With a crunch of buckling metal the Alpina rammed it, the impact jarring Ben against the steering wheel. ", "The van wobbled. ", "The Alpina fell back, came on again, rammed the van a second time.", "\n\nHalfway across the bridge, the van's crumpled rear doors suddenly burst open. ", "And that was when Ben realised that the big guy wasn't alone inside it. ", "Another man in body armour and a black ski mask crouched on the floor of the van, facing the open doors. ", "In his gloved hands he was clutching a long, bulky shape that Ben didn't need headlights to recognise.", "\n\nThe rocket launcher filled the back of the truck with a blinding flash as it fired. ", "At point-blank range the missile would tear a car in half and incinerate anything inside in a fireball hot enough to melt steel. ", "And nobody could miss at this distance, not even from inside the back of a wildly swerving and rocking van.", "\n\nBen wrenched the BMW's steering wheel violently to the right. ", "Felt himself thrown to the left as the car went into a skid. ", "There was a bright orange-white explosion behind him. ", "The missile had hit one of the chasing police cars, ripping it to pieces. ", "Ben scarcely had time to register it as the Alpina, skidding out of control, crashed violently into the low side wall of the bridge. ", "The impact flung him almost over the wheel. ", "The car's nose dropped. ", "The blackness of the river rushed up to meet him.", "\n\nThen it hit.", "\n\nThe torrent of foaming water burst through the cracked windscreen and swallowed Ben up with an icy shock that felt as if it could stop his heart. ", "He groped around inside the sinking car, bubbles erupting from his mouth. ", "The Alpina was going down fast as the river flooded in through its broken windows. ", "He could hardly see. ", "One groping hand found the strap of his bag. ", "The other found the door handle, but the door wouldn't open, so he turned himself round and kicked it hard with both feet to burst it open against the pressure of the water. ", "The car was turning end over end as it sank. ", "Ben grasped his bag and launched himself from the open door. ", "His lungs were bursting. ", "He would not drown. ", "He would get out of this.", "\n\nHe kicked and struggled through the black water, only half-sure of which way was up. ", "His head broke the surface and he gave a wheezing gasp. ", "Sirens and thudding helicopters filled his ears. ", "Treading water, he looked up. ", "The bridge seemed a long way above him, and he could see nothing past the angle of its side wall. ", "Just the fierce glow from the burning police vehicle and the flicker of blue lights lighting up the night sky above. ", "The blazing wreckage must have blocked the whole bridge.", "\n\nA chopper was circling over the river where they'd seen the BMW go down. ", "Its searchlight was combing the water. ", "Ben gulped air and dived back below the surface, swimming hard until his lungs couldn't take it any more and he resurfaced. ", "He looked back at the hovering choppers. ", "They hadn't spotted him, or they'd be turning the spotlamps his way.", "\n\nBen swam on until he reached the far bank, which was sloping and thick with reeds. ", "The cold water seemed to have drained every last reserve of strength from his body, but somehow he managed to drag himself ashore, coughing and spluttering, breath rasping, his clothes streaming and his whole body shuddering with the crippling chill. ", "He had to find shelter, dry himself off, seek warmth, or he could go into hypothermic shock.", "\n\nHe made it up the bank and hauled himself over a wall that separated the riverside from the street. ", "Then he ran, or staggered, towards the quayside buildings that could hide him from the hovering choppers. ", "Pausing against a wall, he looked around him. ", "He could see another bridge further downriver, running parallel with the Ponte alla Carraia and dotted white and red with the lights of slow-moving traffic. ", "Before the bridge, on his side of the river, a car park was set off the street behind a low wall. ", "He broke into a run towards it and saw the camper van sitting in the shadows. ", "He made his way towards it.", "\n\nBen had broken into a good number of considerably more secure vehicles in his time, and it didn't take much to force the lock. ", "Nor did it take much to get the engine started without a key. ", "Shaking so badly that he could hardly control the steering, he pulled out of the car-park entrance and drove for ten minutes until he was well away from the drama; then he found a quiet spot off the street and pulled up.", "\n\nThe camper had a small stove running off a butane bottle. ", "Almost praying out loud that it would work, he turned on the gas and pressed the piezo-ignition lighter switch, and his prayer was answered by the whoosh of blue flame. ", "He quickly pulled down all the blinds so that he couldn't be seen from outside, then returned to the stove and stripped off his wet clothes. ", "The spare clothing in his bag wasn't any less soaked. ", "Naked and shivering, he huddled as close to the heat as he could without burning himself and rubbed his hands, arms and thighs to get the circulation going again. ", "They said that alcohol only made the body lose heat even more, but what did they know? ", "A few swigs of whisky from his flask made him glow inside, even if it was an illusion.", "\n\nWhen he felt warm enough to drag himself away from the stove he wrung out his clothes over the sink, then hung them up to dry over a cupboard door. ", "Inside his bag he found his passport and the rolls of cash still perfectly dry within their plastic wrapping. ", "He wasn't so sure about his phone, which he'd have to take apart to let the water trapped inside evaporate before using it again.", "\n\nHis gun was lost, now somewhere at the bottom of the Arno along with his car, but he'd have had to abandon both anyway, where he was headed next: to the airport, and from there to Olympia, Greece.", "\n\n## Chapter 20\n\nBy morning the news channels and the city of Florence were ablaze with last night's dramatic events, which the media had managed to circumbobulate into yet another terrorist atrocity with the Italian police emerging as the heroes of the hour. ", "City authorities wept over the damage to the Ponte alla Carraia while tributes were paid to the fallen officers and hundreds more of their incensed and heavily armed comrades scoured Florence for the presumed Muslim extremists responsible, still at large, with photos of bearded, olive-skinned, villainous-looking likely suspects plastered online.", "\n\nCops were swarming all over the airport as Ben sat waiting to embark on the next leg of his journey, which was giving him headaches on top of a sleepless night in his stolen camper van. ", "If the epicentre of ancient Greek culture was one of Europe's most frequented visitor destinations in the peak of the high season, during wintertime it seemed by contrast almost as though they were actively trying to keep people out. ", "Kalamata Airport near Olympia was essentially closed up during the colder months, forcing Ben to opt for a flight to the more distant Athens with the plan to double back on himself by road, a drive of over 300 kilometres.", "\n\nHe twiddled his thumbs for hours, wolfed down some breakfast, gulped a pint of espresso, smoked and paced outside in the cold, checked his email, called Tuesday, called Sandrine Lacombe, learned nothing new.", "\n\nThe delays meant that he didn't land in Athens until midday, there to face the complications of getting hold of a car. ", "He'd wrecked so many hire vehicles and been blacklisted by so many rental companies in his time that it was becoming a problem. ", "The agent at Auto Europe proved so intransigent that Ben eventually walked out of his office in disgust, grabbed a taxi into the city and found a backstreet car dealer who sold him a ten-year-old Opel for under a thousand euros, no papers, no questions asked.", "\n\nFinally, still seething at the loss of precious time, he was on his way. ", "He took the motorway route via Patras that hugged the coastline, to avoid meeting snow and ice on the more direct roads further inland that cut through the forests and mountains of the Peloponnese mainland. ", "The Opel was basic and rusty and battered, and the scrapheap was in its near future, but it didn't seem at imminent risk of blowing its engine, and after a few kilometres he felt relaxed about caning it mercilessly.", "\n\nThat freed his mind to agonise instead over how he was going to find Anna, if indeed she would still be in Olympia when he got there, or if the bad guys hadn't reached her first. ", "While waiting for his flight to Athens Ben had searched online for Theo Kambasis, the man Anna had gone there to meet, but found nothing. ", "How much information had Gianni's torturer pressed out of his victim? ", "Ben couldn't afford to assume the enemy's intel wasn't a step ahead of his own, any more than he could afford to assume that the two thugs who'd tried to kill him last night hadn't escaped Florence sooner than he had. ", "Even if the police had caught them, it was safe to bet that whoever was behind this could easily deploy more manpower wherever needed.", "\n\n_Whoever was behind this_. ", "The big question. ", "Of all that was bad about the situation, what Ben liked least of all was still not knowing who the enemy actually was. ", "Was Massimiliano Usberti dead, or alive? ", "It was like chasing a ghost.", "\n\nWith no answers, all he could do was press on as fast as he could, pushing the Opel to its limits through landscapes that were stunning even in winter, but which he barely noticed as he focused completely on his objective. ", "Four hours after leaving Athens, he was rolling into the sacred valley of the gods where, according to mythology, Zeus had inaugurated the very first Olympic Games in celebration of having defeated his Titan father, Kronos, in a wrestling match.", "\n\nBen didn't know it yet, but the ancient site was about to become the scene of a new, deadlier conflict.", "\n\nThe modern town of Olympia was small, making the job of finding one person out of only a thousand or so inhabitants somewhat easier. ", "Its single main street was dotted with souvenir shops, bars and cafés, most of which seemed mainly to exist for the coachloads of tourists who descended upon the place en masse in summer, and were now either running on a single cylinder or closed up altogether. ", "According to Ben's web search there were at least thirty-seven hotels and guesthouses in the immediate vicinity. ", "He'd already narrowed the list to sixteen, eliminating the places that shut in winter and focusing, at least initially, on the more upmarket ones where an affluent woman of taste like Anna Manzini would be more likely to be found.", "\n\nBut sixteen hotels was still sixteen hotels, and he was going to have to do it the hard way, hoofing it to each in turn in the hope that he might get lucky. ", "Moreover, and more troublingly, he was well aware of Anna's liking for expensive private rentals. ", "There must be hundreds of villas available for rent locally in the dead season, and she could be in any of them.", "\n\nThe day was growing darker by the time he'd drawn a blank at the first four hotels he tried. ", "Feeling suddenly weak with hunger, Ben grabbed a sandwich of spicy lamb in pita bread and a foaming Greek coffee in the bar of the fifth and sat down in a corner to eat it. ", "The bar was almost empty, apart from a few locals and a pair of oversized Cockney tourists weighing down a table in the middle of the room, whose blaring conversation it was impossible to avoid listening in on. '", "I _told_ you it would be freezing here in bloody December, Alf,' the woman was scolding her husband in a voice to wake the dead. '", "Nothing's bleeding open, is it? ", "Some bloody holiday idea this was. ", "Should have gone back to Lanzarote like I kept telling you.'", "\n\n'Been there, done that,' Alf said glumly.", "\n\n'Well we're not coming to this dump again. ", "I'm bored to death, my feet are killing me after traipsing about that bleeding museum, and all _you_ can bang on about is some bloody actress you _think_ you saw.'", "\n\n'I'm sure it was her,' Alf protested. '", "I'd know her anywhere.'", "\n\n'Bet you would, and all,' his wife sneered at him. '", "You spend enough time drooling over her pictures. ", "If you think a dolly bird like that would even look twice at a bald old git like you, you need to take a butcher's in the mirror.' ", "She gave a derisory snort.", "\n\n'Should have got her autograph,' Alf said with a wistful shake of his head. '", "Wonder what she was doing there. ", "Maybe she lives here. ", "Just think, Deb. ", "Valentina Del Cuore, in the flesh.'", "\n\n'Flesh, flesh, that's all you bloody think about, innit? ", "Honest to God, I don't know what's the matter with you.'", "\n\nThey both looked up, startled by the tousled-looking stranger who had suddenly appeared at their table.", "\n\n'Did you say Valentina Del Cuore?' ", "Ben asked.", "\n\n## Chapter 21\n\nAlf's description of the dark-haired beauty fleetingly glimpsed that afternoon left Ben, posing as a reporter hunting for a snap of the movie star, in little doubt that the woman he'd spotted was in fact Anna Manzini.", "\n\nThe holidaymakers had been labouring their way through an unentertaining tour of the Archaeological Museum of Olympia when they'd seen her enter, briefly speak to one of the staff and then disappear through a door marked 'private'. ", "Her famously lavish black locks were half-hidden under a hat and she was draped in a long winter coat with a big fur collar, but Alf swore it was her. ", "Maybe she was scouting locations for a movie, he suggested, still dazzled by the sighting and virtually offering to carry Ben's camera equipment for him as he went off in search of her.", "\n\nIf the lead was a solid one, it meant Anna had turned up at the museum just an hour or so ago. ", "With luck, Ben would still be able to find her there. ", "Abandoning his half-eaten meal he rushed out to the car and checked Alf's vague directions against the map on the museum's website, which proclaimed: ' _The permanent collection contains finds dating from prehistoric times to the Early Christian period. ", "Among the many precious exhibits, the museum's famous sculpture collection, the bronze collection which is the richest of its kind in the world, and the large terracotta collection, are especially noteworthy.'_", "\n\nThe Archaeological Museum was situated just out of town, in a wintry valley north-west of the Kronion Hill. ", "Ben left the Opel in a parking area and walked up to the museum via a columned walkway that led to a paved courtyard surrounded by trees. ", "The main building was filled with the reverent hush of a cathedral. ", "Ben found himself surrounded by gleaming statues of bronze and marble and stone and a dizzying array of artefacts from the dawn of antiquity. ", "He could see why the place might have little to offer Alf and Deb in the way of entertainment value, lacking the interactive digital displays, virtual tours or emotion-driven social experiences required to shore up the limited attention span of the smartphone-toting modern breed of tourist. ", "For an old-school appreciator of history and aesthetic beauty in the raw, though, it was a candy shop of eye-popping wonders.", "\n\nBut that still didn't explain why Anna Manzini should have travelled all this way from the culture-rich environment of Florence when she could have done all the research she needed in the comfort of her luxury villa, including talking to this Kambasis guy. ", "The telephone was a wonderful invention. ", "Whatever she'd come here for, she'd clearly had a very specific intention that could only be addressed by a visit in person.", "\n\nThere was no sign of Anna in any of the exhibit rooms. ", "Ben quickly found the door marked 'private' and was considering going through it when he spotted a female staff member in an apron, dusting the glass front of a display cabinet containing a collection of ancient bronze helmets. ", "Putting on a nervous expression and glancing at his watch, he went over to where she was working. ", "He spoke English, on the assumption that every single employee of the entire Greek tourist industry probably spoke it better than most Brits.", "\n\n'Excuse me, but I'm looking for my wife. ", "I was supposed to meet her here about an hour ago but I got held up. ", "Black hair, wearing a hat and a long coat with a fur collar – you wouldn't have seen her, by any chance?'", "\n\nHis linguistic assumption was correct. ", "The woman shook her head and said no, she'd only come in for a couple of hours to do some cleaning and hadn't been here long. ", "Nobody answering that description had arrived in the last forty minutes or so, as far as she knew.", "\n\n'She had an appointment with someone named Kambasis, Theo Kambasis?'", "\n\nAt which, the woman's face brightened with recognition. '", "Oh, yes, Mr Kambasis is an assistant curator here. ", "But I'm afraid you've missed him, too. ", "He told me yesterday that an Italian history professor was coming to see him today, to discuss something about Phidias' workshop.'", "\n\n'That's her.'", "\n\n'I assumed it was a man.'", "\n\n'She gets that a lot.'", "\n\nThe woman glanced at her plastic watch. '", "If you're quick you might find them still over at the workshop.' ", "She added with a smile, 'Mr Kambasis can't tear himself away from that place, once you get him talking.'", "\n\nBen visualised some kind of restoration workshop attached to the museum, with rows of benches and priceless relics sitting here and there in the process of being reconstructed. '", "Which way do I go?' ", "he asked.", "\n\n'Oh, it's not part of the museum,' she explained. '", "It's part of the ruins of the ancient site of Olympia. ", "It's not far. ", "You'll find it over on the west side of the sacred enclosure, directly opposite the Temple of Zeus. ", "Here, let me give you one of the museum's leaflets. ", "There's a little map on the back that shows you the layout of all the buildings.'", "\n\nBen thanked her for her help, and left. ", "The ancient site was within easy walking distance and cars weren't allowed access, so he left the Opel outside the museum and set off at a trot, map in hand, hoping he wasn't going to miss Anna again. ", "Dusk was creeping in. ", "His breath misted in the cold air as he hurried on his way.", "\n\nWhat had once been one of the most spectacular visions of ancient Greece was now an extended field of ruins, spread out among groves of trees with the rolling background panorama of hills and mountains still visible against the darkening sky. ", "Using the map to orient him he made his way through the maze of tumbledown arches and buildings; there was little remaining of Olympia's former glory except partial walls and the occasional segment of stone column standing here and there.", "\n\nThe workshop of Phidias was his target. ", "Whoever this Phidias was or had been, Ben had little idea and even less interest. ", "The woman at the museum had said that it was near the Temple of Zeus, and the map seemed to concur, but he couldn't see anything resembling a temple – only a rectangular patch of what was basically a rubble field. ", "He was reminded of some of the devastated ancient temples he'd seen in the Middle East during his military days, victims of tank battles and bombing raids, millennia of history wiped out at a stroke. ", "Here, the slow ravages of three thousand years of natural decay and earthquakes had taken a more gradual toll.", "\n\nHe wondered whether those smoking battlefields, still echoing in his mind with the crackling of blazing vehicles and the screams of the dying, could ever become as serene and tranquil as the spot he was standing on now. ", "There was something almost meditative about the ruins of Olympia, a stillness he hadn't experienced since the brief months he'd lived the life of a lay brother in a monastery in the French Alps, so secluded from the hectic buzz of the modern world that it was easy, and very tempting, to forget it even existed.", "\n\nBut there was no time for contemplation as he walked on, looking and listening for any sign of anyone around. ", "Just as he was becoming certain the place was completely deserted and he'd got here too late, he heard voices in the distance and picked up his step. ", "It looked as if he'd found the workshop of Phidias. ", "As he drew closer, he could see that it was one of the only areas where the ruins were still fairly intact: a once-grandiose building with walls and columns miraculously unharmed by the wrecking ball of the ages.", "\n\nThen he saw them: two figures slowly picking their way through the dusky shadows of the ruined building, some sixty yards from him. ", "One was a man, stooped and walking with the gait of an elderly person. ", "The other was a woman he instantly recognised. ", "Slim and statuesque, in a long elegantly tailored winter coat that couldn't be anything other than Italian, her black hair spilling out from under a fur hat. ", "Beautiful even from the back. ", "He knew right away that it wasn't Valentina Del Cuore.", "\n\nAnna Manzini. ", "He'd found her, alive and safe.", "\n\nThe man she was with, whom Ben presumed must be Kambasis, was pointing this way and that as the pair meandered along what had once been a corridor or passageway, now just the low remains of one wall. ", "Anna was listening to him, pausing every few steps to raise an SLR camera that dangled from her neck and snap a photo while enough light still remained. ", "They were too engrossed in their conversation to have spotted Ben coming their way.", "\n\nHe was about to call Anna's name when he realised the three of them weren't going to be alone for long.", "\n\nThe lights of an approaching vehicle were cutting through the dusk, bouncing up and down as the suspension rocked over the bumpy ground. ", "A white panel van had emerged from behind a stand of trees at the edge of the ancient site, where he guessed there must be a limited access road leading in for authorised users. ", "At first he thought that it might be a maintenance crew come to carry out some kind of repair work on the place. ", "But what kind of maintenance crew would start work at dusk? ", "Something was wrong.", "\n\nThe van's headlights darkened, then its engine cut out. ", "It didn't stop. ", "It coasted on between the ruins, steering a lurching, bumping course over the uneven ground towards where Anna and Kambasis were strolling along in conversation. ", "They didn't seem to have noticed it.", "\n\nSomething was definitely wrong.", "\n\nThe van braked silently to a halt. ", "Its doors opened, soft and quiet. ", "The dark figures of three men got out. ", "Ben was much further away from them than they were from Anna and Kambasis, but even from this distance the way they moved had alarm bells shrilling in his mind. ", "They walked from the van three abreast, confident yet stealthy, heading right towards Anna and Kambasis who were still too taken up by their intense conversation to have seen they weren't alone.", "\n\nBen kept going, moving faster, watching the three men. ", "The dark jackets they were wearing let them blend into the shadows. ", "The two either side were large men, over six foot. ", "The one in the middle dwarfed them both.", "\n\nThe big guy. ", "Gianni Garrone's attacker. ", "The driver of the black van in Florence.", "\n\nAs Ben watched they broke their line and split up, the outer two peeling off at an angle, so that they converged on their target in a pincer movement like a pair of stalking predators creeping up on their prey. ", "The two flankers were each drawing out stubby black objects that, even at this distance in the growing darkness, were unmistakably handguns. ", "The big guy in the middle unslung a heftier weapon from under his jacket.", "\n\nBen let his bag fall from his shoulder and broke into a sprint. ", "It went against all his training and experience to give away his own presence and position to the three stalkers, but he had to warn Anna and her companion before something terrible happened right here in front of him. ", "He let out a yell.", "\n\n'Anna! ", "Look out!'", "\n\nHe saw her tense, then whip around in surprise and confusion to see who was calling her name.", "\n\nBut Ben's warning was too late. ", "Suddenly, through the stillness of the falling dark, came the first snap of gunshots.", "\n\n## Chapter 22\n\nIf this had been the summer season, hordes of tourists would have been fleeing amid scenes of mayhem. ", "Now in the dead of winter with nobody around to raise the alarm, the ruins of Olympia were the gunmen's own private shooting range and they could expend all the ordnance they wanted.", "\n\nThe gunfire punched ragged holes in the silence of Olympia. ", "Anna Manzini and Theo Kambasis froze like two rabbits paralysed in the headlights of an oncoming car. ", "To the sound of another shot, Kambasis staggered and clutched at Anna's arm. ", "Still some forty yards away and running fast, Ben couldn't tell if the old curator was trying to protect her, or was clinging to her for support. ", "Anna let out a cry. ", "The two of them fell back over the low wall by which they'd been strolling, and disappeared from view.", "\n\nBen ran harder, his heart thumping with anxiety, partly because it was impossible to know whether Anna had ducked out of sight, or been shot, and partly because rushing unarmed, empty-handed and in plain view towards a trio of heavily armed attackers wasn't tactically the soundest option in anyone's book.", "\n\nA beat later, he knew that his warning yell had had exactly the effect he feared. ", "Pausing in their stride towards the wall behind which Anna and Kambasis had disappeared, the gunmen turned and gazed in Ben's direction, then raised their weapons and opened fire on him.", "\n\nBen had reached a crumbly archway that stood supported on a pair of columns. ", "Whatever temple or shrine the arch had once been a doorway to, the rest of the building lay collapsed and strewn all over the ground, and it was behind those ruins that he dived under cover, pressing himself flat as scores of bullets cracked into the ancient stonework, stinging him with flying chips of masonry.", "\n\nThe big man motioned to his companions, as if to say, 'I'll take care of this guy, you deal with those two.' ", "The others turned back towards the low wall where Anna and Kambasis had dropped out of sight, while the big man started ambling casually towards Ben. ", "If he seemed almost nonchalant, that was because he knew that if Ben had come ready for a gunfight, he'd have already returned fire.", "\n\nOn his hands and knees in the dirt, Ben looked desperately around him for some kind of improvised weapon. ", "Even a handy chunk of stone would be better than nothing, but the only rocks he could see were broken segments of ribbed cylindrical columns and large square blocks that must have weighed two hundred pounds apiece.", "\n\nThe big man came closer, holding his weapon at waist level. ", "It was the same kind of SIG Sauer MPX machine pistol they'd used to try to kill Ben in Florence. ", "Possibly the very same weapon. ", "It was fitted with a red-dot optical sight and long curved magazine, with a spare protruding from his hip pocket. ", "He had the fire selector set to three-shot bursts, which hammered the stonework in percussive snorts as he walked closer.", "\n\nBen could almost hear him laughing.", "\n\nTactical advantages were few and far between in this situation, but Ben had one thing going for him: if he kept low enough the big guy couldn't actually see him. ", "Pinned under fire, he inched forwards like a crawling snake, until he'd managed to work his way out of the hot zone and could peer around the edge of a big stone block and see the big guy just feet away, blasting at the spot where he thought Ben was sheltering. ", "He was grinning ear to ear, clearly a man who enjoyed his work. ", "In the background, Ben saw the other two stepping closer to the low wall over which Anna and Kambasis had disappeared. ", "They raised their pistols and let off two shots each, BLAMBLAM – BLAMBLAM, firing over the top of the wall at an angle towards the ground. ", "It was exactly the angle they'd have been shooting at if they were executing two injured victims lying at the foot of the wall on the other side.", "\n\nBen went cold. ", "Anna had just been murdered right in front of him and there'd been nothing he could do to save her. ", "He'd been too late. ", "It had been all for nothing.", "\n\nThe big man had reached the solitary stone arch and was peering over the piles of ruins strewn around it, the contented smirk on his face turned to a perplexed frown as he realised that his helpless target wasn't where he'd thought he was. ", "He stood bulkily framed beneath the archway, searching left, searching right. ", "His eyes darting in all directions except for the one he should have been looking in, which was directly above him.", "\n\nBen had clambered up the rocks unseen and was perched on top of the archway right over the big guy's head. ", "The two other gunmen had only to turn round to spot him and open fire, but they seemed too busy admiring their handiwork over by the wall. ", "Ben waited for the perfect moment, holding his breath, every muscle coiling like a spring. ", "Then he pounced, like a leopard dropping from the foliage of a tree to surprise a gazelle grazing below.", "\n\nExcept this gazelle was more like a Cape buffalo. ", "From a little distance away, the guy was huge. ", "Close up, he was enormous. ", "Ben's 165 pounds landed squarely across his broad shoulders with an arm hooked around his throat, and he hardly seemed to sag under the sudden impact. ", "Ben locked the stranglehold tighter and rained blows on his face and head. ", "A massive elbow lashed backwards and caught Ben in the ribs, ripping his grasp loose and sending him sprawling to the ground.", "\n\nTowering over him with a look of rage, the big guy pointed the machine pistol in Ben's face. ", "Before he could shoot, Ben lashed out with a prone kick and swept the man's legs out from under him. ", "This time he did go down, and hard, all that bulk raising his centre of gravity to bring him slamming to earth like a sack of concrete.", "\n\nThen Ben was up on his feet, stamping on the guy's throat and face as he tried to protect himself with his arms. ", "Ben might as well have tried stamping on a tree trunk. ", "Moving back, he snatched up the fallen gun, pointed it, squeezed the trigger – and nothing happened. ", "In the failing light he'd missed what the big guy had missed moments earlier. ", "The gun was empty, the bolt was locked to the rear, the breech open, good for hammering nails and not much else.", "\n\nIn the split second it took Ben to realise it, the big guy had scrambled back to his feet. ", "A normal man would have been crippled by Ben's surprise assault, but if he was hurt he didn't show it. ", "Now the two of them were circling one another beneath the archway. ", "Ben was no dwarf at a shade under six foot, but he had to look up to make eye contact. ", "The monster was at least a foot taller, and two feet wider. ", "With a grin, he bent down and picked up a stone block that probably weighed more than Ben, as though it were made of polystyrene. ", "He raised it to his shoulder and heaved it at Ben like a shot putter.", "\n\nBen ducked out of the way of the skull-crushing missile, tripping backwards as the block flew past him and struck the middle of one of the archway columns with a massive thud that left a crater and seemed to rock the whole arch on its shaky foundations. ", "A shower of dust and loose chippings sprinkled from overhead. ", "Ben hurled the empty machine pistol at his opponent. ", "A hefty chunk of steel and aluminium hardware that bounced off his bunched pectorals as though Ben had pinged a pebble at his chest.", "\n\nThe big man bent down to pick up another rock. ", "This time, he wouldn't miss. ", "He raised it high above his head, preparing to hurl it down and crush his enemy like a worm.", "\n\nBut he never got the chance as a ton of crumbling ancient blockwork came crashing down on him and flattened him to the ground. ", "The impact of the hurled rock had finally proved too much for the supporting archway column. ", "After withstanding all the ravages that two and a half millennia could inflict on it, now it gave way and buckled in the middle like a broken knee. ", "The arch collapsed with a roar, burying the man's head and torso under a pile of stone so that only his lower half protruded. ", "His legs gave a couple of twitches, then stopped moving.", "\n\nCovered in dust, Ben picked himself up and retrieved the empty machine pistol, then the spare magazine protruding from the hip pocket of his half-buried enemy. ", "He quickly searched the rest of the guy's pockets for things like ID, but found nothing. ", "Then he reloaded the gun, scrambled over the pile of stone that had been the archway and peered through the falling dusk.", "\n\nAnd what he saw next made his heart skip a beat.", "\n\n## Chapter 23\n\nThe big man's companions had got what they'd come for, but Ben realised now that he'd been wrong about their intentions. ", "Their mission wasn't to kill Anna Manzini, and she wasn't dead. ", "The shots he'd heard had been for Kambasis, who most certainly was.", "\n\nThey had Anna and were dragging her in the direction of the van. ", "It was just like Anna Manzini to go walking in winter wearing high-heeled shoes, and she was kicking out with them at her attackers for all she was worth. ", "The victim was proving to be quite a handful, keeping both of them much too busy for them to think about where their large companion had gone. ", "Too busy, also, for either of them to notice Ben walking towards them with their companion's machine pistol in his hand.", "\n\nThirty yards away, Ben steadied the weapon over a ruined wall and took aim, but the light was fading fast and he couldn't risk a shot at this range for fear of hitting her by mistake. ", "Then, as he watched, Anna used another weapon on the one who was clutching her arm: her teeth. ", "He let out a howl as she bit his hand, let go of her and staggered back a step.", "\n\nOne step was enough to make him a safe target. ", "Ben centred the glowing red dot of the optical sight on the guy's chest, magnified twice in the reticule. ", "Fired. ", "Saw the dark shape crumple and fall.", "\n\nTwo down. ", "One remaining. ", "Not for long, either.", "\n\nThe third guy saw his comrade go down, and he did what all frightened amateurs do when holding a loaded weapon and coming under fire from unknown, unseen assailants. ", "He grabbed Anna and pinned her against his chest like a human shield, then started blasting off shots in all directions, as though a whole regiment was hiding among the ruins. ", "Next he must have spotted a movement in the semi-darkness as Ben advanced closer, because he aimed the pistol over Anna's shoulder and loosed off two more shots in Ben's direction. ", "He wasn't much of a marksman even when he knew what to shoot at.", "\n\nBut now Ben had a problem, because he couldn't shoot back. ", "If he was going to save her, he had to get in closer. ", "And the closer he got, the easier a target he would become.", "\n\nHe hurdled a low wall, then another, and raced for the nearest cover between them and him: the workshop of Phidias. ", "The pistol cracked three, four, five times and bullets spat off the stonework as Ben darted into the semi-intact building. ", "Keeping his head low he stole a glance through a ragged hole in the wall that had once been a magnificent arched window, just in time to see Anna's kidnapper holster his pistol and unclip something else from his belt.", "\n\nIt wasn't a gun.", "\n\nThe small object sailed through the window, bounced and rolled to a halt near Ben's feet. ", "The quarter of a second he stared at the khaki-painted metal canister before he reacted was all the time he needed to know what it was, or more importantly what it contained. ", "Forty-three grams of TNT and dinitronaphthalene wrapped in a wire shell and aluminium casing that would burst outwards into lethal shrapnel, blowing a crater in the ground and destroying everything within a ten-metre radius, including himself if he didn't move very, very fast.", "\n\nSo he did.", "\n\nThe percussive blast ripped through the air behind him as he dived for a gap in the wall at the rear of the workshop. ", "The explosion lit up the shadows with a bright flash, searing the back of his neck with its heat. ", "The outer wall where the window had been blew outwards, stone blocks crashing down. ", "Ben hit the ground with a painful scrape and instantly rolled back up to his feet, still clutching the gun. ", "Running through the acrid smoke that engulfed the remains of the building he skirted the shattered wall and emerged from the other side. ", "Anna's captor had redrawn his pistol and was pressing it to her head as he hustled her away. ", "By now he must have realised he was on his own, and he was desperate. ", "In one tiny twitch of his trigger finger, he'd blow her brains out even if he didn't intend to.", "\n\nBut not if Ben could get him first.", "\n\nBen stepped out of the smoke and said, 'Hey.'", "\n\nThe guy stopped and turned, whirling Anna around with him with the pistol pressed to her temple. ", "The light was fading fast but Ben could see the expression of surprise on his enemy's face. ", "As well as the look of utter amazement in Anna Manzini's dark eyes. ", "Of all the people she might have expected to appear at this moment, Ben Hope must have been the last.", "\n\n'Is that the best you've got?' ", "Ben said to the guy, jerking a thumb back at the demolished workshop behind him. '", "Your boss should have told you, I'm not that easy to get rid of.'", "\n\n'I'll kill her,' the guy said in Italian.", "\n\n'Then why haven't you already?' ", "Ben said. '", "Like you did the others?'", "\n\nThe guy said nothing. ", "He was doing everything he could to shield himself behind his hostage, but she was five-nine in high heels and he was six-one in combat boots, which was making it hard for him to hide. ", "At this range, his head was as big as a pumpkin through Ben's sights and the optical red dot was trained right on the middle of his brow.", "\n\n'Put the gun down,' Ben told him. '", "This isn't going to end well if you don't.'", "\n\nConfusion flickered in the man's eyes. ", "He ground the muzzle of the pistol against the side of Anna's head, and her face contorted in pain and fear. '", "Ben—' she gasped, but the guy clamped his other hand over her mouth and stifled her words.", "\n\nBen took a step closer, the weapon unwavering in his grip, the red dot of his sight hovering over his target like a bright crimson drop of blood. ", "He said, 'Let's deal. ", "You do three things for me, in the exact order I tell you, and I'll do something for you. ", "One, lose the weapon. ", "Two, let her go. ", "Three, tell me who sent you. ", "If you do those things, I'll let you walk. ", "Your choice.'", "\n\nThe guy shook his head. ", "Sweat was pouring off his face, even in the chill of the falling winter night. '", "If I drop the gun, you'll kill me.'", "\n\n'Think about it,' Ben said. '", "You don't have a lot of choices here. ", "You know as well as I do that if you shoot her, your boss won't be too pleased with you. ", "He must already be pretty pissed off that his paid killers shot the wrong guy when they tried for me, as I'm sure he knows by now. ", "And if he's who I think he is, and if he's half as ruthless as he used to be, he just might decide to gralloch you like a deer if you screw this up as well.'", "\n\n'He'll kill me if I go back empty-handed,' the guy said.", "\n\n'You may be right,' Ben said. '", "But that's your problem, not mine. ", "If you want to take my deal, it's a limited time offer. ", "You have three seconds.'", "\n\nThe guy hesitated for two of them. ", "Before the third ticked by, he tossed the gun and let Anna go. ", "She ran to Ben, still staring at him in disbelief.", "\n\nHer would-be kidnapper now stood alone and helpless.", "\n\n'Good move,' Ben said to him. '", "You just bought yourself some time. ", "You're two-thirds of the way to me letting you walk. ", "Now let's keep it going. ", "Why don't you confirm what I already know, and tell me who sent you?'", "\n\n'The old man,' the guy said, with a look of terror.", "\n\n'I'm allergic to vague answers,' Ben said. '", "When I hear them, I get this uncontrollable twitch in my right index finger. ", "Let's try that one again, shall we?'", "\n\nThe guy gulped and glanced around him, as if dreading that his boss might hear him give his name away.", "\n\n'Usberti,' he muttered in a low voice, almost boggle-eyed with fear. ", "Usberti had always had that effect on people.", "\n\n'Massimiliano Usberti? ", "Just to be clear on this. ", "We're talking about the archbishop.'", "\n\nThe guy nodded. ", "Anna's eyes had filled with horror at the mention of the name. ", "She was too stunned to speak.", "\n\n'Funny thing is,' Ben said, 'I'd heard he got carved up in a bizarre boating accident. ", "Imagine, the media getting something like that wrong. ", "Have you actually seen him? ", "In person? ", "Spoken to him?'", "\n\nThe guy nodded again, more emphatically.", "\n\n'Before or since he died?'", "\n\n'He didn't die. ", "That was all a setup.'", "\n\nSo now there was no more doubt over who was behind all this. ", "Ben demanded, 'Why were you ordered to kidnap this woman? ", "What does Usberti want with her?'", "\n\n'I only do what I'm told. ", "I promise you, I know nothing.'", "\n\n'How about your name? ", "Do you know that?'", "\n\n'Federico Casini.'", "\n\n'What about your friend there?' ", "Ben asked, waving the gun towards the body of the man he'd shot. '", "And the big fellow who's underneath all those rocks?'", "\n\nFederico Casini gulped. '", "Renato Zenatello. ", "The big guy's name is Ennio Scorceletti.'", "\n\n'All right, Federico. ", "You're just a foot soldier, so I believe you when you say you don't know much. ", "You fulfilled your side of the bargain and I'm letting you walk. ", "Here's what's going to happen next. ", "You're going to go back to your boss and take your chances that he doesn't skin you alive and have you turned inside out. ", "And you're going to deliver a message for me.'", "\n\n'Message?'", "\n\n'That's exactly right. ", "You're going to tell Usberti that Ben Hope is coming for him. ", "Tell him there isn't a crack or a hole on this planet where he can hide and I won't find him. ", "And that when I do, I'm going to feed him feet first through a mincer. ", "Slowly, with a glass of chilled champagne in my hand and a string quartet playing a Strauss waltz in the background. ", "Think you can remember that, Federico?'", "\n\nCasini nodded.", "\n\n'Then get moving.'", "\n\nCasini couldn't suppress the grin that spread all over his face. ", "He turned and started walking away through the ruins. ", "Five yards. ", "Ten. ", "Faster and faster, jittery in his step and on the point of bolting.", "\n\nAnna was clutching at Ben's arm, blinking with shock and confusion. ", "Ben said quietly to her, 'You okay?' ", "and she gave an uncertain nod.", "\n\nBen watched Casini hurry away. ", "Observing his body language, and reading his thoughts. ", "This guy knew perfectly well what awaited him if he delivered a message like that to Massimiliano Usberti. ", "Casini was going to run a thousand miles in the opposite direction, go to ground on the far side of the world and never show his face to his employers again. ", "Then new employers would pay him to do more dirty work. ", "And more innocent people would die. ", "Scumbags like Casini just couldn't help but be what they were.", "\n\nBen said quietly to Anna, 'Close your eyes.'", "\n\n'Close my eyes?'", "\n\n'I don't want you to see this.'", "\n\nCasini had managed to get some twenty or so paces away when Ben called out, 'Hey, Federico.'", "\n\nCasini froze and slowly turned back to stare at him.", "\n\nBen said, 'I changed my mind. ", "I'll tell him myself.'", "\n\nCasini's mouth dropped open. ", "The MPX spoke once. ", "Its single report was flat in the cold, damp air. ", "Casini flinched, then dropped to his knees. ", "He put his hands to the bullet wound in his midriff, gaped at the blood leaking through his fingers.", "\n\n'You... you said... you'd let me walk,' he croaked.", "\n\n'And I did let you walk,' Ben said. '", "Twenty whole paces. ", "Which I'm betting is more of a sporting chance than you and your cronies gave to my friends Pascal Cambriel and Luc Simon. ", "Not to mention my friend Jeff, who sadly can't be here today. ", "Because I know how much he'd have loved to put this second bullet in you. ", "I'm just going to have to do it for him, and tell him all about it when I get home so we can have a good laugh.' ", "Ben glanced at Anna. '", "Anna, you didn't close your eyes.'", "\n\nShe shook her head vehemently, with a defiant set to her jaw. '", "I want to see him get what's coming to him. ", "They killed that poor innocent man.'", "\n\n'Fair enough.' ", "Ben raised the MPX, placed the optical red dot on Federico Casini's forehead and squeezed the trigger. ", "To the sound of the final gunshot that would be heard among the ruins of Olympia for a very long time, the kneeling figure keeled over backwards, twitched once and lay still.", "\n\nAnna was trembling. ", "Ben took her hand gently in his and said, 'Let's get away from here.'", "\n\n## Chapter 24\n\nHe kept a tight grip on her hand as they hurried away through the ruins of Olympia. ", "For the moment, he ignored the questions she kept firing at him: 'What's happening? ", "What did those men want with me? ", "Why are you here? ", "What are we going to do about Mr Kambasis?' ", "He had plenty of questions of his own to ask her, but talking could wait.", "\n\nAs Ben had anticipated, Usberti's crew had left the keys in the white panel van's ignition for a fast getaway. ", "Its doors were still open and the engine was still warm. ", "It had Greek plates. ", "Probably stolen, or paid for in cash under a false name, like his Opel.", "\n\nThe van had fared better in the firefight than its former occupants, but it hadn't survived Casini's random shooting spree completely unscathed. ", "There was a bullet hole punched through the skin of the front passenger door and another in the flimsy steel of the wing panel, where part of the headlamp was blown away and dangling from its mount like a popped eyeball. ", "Neat, round black holes on white bodywork were a little more conspicuous than Ben would have liked, but there wasn't much he could do about it, and he didn't plan on using the van for long.", "\n\nInspecting the back, he found that the cargo bay contained a dirty single mattress and had been hastily, not very neatly, lined with thick building-grade plywood to deaden the screams and thumps of an unwilling passenger. ", "The classic kidnap setup Ben had seen a hundred times.", "\n\nUp front, there was food and bottled water in a plastic bag, ready for a long drive to wherever they'd been planning on taking her. ", "The interior cab light shone on a small zipper pouch that lay on the dashboard. ", "Inside it, Ben found a hypodermic and a small glass vial. ", "The syringe was loaded with a colourless liquid. ", "Ben pressed the plunger until out a single drop trembled on the end of the needle. ", "He waved it under his nose to get a whiff. ", "No mistaking what it was. ", "Once upon a time, kidnappers used chloroform. ", "Nowadays they'd moved on to more sophisticated stuff.", "\n\nAnna almost fainted when she saw the needle. ' _", "Dio mio_. ", "They were going to drug me?' ", "Up close, even pale and in shock, she looked radiant. ", "The picture on her website couldn't do justice. ", "The photographer hadn't needed to use Photoshop to iron out the old scar on her cheek. ", "It was already invisible.", "\n\n'Only for as long as it took to deliver you to their boss,' Ben said, helping her into the cab. ", "He shut her in, then ran around to the driver's side, stashed his bag behind the seat and got behind the wheel.", "\n\nShe said, 'Why would they do that? ", "I don't understand.'", "\n\n'Nor do I,' Ben replied. '", "But I soon will.'", "\n\n'We have to call the police.'", "\n\n'They'll be here soon enough, if anyone heard all the noise back there,' he said, firing up the van's engine with a dieselly rasp. '", "And they'll want to know all about the Italian lady history professor who travelled to their country to pay a visit to Theo Kambasis and was with him when he got shot to bits. ", "You want to spend the next forty-eight hours in an interrogation room with a bunch of suspicious cops hungry for a murder conviction, not to mention all those angry culture officials who want to know why their best tourist attraction just got blown up?'", "\n\n'I have nothing to hide. ", "I'm innocent.'", "\n\n'So was Kambasis. ", "Didn't do him much good.'", "\n\nBen bumped the van up onto the road and drove fast through the darkening night, the heater blasting, sticking to the back roads, aiming to put as much distance between themselves and Olympia as possible in the short time they could afford to stay with this vehicle. ", "He couldn't risk returning to the museum to retrieve his car.", "\n\n'I rented a house,' Anna said. '", "Not far from here.'", "\n\n'Sorry,' Ben replied. '", "You can't go back there. ", "Too dangerous.'", "\n\n'But my travel bag is there,' she protested. '", "My laptop, my clothes, my things...' She shook her tiny handbag. '", "All that's in here is my purse, my passport, some tickets and a hairbrush.'", "\n\n'It can't be helped, Anna. ", "I'm certain that the person who sent these men after you also would have found out where you were staying locally. ", "That wouldn't be difficult. ", "More of them could be watching the place.'", "\n\n'How can you be so sure of that?'", "\n\n'Because it's what I would have done.'", "\n\nShe sighed, then gave a resigned sort of shrug. '", "It's only stuff, as they say. ", "Losing my laptop is the worst thing, but its contents are encrypted and all backed up online, so I can retrieve everything easily. ", "Where are we going?'", "\n\n'Not the Ritz-Carlton. ", "But somewhere safe, where these people can't get to you.'", "\n\n'Is there really no other choice?'", "\n\n'None,' he replied.", "\n\n'Then it's not a dream. ", "This is really happening to me. ", "I'm frightened, Ben. ", "I don't understand. ", "Why are you here?'", "\n\n'Let's find a place to stop. ", "Then we'll talk.'", "\n\nShe shook her head. '", "I always knew I would see you again. ", "Just not like this.'", "\n\n'That's me all over,' he replied. '", "Always full of surprises.'", "\n\nTwenty kilometres further south-east, on a deserted, bleak and icy mountain road near the small town of Andritsaina, Ben finally decided to pull up. ", "He turned off the lights and checked in the mirrors.", "\n\nThey were alone. ", "Leaving the engine running to give them warmth, he turned to her and said, 'All right, let's talk. ", "You want to know why I'm here? ", "I tracked you from Florence because your name is on a list of targets, Anna. ", "So is mine.'", "\n\n'List?' ", "she gasped. '", "Why?'", "\n\n'Because someone from our past, someone we thought we'd never hear from again, is back and he means to do us harm.'", "\n\n'Usberti? ", "The archbishop?'", "\n\n'Former archbishop. ", "Thanks to us.'", "\n\n'I was barely involved.'", "\n\n'He's not the most forgiving type of person.'", "\n\n'But what does he want with us?'", "\n\n'Revenge, pure and simple. ", "We hurt him, now he wants to hurt us back. ", "And he's doing a fine job of it so far. ", "You remember Father Pascal, the old priest from Saint-Jean in the Languedoc who helped us?'", "\n\n'I never met him. ", "I spoke to him only on the phone, just one time.'", "\n\n'You won't be speaking to him again. ", "They beat him to death inside his own church.'", "\n\n'My God.'", "\n\n'How about Luc Simon, the Parisian police detective in charge of the Gladius Domini case? ", "Promoted to a desk at the INTERPOL HQ in Lyon afterwards. ", "I've been in contact with him now and then over the years. ", "Not any more. ", "He was stabbed to death in his home the same day they murdered Pascal. ", "Not long after someone took a shot at me at my place in Normandy and put my best friend in a coma from which he might never wake up. ", "It's an orchestrated hit, one after another, all over France and Italy. ", "Yesterday they attacked your villa outside Florence, and pressed it out of your assistant Gianni that you'd travelled to Greece to meet Kambasis. ", "I was just a step behind them.'", "\n\n'Gianni! ", "Is he—?'", "\n\n'He's in hospital. ", "And lucky to be alive. ", "I'm afraid that your agent, Carlo, wasn't as fortunate. ", "I found him in his office, with his throat cut.'", "\n\n'I think I'm going to be sick.'", "\n\nBen reached into the plastic bag, opened one of the bottles of water left for them by the would-be kidnappers, twisted off the cap and passed it to her. ", "She took a long gulp, passed it back to him with a nod of thanks and then leaned back in the passenger seat with her eyes closed for a moment as she fought her nausea.", "\n\n'Feeling better?' ", "he asked after a few moments.", "\n\n'Not really. ", "Not at all. ", "Because what you say means that poor man Theo Kambasis died because of me. ", "I barely knew him, but he seemed so nice. ", "He didn't deserve to die.'", "\n\n'Nice people don't last very long when Usberti's around.'", "\n\n'If I hadn't come to meet him – if I hadn't told Gianni I was coming here – but Ben, how could I have _known_?'", "\n\n'None of us could have known,' Ben told her. '", "I wouldn't have had any idea what was happening if Usberti's former assistant, a man called Fabrizio Severini, hadn't written me a letter from jail to warn me that his old boss was back and on the warpath. ", "And until tonight I still had no idea of what was really happening. ", "Because I thought Usberti was planning to kill you, too. ", "But I was wrong. ", "There's something else going on here, Anna. ", "Something about you breaks the pattern. ", "He might have started out with the intention of taking you out just like the rest of us, but he changed that plan. ", "Now he wants you alive. ", "Not out of compassion, or softness, or because you're a woman. ", "I know this man. ", "He doesn't _do_ compassion, and he enjoys the hurt that's inflicted on women almost as much as the sadists he hires to do it for him, like your dear departed pal Franco Bozza. ", "If he's decided he wants you taken alive, it's because now he thinks you're worth more to him that way.'", "\n\nAnna instinctively put her fingers to her cheek, where Franco Bozza's knife had cut her. ", "Scars could heal, but some memories lingered forever. '", "What could he want from me? ", "Money?'", "\n\n'I wondered about that,' Ben said. '", "You're successful, you're wealthy. ", "A lot wealthier than someone on an INTERPOL commissioner's salary, let alone a rural priest. ", "But I don't think this is about money.'", "\n\n'Then what? ", "Who am I? ", "I'm just a writer.'", "\n\n'You're a little more than just a writer,' Ben said. '", "You're a highly regarded scholar with a knack for digging up bits of history that nobody knew before you came along.'", "\n\n'All the same, why would that make a difference?'", "\n\n'You tell me,' Ben said. '", "Gianni couldn't say much when I spoke to him, because he was all banged up and pumped full of drugs. ", "But I think that when Usberti's goon, that big bruiser back there, turned up at the villa and put the squeeze on him, he told them a lot more. ", "Which you can be certain reached Usberti's ears absolutely verbatim, because the guy was recording every word of it.'", "\n\n'Poor Gianni. ", "I have to call him, tell him how terrible I feel about what's happened.'", "\n\n'Not advisable. ", "He'd probably ask where you are, assuming he's well enough to talk at all. ", "And that's not something we want our friends to know, in case they go back to chat with him again.'", "\n\nShe blanched. '", "Please tell me you don't really think that. ", "You're just being careful.'", "\n\n'Being careful is what keeps me breathing air. ", "Chances are they won't, because Usberti's goons already found out all they wanted. ", "Whatever he let slip to them that was so important, it's the only thing that prevented you from becoming just another dead body in Usberti's revenge campaign. ", "I wouldn't have been able to save you, Anna.'", "\n\n'But you did. ", "And it's not the first time.'", "\n\n'I'd like it to be the last,' he said. '", "That's why I need to understand what's going on here.'", "\n\n'I have no idea.'", "\n\n'I think you do,' Ben said. '", "You just don't see the connection. ", "It can only be about one thing. ", "Your research.'", "\n\n'My research?'", "\n\n'Something big. ", "Really important. ", "That's what Gianni told me you were working on. ", "You didn't just visit Kambasis to talk about Phidias' workshop, did you?'", "\n\n'Just as well,' she muttered unhappily. '", "There's not much left of it to talk about.'", "\n\n'Then there's more to this.'", "\n\n'Oh yes,' Anna replied. '", "There's much more to it. ", "Just that I can't understand why—' She broke off mid-sentence and her face fell as the realisation hit her. '", "Or maybe I do understand.'", "\n\n'Then tell me.'", "\n\n'It's complicated,' she said. '", "To help you understand what I've been researching, I'd have to go right back to the beginning and fill in a lot of detail.'", "\n\n'Then I suggest we find ourselves a place to hole up in for the night,' Ben said. '", "Then, you can explain this entire thing to me.'", "\n\n## Chapter 25\n\nThe winding mountain road led them down towards Andritsaina, which was little more than a village nestling on the forested slope. ", "Not wanting the van to be seen in case it drew the wrong kind of attention, Ben found a wooded layby a kilometre outside the town. ", "It wasn't the perfect hiding place, but it would have to do. ", "He wiped down the steering wheel, door handles and anything else they might have touched, and then they set off on foot, using Ben's torch to light their way on the dark road.", "\n\nOn a winter's night the village made Olympia seem like a bustling metropolis by comparison. ", "An icy rain began to fall as they made their way through the narrow, almost deserted streets, looking for somewhere to shelter from the cold and get something to eat.", "\n\nAnna shivered. ", "The Italian designer coat she was wearing scored high on style but was next to worthless as a winter garment. ", "Her legs must be cold, too. ", "The hems of her lightweight trousers were wet and wrinkled and speckled with mud. '", "Look at me,' she complained. '", "I look like a vagrant. ", "And I can't walk another step in these shoes.'", "\n\n'I don't know why you do it,' he said, frowning down at her feet. '", "I don't mean you personally. ", "Women, in general. ", "Most of them, at any rate, in my experience, which isn't vast.'", "\n\n'Do what?'", "\n\n'You're a historian. ", "You ought to know that the history of feminine footwear runs right alongside the history of female oppression. ", "Going all the way back to ancient China a thousand years ago, when they invented foot-binding. ", "Like hobbling slaves by chopping off their toes to stop them from escaping, or rebelling. ", "You might as well be wearing barbed-wire slippers.'", "\n\n'So shoe design is a male conspiracy?'", "\n\n'How many top shoe designers are women?'", "\n\n'I don't know. ", "Some, I would imagine.'", "\n\n'Then they should know better. ", "They're selling you all out.'", "\n\n'Women feel the need to be attractive,' she said with a shrug. '", "That's why we do it.'", "\n\n'You'd look fine in a pair of combat boots.'", "\n\n'You can't be serious.'", "\n\n'Bin the rest of the designer junk while you're at it, in exchange for something more practical.'", "\n\nShe peered at him, smiling a little. '", "Is that what you go for in women, the butch look?'", "\n\n'Whatever works.'", "\n\n'Perhaps there's a military surplus store in this town, where I can buy a whole new outfit.'", "\n\n'Unlikely,' he said.", "\n\n'More likely than finding any decent kind of accommodation,' she replied. '", "This is the kind of place where the hotels open in April and close in October.'", "\n\nIf Ben had been on his own, he'd just as happily have roughed it in the woods with a makeshift bivouac, a fire made of cut branches and a wild rabbit roasting on a skewer for dinner. ", "But Anna Manzini wasn't someone you could easily take camping. '", "Let's try there,' he said, pointing as they rounded a corner and saw a bar that was open for business.", "\n\nInside, the place was half-empty but warm and welcoming: part hardcore drinking joint, part fast-food grill house, part family restaurant. ", "The owner was a jovial bear of a man named Kris Christakos, who was proudly fluent in English. '", "You are the first tourists I have seen for months,' he commented as he brought over a whisky for Ben, red wine for the lady, and took their food order.", "\n\nBen explained that they were on their way south towards Messini, but their car had broken down on the mountain road and they'd had to walk all the way here. ", "Was there anywhere in the village they could get a room for the night? ", "Kris beamed and pointed a finger straight up at the ceiling above him. '", "We have a couple of rooms to let upstairs. ", "It's not much, but it's better than the mountain. ", "My brother Nick, he drives a taxi and is also a mechanic. ", "In the morning he can take you back to your car and fix it for you.'", "\n\n'Sounds good,' Ben said with a smile and no intention whatsoever of letting anyone connect them with a stolen kidnap van.", "\n\nWhile they were waiting for their meal, he took out his phone. '", "Who are you calling?' ", "Anna asked.", "\n\n'Someone you know,' he replied.", "\n\nRoberta Ryder and Anna Manzini had met briefly, years earlier, at Anna's villa in the Languedoc during the Gladius Domini affair. ", "It hadn't been a comfortable meeting, with Ben caught in the middle of two otherwise highly rational and intellectual women who, for reasons he never could fathom, were potentially ready to start clawing each other's eyes out over him.", "\n\nWhen Roberta's distant voice came on the line, she didn't sound any happier. '", "It's me,' he said. '", "Are you okay?'", "\n\n'Oh, I'm having a whale of a time out here in sunny Jerkville, Ontario. ", "There's ten feet of snow outside the window of my shack and I can't sleep at night because of wolves howling. ", "As long as I don't run out of firewood to feed my little stove, I'm just peachy. ", "Any idea when I can go back to my life?'", "\n\n'Stay tight. ", "I'll call you again soon.'", "\n\n'That was quick,' Anna commented with a raised eyebrow as he ended the call. ", "Ben didn't reply. ", "He instantly started punching in another number. ", "When a different female voice answered after two rings, he launched straight in. ", "No greeting, just an urgent 'How is he?'", "\n\n'I'm with him now,' Sandrine Lacombe said. '", "Still no change. ", "He's stable, but that's the best I can say.'", "\n\nBen took a deep breath and let it out slowly.", "\n\nSandrine said, 'You know the police came here again, looking for you?'", "\n\n'Good luck to them,' Ben said.", "\n\n'Where are you?'", "\n\n'You don't want to know,' he replied. '", "I have to go, Sandrine. ", "Call me if there's any news about Jeff.'", "\n\n'You know I will. ", "Take care, okay? ", "Wherever you are.'", "\n\n'It sounds as if there are a lot of women in your life, as ever,' Anna said with a wry smile as Ben put the phone away. ", "Then, seeing his look, her expression became serious. '", "That was about your friend?'", "\n\n'He still hasn't woken up.'", "\n\n'I'm so sorry.'", "\n\nThe food arrived a minute later, served by Kris's daughter Talia. ", "Ben hadn't eaten more than a bite since arriving in Greece, and attacked his plate of _paidakia_ , which was essentially just grilled chops with potatoes. ", "Anna contented herself with a salad, most of which she just shunted around her plate, picking at just a couple of morsels until she finally gave up. '", "I can't eat. ", "I keep thinking about that poor man.'", "\n\n'Kambasis?'", "\n\n'Such an interesting person,' she went on, shaking her head, as though the violent sudden death of a less interesting individual could be construed to be a less tragic event. '", "Archaeology was in his bl— was in his family. ", "You know his father, Leonidas Kambasis, was the local Greek archaeologist who assisted with the German-led project to excavate the workshop of Phidias in the fifties?'", "\n\n'It's amazing just how little I know,' said Ben, still waiting to find out a lot of things.", "\n\nAnna went on, 'In fact, people tend to forget that it was actually the Nazis, not the Greek government, who enabled the first really extensive modern excavation of Olympia, starting in 1936, to mark the opening of Hitler's grand Berlin Olympic Games that year. ", "The Nazi engineers in charge of the excavation project were Emil Kunze and Hans Schleif, who as well as being a classical archaeologist was also an SS Standartenführer. ", "Hitler was passionate about the preservation of the site, regarding his Third Reich as a cultural and aesthetic successor to ancient Greece. ", "The Olympia project became known as the _Führergrabung_ or \"Führer excavation\". ", "There was even a special _Kunstschutz_ department within the Wehrmacht responsible for its protection, which issued orders to German soldiers not to urinate on the ruins as it damaged the marble.'", "\n\n'Too much schnapps in their bloodstream,' Ben said. ", "It was just like Anna to dwell over historical detail at a moment like this, and he had to hold back from pushing her onto more important matters.", "\n\n'After the war, Emil Kunze returned to oversee the continuing excavations, as though nothing had happened. ", "It was ironic that after three and a half years of Nazi occupation, the execution of a hundred and thirty thousand innocent Greek civilians and the decimation of the population, the Olympia site was completely unscathed.' ", "Anna shook her head sadly. '", "And even more ironic that it survived all those terrible times, only to be demolished seventy years later because of us.'", "\n\n'We didn't demolish all of it,' Ben said. '", "Only the bits that were still standing. ", "In another few centuries, who'll know the difference?'", "\n\nIf Anna sensed the attempt at levity, she didn't show it. '", "Anyway, you wanted to know why I went to see Kambasis. ", "You were right, Ben. ", "My reason for talking to him was very central to my new research project. ", "Nobody in the world knows more about Phidias than he did, as he inherited his passion for the subject from his father. ", "He was the best person to talk to, in order to find out if it was feasible.'", "\n\n'If what was feasible?' ", "Ben asked, pouring himself a glass of wine.", "\n\n'Do you know anything at all about Phidias?'", "\n\n'No, but I have a feeling you're about to enlighten me.' ", "Ben wanted to add, 'And I wish you would.'", "\n\n'He was a master sculptor who lived and worked in Olympia two and a half thousand years ago, during the fifth century BC. ", "Phidias was renowned for many great works but his most famous creation was a giant gold and ivory statue of Zeus, which became known as one of the seven wonders of the ancient world. ", "It stood twelve metres in height, a spectacular monument, quite magnificent.'", "\n\n'It's not in the museum,' Ben said. '", "The ceiling's not high enough.'", "\n\n'It's not in any museum,' Anna replied. '", "For a thousand years it remained housed in Olympia's Temple of Zeus, which as you've seen is now completely ruined. ", "Sometime in the fifth century AD, it disappeared from there. ", "Stolen, dismantled, broken up into pieces, nobody knows. ", "What we know of it in modern times comes only from ancient texts and images on old coins. ", "Having inherited his father's fascination for all things related to Phidias and his works, Theo Kambasis made it his life's goal to rediscover the statue's remains, as he was convinced they were still somewhere in the vicinity of the Olympia site. ", "He spent much of his time there, searching for clues, and wrote numerous papers and articles on the subject. ", "That was how I came to learn about him, and why I wanted to talk to him in person.'", "\n\nBen was beginning to understand, or at least he was trying to. ", "Chewing a mouthful of _paidakia_ , he said, 'So that's what this big new research project is – you're looking for the statue of Zeus?'", "\n\nAnna shook her head. '", "No, that's not my interest.'", "\n\n'Then what?'", "\n\n'As I said, what I wanted to discover from Theo Kambasis was whether or not the technology truly existed in the fifth century BC to create an enormous golden statue of that kind. ", "How feasible was it back then, with the facilities available, to create an object so huge out of precious metals?'", "\n\nAnna shoved her unfinished plate out of the way and leaned eagerly across the table with her hair falling across her face, looking at Ben with a sparkle in her dark brown, almond-shaped eyes. '", "You see, before I went any further with this, I needed to know whether the story could be true or not. ", "Now, together with the evidence I've already collated, what Theo Kambasis told me has got me convinced.'", "\n\n'Convinced about what?' ", "Ben said, now thoroughly confused. '", "What evidence? ", "What story?'", "\n\n'The story of the biggest, most legendary, most fabulous golden statue in all of history,' Anna replied, spreading her arms wide with a flourish. ' _", "That's_ what I've been working on for my new book, and I'm certain it exists.'", "\n\n## Chapter 26\n\n'It all begins with the Bible,' Anna said. '", "I don't suppose you would be especially familiar with the Bible, Ben?'", "\n\nHe was aware how little she really knew about him, or his past. ", "When they'd first met, he'd been posing as a journalist. ", "She'd soon come to realise he was a little more than that, but he'd never told her many specific details. ", "He smiled. '", "I've heard of it, though. ", "Isn't it that book all about God and Jesus and stuff?'", "\n\nShe reddened. '", "No need for sarcasm. ", "I just meant—'\n\n'It's okay. ", "It has been a while since I did any of that kind of reading.'", "\n\n'Then let me explain. ", "We're concerned here with the ancient text that belongs to the _Ketuvim_ , or writings, of the _Tanakh_ , that is to say the Hebrew Bible. ", "In versions of the Christian Old Testament it's grouped with the Major Prophets and is commonly known as the Book of Daniel. ", "Traditionally it's attributed to Daniel himself, a noble Jew who was a captive exile in the ancient kingdom of Babylon, though most modern scholars now believe the author to be pseudonymous.'", "\n\n'All right,' Ben said. '", "Go on.'", "\n\n'First, let me fill you in on the background. ", "The kingdom of Babylonia, as you may or may not know, was a powerful and enduring historic empire that occupied part of ancient Mesopotamia, in what nowadays covers much of Iraq, Kuwait, Syria, and extends into Iran and Turkey. ", "Babylon's origins date all the way back to the Bronze Age, and it was ruled over by a long succession of dynasties over the course of many centuries. ", "Perhaps its most famous, or infamous, ruler was Nebuchadnezzar the Second, who took the throne in 605 BC. ", "He was an aggressive and ruthless empire builder who reconstructed the ancient capital and sought to extend his kingdom's influence far and wide. ", "At the height of Babylon's glory under his reign, the city was said to have covered an enormous area, bigger than modern-day London. ", "Inside its giant walls, which according to the historian Herodotus were some sixty metres high with huge brass gates and watchtowers all around, were magnificent royal palaces and gardens, even a grand observatory where the Babylonian astrologers made their celestial observations.'", "\n\nBen drank more wine.", "\n\nAnna went on, 'Nebuchadnezzar's foreign policy was just as ambitious. ", "He crushed and swallowed up many smaller kingdoms, waged war against the Egyptians, and also attacked Israel where he succeeded in taking Jerusalem, sacked the Temple of Solomon and deported much of the city's population to Babylon. ", "The Book of Daniel relates the story of three young Hebrew prisoners whom Nebuchadnezzar's soldiers had captured and brought back as slaves. ", "Their names were Hananiah, Mishael and Azariah.'", "\n\n'Better known as Shadrach, Meshach and Abednego,' Ben said.", "\n\nAnna looked at him in surprise. '", "Yes, those were the names given to them by their captors, to facilitate their integration into Babylonian culture. ", "But how do you—?'", "\n\n'I studied theology, in another life. ", "That's why I said my Bible knowledge might be a little rusty. ", "Once upon a time, I could have quoted you chapter and verse.'", "\n\nHe might as well have told her he was from the planet Zog. ", "She stared at him in amazement. '", "No.'", "\n\n'Told you, I'm full of surprises,' he said. '", "In fact there was a time when that was going to _be_ my life. ", "The church. ", "Reverend Ben Hope, living in an ivied vicarage with a bored wife, two kids, an estate car and a yellow dog. ", "Can't you see it?'", "\n\n'I had no idea. ", "I would never have taken you for a religious person.'", "\n\n'Who said I was?'", "\n\n'You don't believe?'", "\n\n'Probably not, any more.'", "\n\n'But you did, once. ", "Nobody would seek a career in the church if they didn't believe in God.'", "\n\n'That was a long time ago, Anna.'", "\n\n'And yet, you haven't forgotten the Bible.'", "\n\n'Not all of it,' he said. '", "As I recall, the story from Daniel, Chapters two and three, goes something like this: in the second year of King Neb's reign, he was said to have dreamed of a massive statue made of precious metals. ", "The dream inspired him to create a huge golden idol, which he had erected in the Plain of Dura, and commanded that everyone should bow down to it. ", "When the three Hebrew captives Shadrach, Meshach and Abednego refused on the grounds that they worshipped only their one true God, in his kindly way the king ordered them to be thrown into a superheated furnace, supposed to have been seven times hotter than normal fire.'", "\n\n'Impressive, so far,' Anna said.", "\n\n'But God sent an angel to protect His faithful, and they escaped completely unburned from the flames, which impressed King Neb so greatly that he bestowed all kinds of honours on them and decreed that anyone who spoke out against God in future would be torn limb from limb. ", "Probably the all-time fastest conversion to Christianity recorded in the Bible, though Nebuchadnezzar wasn't famous for his consistency.'", "\n\n'Bravo. ", "You know the story very well.'", "\n\n'Let's call it what it is,' Ben said. '", "A myth. ", "I'm no archaeologist but even I know that no real-life trace of Nebuchadnezzar's golden idol has ever been found. ", "Surely you don't believe any of it is true?'", "\n\n'That's not the attitude I'd have expected from a theologian.'", "\n\n'Maybe I'm not famous for my consistency either,' Ben said.", "\n\nAnna shrugged. '", "Legend, myth, call it what you want. ", "Of course, these things are subject to all kinds of possible interpretation, and scholars have picked it all apart for so long that nobody knows what to believe any longer. ", "But interpretation aside, what if there were a core of truth to the story?'", "\n\n'You mean, what if there really had been a golden idol, just like the golden statue of Zeus that Theo Kambasis spent his life looking for?'", "\n\nAnna said, 'Well, yes, why shouldn't there have been? ", "Is it so improbable? ", "I mean, if it's possible to accept for a fact that Phidias' Zeus existed, then how justifiable is it simply to dismiss the Babylon idol as pure fiction? ", "They both date from roughly the same time period, give or take a century or so. ", "The technology of the time may have been crude in many respects, but those ancient cultures were nonetheless capable of incredible feats of artistic and engineering ingenuity. ", "Take another of Phidias' lost works, for instance, the colossal gold and ivory statue of the goddess Athena that once stood in the Parthenon in Athens. ", "There's a reproduction of her in Centennial Park, Nashville, Tennessee. ", "At thirteen metres in height, it's the largest indoor sculpture in the Western world. ", "I went there just to stand next to it and get a sense of the size of the thing. ", "It was mind-blowing. ", "Now imagine the sheer mass of a statue which, if the Biblical account of Nebuchadnezzar's idol is accurate, measured—'\n\n'Sixty cubits high by six cubits wide,' Ben finished for her. '", "Or so the legend tells.'", "\n\n'That's _twenty-seven metres_ in height, more than double the size of Phidias' colossal Athena, as tall as a nine-storey building.'", "\n\n'Hard to hide something that big,' Ben said. '", "You'd have thought they would have dug it up by now, if it existed at all.'", "\n\n'It's more than just conjecture,' she said firmly. '", "I take my research very seriously, evaluate the evidence as objectively as a scientist and jump to no conclusions without proof.'", "\n\n'You're telling me you have proof?'", "\n\n'I'm working on it. ", "There are a lot of challenges involved in trying to shed light on what was really a very hectic and crazy time in Babylon's history. ", "When Nebuchadnezzar died and his rule passed to his son Amel-Marduk in 562 BC, the new king reigned only a short time, giving way to a succession of weak rulers who paved the way for Babylon's fall just twenty-three years later, in 539 BC, to the Persian king Cyrus the Great, leader of the Achaenimid Empire, the biggest empire in the ancient world, which then assimilated Babylon. ", "Somewhere in the middle of all these turbulent changes, the fabled golden idol vanished – as you say, without a trace.'", "\n\n'There you have it,' Ben said. '", "End of story.'", "\n\n'Not quite,' Anna said.", "\n\n## Chapter 27\n\n'I know you don't believe me,' Anna said. '", "That's your privilege. ", "But a good researcher never accepts defeat so easily, and we don't like mysteries getting the better of us. ", "So, as ever, we begin our hunt by going to the records. ", "Thankfully, even though it was so long ago, that period of Babylonian history is very well documented. ", "Since the nineteenth century archaeologists have uncovered thousands of business documents in Babylonia, written on clay tablets in the Akkadian language. ", "Any trading business of any importance would have teams of scribes employed to chisel away all day long at flat sheets of stone, just like secretarial staff typing notes. ", "These ancient records are typically found in large collections relating to the business transactions of a single extended family, often covering several generations' worth of accounts. ", "Loans, mortgages, contracts, receipts, everything, together with dates of when those transactions were made or agreements struck.'", "\n\n'I get it,' Ben said. '", "Nothing changes. ", "People in history were just the same as people today.'", "\n\n'Which is exactly what my book was originally going to be about,' Anna explained. '", "A new angle on those ancient times, exploring the human hearts and minds beneath the dust of history, revealing who these people really were, bringing them to life for today's reader. ", "At least, that was the idea I was working on to begin with. ", "To that end I spent two months of last year in Iraq, in the city of Hillah, south of Baghdad, adjacent to the site of ancient Babylon itself. ", "The area has been something of a war zone in modern times.'", "\n\n'Just a little bit,' Ben said, with a thin smile.", "\n\n'But since 2009 the provincial government of Babil has reopened the ancient site to tourism, and archaeologists and cultural organisations were able to resume the restoration efforts that had long been impossible thanks to political and military upheavals. ", "I spent my time working with a team of dig volunteers from all over the world, supervised by a Turkish archaeologist and specialist in ancient languages. ", "It was very physical and exhausting work.'", "\n\nNow it was Ben's turn to be surprised, at the idea of the refined, elegant and ever-polished Anna Manzini getting stuck into the grinding heat and dust of a Middle East archaeological excavation, shovel in hand, knee-deep in sand and rock, sweating under the blaze of the same Iraqi sun that had scorched him and his SAS comrades so mercilessly, back in the day.", "\n\n'But so rewarding,' Anna continued. '", "Especially when we uncovered a hitherto-unknown store of ancient Babylonian clay tablets that had lain buried for over two thousand years under the sand. ", "It was when we began to catalogue them and the translation work got underway that I first realised the implications of what we had discovered. ", "Until then, so little had been known about the Muranu family.'", "\n\n'The who?'", "\n\n'The Muranus were a merchant dynasty who were active from around 600 BC right through until the fall of Babylon to the Persians. ", "Thanks to this discovery, it's been possible to piece together a great deal of detail about their business affairs. ", "They made their start as rural food merchants, going out into the countryside to buy supplies such as grain, dates, onions and so on, then selling the goods in the city. ", "From such humble beginnings they might never have flourished, but this was a golden age for Babylon, when the economy was booming, the city expanding, fortunes were being made and the spirit of the times was highly optimistic. ", "When King Nebuchadnezzar drafted in thousands of workers to man the construction sites for ambitious new projects like the Ishtar Gate and the famous Hanging Gardens, the Muranu family saw an opening and became caterers to the armies of labourers. ", "The profits they made from feeding the workforce they reinvested into farmland and urban real estate, allowing them to diversify still further by going into manufacturing. ", "As they grew wealthier they also became important moneylenders, making loans of silver for interest rates of as much as twenty per cent a year. ", "The daughters of the Muranu clan married other important businessmen and city officials, so that they gradually worked their way into the highest echelons of the state. ", "Thanks to these connections they received tax breaks, as well as access to state-owned ships and river ports on the Euphrates, on whose banks the city of Babylon was built. ", "The Euphrates runs all through Syria and Iraq and joins up with the Tigris near Basra, becoming the great Shatt-al-Arab River before it empties into the Persian Gulf.'", "\n\n'I know where the Euphrates is,' Ben said.", "\n\nAnna replied, 'Then you can appreciate how such a trading route allowed the Muranu family to become even richer, by distributing all kinds of goods throughout the region. ", "Now, as I said, we know a lot about the Muranus from the cache of clay tablets that were found. ", "But one tablet is of particular interest. ", "It dates from 539 BC, which of course was a significant year in Babylon's history.'", "\n\n'Refresh my memory.'", "\n\n'By then, Babylon was in terrible disarray politically, economically and militarily. ", "It had been just twenty-three years since the death of King Nebuchadnezzar, who for all his faults was an effective ruler, made the kingdom strong and was adored by the mercantile class. ", "Since his son Amel-Marduk took power in 562, the Muranu family had been watching anxiously as the economy began to slowly unravel under a succession of bad rulers, none of whom lasted very long.'", "\n\n'Sounds like present-day Europe,' Ben said, swallowing the last of his wine.", "\n\n'You said it,' Anna chuckled. '", "What changes?'", "\n\nAt that point, Talia came to collect their dishes. ", "Ben asked if he could have another bottle of wine, which she brought a moment later. ", "Anna declined a refill of her glass. ", "As Ben got to work on the fresh bottle, she went on:\n\n'But things reached a low point with the rise to the throne of King Nabonidus after his predecessor, the child king Labashi-Marduk, was murdered just months after his inauguration. ", "Nabonidus was a lousy king, almost universally disliked, especially as he spent much of his seventeen-year reign absent from the kingdom, in self-imposed exile in the oasis area of Tayma in present-day Saudi Arabia, having little to do with his kingdom and leaving everything in the control of his son and coregent Belshazzar.'", "\n\n'Belshazzar, as in, Belshazzar's feast and the writing on the wall in blood,' Ben interjected. '", "Daniel, Chapter five.'", "\n\nAnna nodded. '", "The same. ", "Nabonidus' neglect of Babylonian affairs was much resented by the general public, the priesthood, and of course the merchant families. ", "They were right to be anxious, because all the while King Cyrus of Persia was growing ever stronger and his shadow hung over Babylon. ", "Invasion and war were coming, and the elite knew it. ", "There was talk of evacuation, as many people were convinced that the Persians would enslave or execute the entire population of the city. ", "Belshazzar, a strong warrior but a worthless politician, began to panic. ", "Babylon's gold reserves were at a critical low and he desperately needed to raise money to fight off the threat of the Persians.'", "\n\n'War is an expensive business, right enough,' Ben said. '", "Always was, always will be. ", "But what's so important about this one clay tablet you mentioned?'", "\n\n'It's important because it's one of the very last records from ancient Babylon, prior to the Persian invasion of 539,' Anna said. '", "Not just one of the last surviving records; one of the _actual_ very last due to its date. ", "And also because it's so unusual in itself. ", "It's a legal document, an official contract agreement between Belshazzar and the Muranu family. ", "Unfortunately, it was too damaged to decipher fully, as it was excavated in pieces with several fragments missing that made it impossible to know exactly what the contract specified. ", "We know only that the merchant family were being asked to broker some extremely valuable item from the state treasury, making use of their established civilian transport infrastructure in a way that didn't tie up limited military resources.'", "\n\n'But we don't know what valuable item,' Ben said.", "\n\n'It's not spelled out, but other tablets found with it fill in certain gaps. ", "They describe, in detail, the plans for loading an important and very large item of cargo, to be transported away by boat. ", "The record even shows how many extra slaves had to be taken on to complete the loading, as well as the large number of armed guards hired to protect the cargo en route. ", "Belshazzar presumably couldn't afford to offer them a proper military escort as he needed every last soldier available to man the defences of the city.'", "\n\n'I understand. ", "You're suggesting that this cargo was Nebuchadnezzar's golden statue, being sold to raise defence funds?'", "\n\nAnna shrugged. '", "It wouldn't be the first time that a troubled state had to sell off its treasures in times of crisis. ", "Here we are in modern-day Greece, where not too long ago the government were talking about selling off national monuments such as the Acropolis to shore up the crippled economy.'", "\n\n'Next thing we'll know, the Chinese will be buying it and carting it off to Beijing, stone by stone,' Ben said. '", "But the problem with your idea is that no ship at that time would have been able to carry something as massive as a gold statue close on thirty metres in length. ", "It would have sunk before it made it halfway down the Euphrates.'", "\n\n'This is why I wanted to speak to Theo Kambasis,' Anna replied. '", "Because I, like you, found it hard to believe that you could just pick up such an object and transport it about. ", "The task would be impossible, even with thousands of slave labourers at one's disposal. ", "Aside from the problem of finding a ship big enough to carry it, a pure gold statue of that size would be so heavy that it would tend to collapse on itself the moment it was moved. ", "As a metal, gold is extremely dense but comparatively soft, with low tensile strength. ", "Not to mention the fact that it's very unlikely that enough gold even existed in Babylonia at that time, or even in the world, to fill a mould so large. ", "Only about a hundred and eighty-five thousand tons of gold have been mined in the whole of human history. ", "I pondered all these problems, until I hit on a new theory. ", "One that Kambasis confirmed just a few minutes before he died, that poor man.'", "\n\n'Which was?'", "\n\n'That Nebuchadnezzar's idol could have been created the same way as the colossal statues of Phidias were made during the same era, such as his giant Athena. ", "It's been estimated that the quantity of gold in the original Athena would have amounted to forty-four talents' worth. ", "That's about eleven hundred kilograms, a substantial proportion of the gold reserve of the treasury of Athens but still much lighter than if the statue had been cast solid. ", "What enabled Athena to be transported all the way from Phidias' workshop in Olympia to the Parthenon was that the builders used a brilliantly inventive modular technique, attaching separate plates to an internal core sculpted out of wood. ", "The method makes it possible to create much larger monuments, which from the outside _appear_ to be solid gold, sometimes combined with ivory and other precious materials. ", "The parts could then be shipped to any destination and assembled there. ", "The modular structure also enabled any section of the statue to be removed and repaired, in case of damage.' ", "Anna's eyes sparkled with excitement. '", "Do you see? ", "If the Babylon idol had been created the same way, it could easily have been dismantled for transportation to its new owner.'", "\n\n'Piece by piece,' Ben said. '", "Like the Acropolis going to Beijing. ", "Makes sense. ", "But there are too many ifs and buts. ", "What you're saying is only supposition.'", "\n\n'Wrong,' Anna said firmly, fixing him with a serious look. '", "The circumstantial evidence is strong enough to be taken seriously. ", "Because the same clay tablet shipping records specifically mention not just one item of cargo, but many large pieces, all wrapped up and packaged aboard an entire small fleet of merchant vessels, which set sail from Babylon's river port in early October 539 BC. ", "We even have a kind of passenger manifest, listing the names of all the important Muranu family members who accompanied their precious cargo down the Euphrates as they fled the coming war. ", "We know, for instance, that one of the passengers was a young Muranu boy named Ashar, who according to the family birth records listed on other clay tablets was around eight years of age at the time.'", "\n\n'All you need now is a buyer's receipt, so you know where the idol ended up.'", "\n\n'Sadly, that's something we're missing. ", "No further transactions were recorded, for the reason that events unfolded so quickly afterwards. ", "Belshazzar's plan had come too late to rescue Babylon from the mobilising Persian army. ", "Just days after the ships sailed, Cyrus the Great's forces swept in and invaded the city. ", "The Book of Daniel describes how Babylon fell in a single night. ", "Nabonidus fled but was soon caught. ", "His fate is uncertain: it's very possible that Cyrus had him executed by burning, his favourite method of punishment, though some historians have believed Nabonidus was spared and allowed to live in exile, in what is now Kerman Province in modern-day Iran. ", "We do know for certain that Belshazzar was killed in the defence of Babylon, during what little fighting took place against the massively superior Persian army. ", "And with his death and the collapse of the state, the contract between him and the Muranu family was effectively rendered null and void, along with the need to sell the idol to raise money for the war effort.'", "\n\n'So the question is,' Ben said, 'what happened to the idol?'", "\n\nAnna nodded pensively. '", "I ask myself, if I had been an elder of the Muranu family, fleeing with our children to a new life in exile far away from our beloved Babylon and probably leaving behind much, if not all, of our worldly wealth, what would I have wanted to do with it? ", "Sell it to restore our fortunes? ", "Melt down the vast quantity of gold into ingots or coins, or smaller statues that we could trade? ", "Or would we perhaps have chosen to keep it for ourselves, passing it down from generation to generation in whatever new place we had made our home, preserved in its original state, in honour of a king we believed to have been the last great ruler of their land, and to commemorate the Babylon that once had been? ", "I like to think that's what I would have done, and what they did.'", "\n\n'Then they'd have had to hide it pretty well,' Ben said. '", "You couldn't leave a ninety-foot golden statue sitting in your backyard and not expect it to draw attention.'", "\n\nAnna heaved a sigh. '", "Who knows what became of it? ", "But one thing's for sure. ", "If just one surviving fragment of the idol could be rediscovered and verified, what an incredible find that would be.'", "\n\n'Another thing's for sure, too,' Ben said. '", "Whether this theory of yours is right or wrong, either way we're beginning to understand why Usberti ordered his men to take you alive. ", "Whatever Gianni told him about what you're searching for, it wouldn't take much for Usberti to suss out the rest. ", "He knows the Bible better than most people.'", "\n\n'That would make sense, given his former profession,' Anna said.", "\n\n'And he also lusts after gold more than anyone. ", "When I say he's obsessed with it, I'm not joking. ", "He believes that the Nazis were using some kind of alchemy to create gold bars out of base metals, and he tried to do the same. ", "I guess that didn't work out for him, and now he wants to get his hands on as much of the real thing as he can. ", "He also has a long history of kidnapping people he thinks can help him achieve his goals. ", "That would be you, Anna. ", "He wants you to lead him to the Babylon idol.'", "\n\n'And if he gets it, he'll kill me,' she said with a shiver. '", "It's the only thing keeping me alive.'", "\n\n'Not the only thing,' Ben said. '", "I'm here.'", "\n\n## Chapter 28\n\nWhile they'd been talking, too deep in conversation to notice much of what was happening around them, the restaurant had gradually emptied at the same rate as Ben's second bottle of wine. ", "Now Talia was dropping hints by turning off lights and hovering in the background with her arms folded.", "\n\n'I think someone's trying to tell us something,' Ben said, rising from his chair and picking up his bag, which had been nestling at his feet all through dinner. ", "It wasn't the first time he'd eaten in a restaurant with a loaded automatic weapon concealed among his personal effects.", "\n\nTalia led them up a bare wooden staircase and showed them the two upstairs rooms for let, of which they could have their pick. ", "Kris and the family lived on the floor above. '", "We'll take both rooms,' Ben said, explaining to the surprised Talia that they liked to spread out. ", "Talia shrugged, as if to say, 'It's your money.'", "\n\n'All our luggage is in the car,' Anna told her. '", "I have nothing to sleep in. ", "Do you think—?'", "\n\nTalia said she would ask her mother if Anna could borrow something to wear. ", "She disappeared for a few moments, then returned with a pair of well-worn pyjamas several sizes too large for Anna, and a woolly dressing gown. ", "Anna thanked her. ", "Talia smiled and left them alone.", "\n\n'Good night, Ben,' Anna whispered at her door.", "\n\n'Good night, Anna. ", "Try and get some rest.'", "\n\nBen's room was the smaller of the two, and had an even smaller balcony overlooking the village street. ", "He was dog tired and aching from the day's exertions, but the wine had done little to relax him and he stood out in the cold for a while, smoking and gazing over the rooftops at the starry sky, now that the rain had stopped and the night had cleared. ", "He had to keep fighting the urge to call Sandrine again, even though he knew she'd phone him if there were any changes in Jeff's condition. ", "Maybe he just wanted to hear her voice, he thought. ", "He didn't want to dwell too much on the reason why that might be, and lit another Gauloise to empty his mind.", "\n\nBut it would take more than the effects of a few micrograms of nicotine from a strong, unfiltered cigarette to still his thoughts to some Zen-like state of emptiness. ", "He was thinking about the two Croatian soldiers he'd seen blown up while sweeping for mines in the Bosnian war. ", "One had lost three limbs, the other had been disembowelled; yet the blast hadn't killed them and they'd lain in the dirt for an hour, pleading and screaming for someone to come and put them out of their misery. ", "A memory that had always stayed with him; just the way it had been for Jeff Dekker, after the similar things he'd witnessed in his time with the SBS.", "\n\nThat was why, one night, a long time ago, over a chessboard and a bottle of scotch, Jeff had said to him: 'Mate, if anything like that ever happened to me, I'd rather eat a bullet than spend the rest of my days sucking baby food out of a tube, know what I mean?' ", "By the time they'd reached the end of the bottle, they'd made a pact whereby, worst-case scenario, each could rely on the other _taking care of it_ for him.", "\n\nAnd that, in turn, was why Ben had already decided that, if Jeff didn't wake up after six months, or a year, then he, Ben, was going to do the right thing by his friend. ", "It would be quick, and quiet, and merciful.", "\n\nIt would be what friends did. ", "They didn't call it 'taking care' for nothing.", "\n\nBen was still deep in his thoughts when he heard the creak of his door slowly opening, and turned to peer through the darkness of the room at the figure stepping inside.", "\n\n'I can't sleep,' Anna said softly, stepping past the single bed and into the light of the window. ", "She was wearing the borrowed pyjamas and the dressing gown, topped off by a patchwork quilt from her bed draped around her shoulders. '", "Cold in here,' she whispered.", "\n\n'I'll close the window.'", "\n\nThey sat side by side on the edge of the bed. ", "Anna moved close to him. ", "For the warmth, he assumed.", "\n\n'Ben?'", "\n\n'Hmm?'", "\n\n'All this talking, and there's one thing I never said to you.'", "\n\n'What's that?'", "\n\n'To thank you, Ben. ", "Every time you come into my life, you save it.'", "\n\n'A man has to make himself useful somehow,' he replied.", "\n\n'Don't joke. ", "I can't even begin to imagine where I'd be now, if you hadn't done what you did.'", "\n\n'I'm sorry you had to witness what happened back there,' he said. '", "I'm sorry for a lot of things.'", "\n\n'You've nothing to be sorry about,' she whispered. ", "A pause. ", "Then: 'You know, I always hoped you would show up again one day. ", "Years have gone by, life has gone on the way it has, but I often thought about you. ", "I tried to imagine where you were, what you might be doing.'", "\n\n'There's not much to tell,' he lied.", "\n\n'And I've often pictured your face. ", "It hasn't changed. ", "Perhaps a little wiser, a little more rugged.'", "\n\n'That's a kind way of putting it,' he said.", "\n\n'And sadder, too,' she said. '", "I can see that in your eyes. ", "Has life been unhappy for you, Ben? ", "Do you have love? ", "Are you lonely?'", "\n\nHe said nothing.", "\n\nShe moved closer again, her shoulder pressing against his, and he realised she was about to kiss him on the lips. ", "As gently as he could, he avoided the kiss and pushed her back.", "\n\n'Why?' ", "he said, because he didn't know what else to say.", "\n\n'To thank you. ", "And because... I...' Her words trailed off. ", "She rested her hand on his thigh. ", "Her eyes were shining in the starlight from the window and her breath had quickened. ", "He could feel its warmth on his cheek. ", "The quilt slipped off her shoulders.", "\n\nHe laid his hand on top of hers, and squeezed it affectionately. '", "I don't need that kind of thanks, Anna. ", "But I appreciate the sentiment.'", "\n\n'Isn't it what you want?' ", "she murmured, backing off from him. '", "You don't like me?'", "\n\n'Let's not complicate things,' he replied softly. '", "You and I are going to be together for a while until we get this business sorted out.'", "\n\nShe paused. ", "The moment had passed, the tension easing. '", "I had assumed you'd be going home.'", "\n\nHe shook his head. '", "I can't leave you, Anna. ", "Not while Usberti's still out there. ", "Tomorrow, we head back to Italy, where I'm going to make sure you're safe. ", "But I won't be far away, I promise.'", "\n\n'I'm not going back to Italy, Ben.'", "\n\n'What are you talking about?'", "\n\n'Not yet. ", "Greece was only a stop on my journey. ", "From here I plan on travelling to Turkey. ", "I have to meet a man in Ankara.'", "\n\n'What man?'", "\n\n'Ercan Kavur. ", "I told you about him. ", "The archaeologist who supervised the excavation of the clay tablets. ", "He's one of the few people in the world who can read the ancient Akkadian language in all its Assyrian, Babylonian, Mariotic and Tell Beydar dialects. ", "He's been working on piecing together the damaged tablet we found, with a view to deciphering its meaning.'", "\n\n'He has it? ", "I'm surprised the Iraqi Ministry of Culture let him take something like that home to Turkey with him.'", "\n\n'Technically, it would be the State Board for Antiquities and Heritage,' Anna said with a crooked smile. '", "But the thing is, you see, we didn't exactly tell them everything we found. ", "I mean, once we began to realise how important it could be, how could I live with myself knowing it was languishing in a packing crate in some government storehouse where it might never be seen again? ", "You hear all kinds of stories of precious items going missing, or being sold off to illegal traders. ", "So Ercan took the pieces of the tablet home to work on. ", "Such a long time went by, and I heard nothing from him. ", "Then just a few days ago, when I had already arranged to see Theo Kambasis, he called to say there had been some developments in his research. ", "He told me that he was running into difficulties with the tablet fragments, which were too badly damaged to decipher.'", "\n\n'So the tablet was no use after all?'", "\n\n'Apparently not. ", "I was very disappointed to hear it, but I could sense from Ercan's voice that he was tremendously excited about something. ", "That was when he told me he'd made another related discovery, something hugely important, that he needed to tell me urgently.'", "\n\n'And?'", "\n\nAnna shrugged. '", "And that's all I know. ", "He wouldn't say, except face to face.'", "\n\n'Why not?'", "\n\n'Ercan is very cautious. ", "He doesn't like to talk more by phone than is strictly necessary. ", "He's always worried that someone might be listening in.'", "\n\n_One of those_ , Ben thought. '", "Fair enough. ", "What happened to email or Skype?'", "\n\n'You don't understand. ", "Ercan is... well, he's Ercan. ", "He makes a virtue of mistrusting the modern world, and most people for that matter. ", "If you want to see him, you have to go to him in person. ", "He believes that all modern communications are monitored by hidden powers, and will have as little as possible to do with that kind of technology. ", "That's just the way he is. ", "You have to accept it. ", "And so, it seemed the logical thing to do to extend my journey to see both of them – first Theo Kambasis in Olympia, then on to visit Ercan.'", "\n\n'But all the way to Ankara, just to talk to one man?'", "\n\n'For Ercan Kavur to speak even just a few words by phone, it must mean he has something genuinely urgent and important to say,' she insisted.", "\n\nBen wasn't liking any of this one bit. '", "Tell me one thing, Anna. ", "Did Gianni know about this meeting in Ankara, like he knew about your trip to see Kambasis?'", "\n\n'Yes, of course. ", "Gianni booked all my travel tickets, so he knows my whole itinerary. ", "My plan was to take the train back to Athens and—'\n\n'Do I need to tell you why this makes travelling to Turkey a really bad idea?' ", "he said, interrupting her. '", "We can't afford to assume they didn't press that information out of him too.'", "\n\n'Olympia is a small town,' she protested. '", "Anyone could have found poor Mr Kambasis there. ", "But Ercan is a completely different case. ", "A virtual recluse, with few friends, no family, social life or regular employment, living on the margin of society in a city of over four million inhabitants. ", "Unless you knew his exact address, which Gianni doesn't, you could never find him.'", "\n\n'My interest here is in keeping you safe,' Ben said.", "\n\n'Please, Ben. ", "I know it's asking a lot. ", "But I really need you to come with me to Turkey. ", "I can't do this alone, with all that's happening. ", "It's so important to me.'", "\n\n'I can't stop you going. ", "And I told you I wouldn't leave your side until this is over. ", "I meant what I said.'", "\n\n'Then you'll come? ", "We'll travel to Turkey together?'", "\n\nHe nodded reluctantly. '", "But not by the same route you planned. ", "We'll travel by road instead of train, leaving first thing in the morning.'", "\n\n'Thank you, Ben. ", "You make me feel safe. ", "I've never been so frightened in my life.'", "\n\n'Usberti won't hurt you,' Ben said. '", "That's a promise.'", "\n\nA promise which, if he'd known what lay in store, he would never have made.", "\n\n## Chapter 29\n\nNot many dead men lived in such comfort as Massimiliano Usberti. ", "What his new home lacked in scale and opulence compared to his Lake Como estate, it more than made up for in seclusion and privacy. ", "The balcony of his top-floor living room commanded a sweeping view like that from the bridge of a ship, from which you could gaze westwards across five miles of the Ionian Sea towards the distant medieval Sicilian coastal town of Taormina, with the shadow of Mount Etna looming behind; while to the north, on a clear day you could just make out the southernmost tip of Calabria, the toe of Italy.", "\n\nVery little boat traffic came within pistol shot of Usberti's island even in summer, mainly because there was nothing there except a couple of acres of trees, a rocky cove and a single three-storey house perched on its highest point, surrounded by a few stone outbuildings. ", "Now that winter had come, the fishing ports were quiet and the leisure boating season was over, nobody ventured out this way at all and the only living souls Usberti saw were the members of his retinue. ", "Silvano Bellini, his personal assistant, lived in a basic but comfortable converted cottage adjoining the main house that he shared with his colleague Pierangelo Volpicelli. ", "The remainder of the entourage were content to occupy the rougher outbuildings, as befitted their status as soldiers of the down-but-not-out Gladius Domini.", "\n\nOn a day like today, with gusts buffeting the windows, it was too cold to go outside, and Massimiliano Usberti stood instead at the broad balcony window gazing thoughtfully at the grey sea with his hands clasped behind his back. ", "The 'Agnus Dei' from Monteverdi's _Vespers of 1610_ played softly in the background, filling the large room with beatific sounds of reverence that elevated his soul.", "\n\nUsberti was a far more contented man these days. ", "He was looking and feeling better, stronger and sharper. ", "He'd regained some of the weight he'd lost through the dark times, and felt fired up with a renewed and invigorating sense of purpose. ", "In fact, as he liked to joke to himself, he'd never before felt as fit and healthy as he had since his death.", "\n\nHearing the door open, he turned to see Silvano Bellini enter the room. ", "The younger priest had nobody to whom to preach God's word these days, but he still wore the long black vestments and the silver crucifix. ", "He was a slim, tall man, dark-haired and intense, with sharp pallid features that made him look like an alabaster hawk. ", "Unfortunately for Bellini, the deity he venerated hadn't blessed him in the genetics department. ", "He wore spectacles as thick as bottle bottoms to correct his terrible astigmatism, and he walked with a permanent lurch in his step as a result of severe scoliosis, which got worse when he was nervous. ", "His had never been a relaxed personality, but at this moment he seemed more agitated than usual as he limped about the room, looking anxiously at his watch.", "\n\n'What are you worried about, Silvano?' ", "Usberti asked him.", "\n\n'Scorceletti, Zenatello and Casini should have reported back from Olympia long before now,' Bellini replied anxiously. '", "The other two are on their way back here as we speak, and should arrive any minute. ", "But not a word from the rest. ", "Where are they? ", "What's happened to them?'", "\n\n'Do not fret, Silvano. ", "If we have heard nothing, it is because the idiots have failed in their mission to capture the Manzini woman, and all three are dead. ", "I cannot say I am entirely surprised. ", "In fact, I had foreseen it. ", "They are not coming back.' ", "He smiled. '", "All the better for them. ", "Had any of them survived to return to me empty-handed, I would have had them impaled on spikes by way of punishment for their incompetence.'", "\n\nBellini stopped limping and stared at him, turning even paler behind his thick glasses. '", "Dead? ", "How can you be so sure, Your Excellency?' ", "Despite the fact that his master had been defrocked before they'd even met, Bellini still addressed him by his former ecclesiastical title. ", "Usberti would have preferred 'Your Holiness', but you couldn't have everything.", "\n\n'I told you, Silvano. ", "You have not had dealings with this Ben Hope, as I have. ", "He is as difficult to eradicate as a spreading tumour, and he has long been in the habit of eliminating even the most proficient men I have sent to deal with him. ", "The truth is that Scorceletti and his associates would have been lucky indeed to get the better of Hope. ", "But finding men suited to the task is not an easy prospect.'", "\n\n'Then it's a disaster. ", "What are we going to do?' ", "Bellini hesitated, watching his employer. '", "Forgive me for saying so, Excellency, but you don't seem unduly perturbed by this development.'", "\n\nUsberti smiled again. ", "He walked over to the rococo cabinet by the window and opened its ornate doors to reveal a row of crystalware. ", "Taking out a decanter and a glass, he said, 'Would you care for a small cognac, Silvano? ", "It might settle your nerves.'", "\n\n'No, thank you, Excellency. ", "It's bad for my ulcer.'", "\n\n'Shame,' Usberti said without much trace of sympathy. ", "He poured himself a drink and relished a sip. ", "On top of the cabinet rested an oblong object wrapped in damask silk. ", "Setting down his glass, he picked up the heavy item, slipped the silk covering away and held up the glinting gold bar to gaze at it in the pale sunlight from the window. ", "He caressed its smooth length, his fingers lingering over the tiny eagle and swastika stamped on its surface. ", "At one time, he'd been the proud owner of a number of genuine Nazi gold bars just like it, but this was the last one remaining in his collection. ", "He often admired it, reminiscing about the period in his life when he'd aspired to master the ancient alchemical secrets learned by Rudolf Hess in Paris in the 1920s and passed to Hitler's inner circle. ", "Usberti believed to this day that he'd come very close to attaining that incredible wisdom for himself, which would have enabled him to produce an infinite quantity of pure gold bars bearing not the Nazi emblem but the cruciform sword symbol of Gladius Domini.", "\n\nNow, he no longer needed to dream about a mountain of gold. ", "It would soon be within his reach once again, only this time in a different and unexpected form. ", "The fabled golden idol of Babylon would be his.", "\n\nNot for the first time, Usberti reflected that if that hulking imbecile Ennio Scorceletti had ever done one worthwhile thing in his life it was to have extracted from Manzini's assistant the truth about what the bitch was up to. ", "Usberti had read her books, followed her work, and for all he wanted her dead he had to concede she was a scholar of the first quality. ", "If anyone could trace the whereabouts of such an unbelievable lost treasure, it was her.", "\n\nOh, he would possess it, all right. ", "Whatever it took to get it. ", "And now, he had just the man to help him.", "\n\nUsberti replaced the gold bar in its silk wrapping on the cabinet and turned to Bellini. '", "You are right, Silvano. ", "The loss of a few insignificant goons like Scorceletti, Casini and Zenatello does not bother me in the least. ", "Forget such small fry. ", "We are ready to move to the next phase.'", "\n\n'What do you mean, Excellency?'", "\n\n'I would like you to meet someone.'", "\n\nUsberti went over to a desk and pressed the button on a small intercom console that connected him with the office on the lower floor. '", "Pierangelo, you may show our new recruit upstairs.'", "\n\nBellini raised his eyebrows. '", "This is the first I've heard of a new recruit.'", "\n\n'He arrived this morning, while you were at prayer. ", "If I did not mention him to you before now, it is because of the great difficulty I have had in locating and contacting him. ", "Now I have found him, he will be a decisive new asset to our cause.'", "\n\n'Who is he?'", "\n\nBefore Usberti could reply, there were footsteps outside the room, followed by a knock. ", "The door opened. ", "Pierangelo Volpicelli, Usberti's chief administrator and gofer, stood there with another man who was dressed all in black.", "\n\n'Thank you, Pierangelo. ", "You may leave now,' Usberti said. ", "Volpicelli walked off without a word. ", "Usberti ushered the man in black inside the room. ", "There was no greeting.", "\n\nSilvano Bellini cautiously eyed the newcomer. ", "Had the priest's vocabulary included such vernacular expressions, he might have described the man as a 'badass'. ", "He wasn't tall, and he wasn't obviously muscular, and yet everything about him exuded a quiet menace. ", "His shaven head gleamed from the razor. ", "A black goatee adorned a jaw as thick and heavy as a Rottweiler's. ", "He stood relaxed with his hands loosely curled at his sides, but Bellini sensed that the man could explode into violence in the twitch of a heartbeat.", "\n\nHe didn't like him. ", "More to the point, he was immediately and intensely afraid of him.", "\n\nUsberti smiled at his assistant's obvious trepidation. '", "Silvano, allow me to introduce our new friend. ", "His name is Bozza.'", "\n\nBellini frowned at the name. '", "But... I thought Bozza was dead.'", "\n\n'He is,' Usberti said. '", "And he is not. ", "Franco Bozza, my loyal aide for many years, the man they called \"The Inquisitor\", is indeed no longer with us. ", "He was brutally executed some years ago in the south of France, while working for me. ", "Murdered, by Benedict Hope. ", "A piece of information that I have now shared with our new friend here.'", "\n\nHe stepped to the man in black and wrapped an arm around his shoulders, beaming. ", "The man in black didn't flinch. ", "His eyes were like dark, empty pools that betrayed nothing. ", "Usberti said, 'Meet Ugo Bozza, Franco's younger brother.", "\n\n'Ugo grew up revering his elder brother,' Usberti explained. '", "But he followed a different path. ", "While Franco was rising up to become one of the most feared professional killers in Europe, Ugo struck out on his own. ", "Aged seventeen, he enlisted in the Foreign Legion, the only elite military regiment in the world that does not care what a man's background is, or his experience. ", "They care only about his toughness and his devotion, two qualities that young Ugo possessed in such impressive measure that he swiftly became one of the most formidable fighting men the Legion has ever produced. ", "He spent ten years there, perfecting the art of death beyond even the level that his elder sibling achieved, which is saying a great deal. ", "His services are much in demand all over the world. ", "He has recently returned from Bangkok, where he spent a year hunting and eliminating drug dealers – an occupation of which I strongly approve.'", "\n\nAs Usberti spoke, Bozza stood utterly still and seemed barely to be breathing. ", "This isn't a man, Bellini thought. ", "It's some kind of machine.", "\n\n'He shares many things in common with Franco,' Usberti went on. '", "His religious zeal, and his commitment to the same goals as Gladius Domini holds dear. ", "He is as motivated to punish the impure of heart, the debased, and all those who scorn God's word, as his brother was. ", "But in some other respects, he differs. ", "While Franco's primary weapon of choice was the blade, Ugo is more versatile. ", "He is expert with firearms, explosives and his bare hands, his unarmed combat form of choice being Muay Thai, in which he has reached the highest rank of proficiency. ", "He does not drink, or smoke, or seek personal wealth. ", "He is a master of destruction in its purest form, a younger, leaner, more lethal version of his brother.'", "\n\nBellini glanced at Bozza. '", "Why doesn't he speak?'", "\n\nUsberti replied, 'Ugo has taken a personal vow of silence until his brother's death is avenged. ", "Now that I have informed him of the murderer's identity, it means he will not speak until Ben Hope is dead. ", "To kill Hope is the only reward Ugo seeks in return for working with us.'", "\n\nBellini was about to reply when a movement from the window distracted him and he turned to squint through his lenses at the motor launch that was mooring up at the jetty down below. '", "They're back,' he said.", "\n\nMoments later, Groppione and Iacono presented themselves to their master on the top floor. ", "They were the two Gladius Domini agents whose job it had been to locate the Manzini woman's base in Greece, in case the others missed her at the Olympia site. ", "By working local rental agencies they'd found the property a few kilometres from the ruins, but – as Usberti had anticipated – she hadn't been there.", "\n\n'We found this,' Iacono said, holding up a bag from which he produced a small Dell laptop. '", "She had stuff encrypted on it. ", "Probably thought it was safely protected, the stupid _puttana_.'", "\n\n'But not from a professional like you, Luca,' Usberti said. '", "I assume you had no great difficulty in breaking the passcode?'", "\n\nIacono grinned. '", "Took me a whole minute. ", "Piece of cake. ", "You're going to love this, boss.'", "\n\n'Show me,' Usberti said. ", "Groppione placed the laptop on the desk, powered it up and tinkled a few keys, and moments later he had a pair of windows opened up side by side on the screen. ", "One was a digital diary, filled with carefully organised notes. ", "The other was an address book displaying a list of contacts with all the necessary details. ", "He stepped aside to let Usberti look at them.", "\n\nUsberti studied the screen, scrolled up and down to drink in the information, and his eyes glittered with satisfaction. '", "This is excellent, men. ", "Excellent. ", "It confirms, and expands most usefully upon, what we had already learned from her assistant Garrone. ", "Now that we know her exact destination, we need only ensure that we get there ahead of her. ", "The spider will spin its web and wait for the fly to stumble straight into the trap.'", "\n\n'Thought you'd be pleased, boss.'", "\n\n'You will be handsomely rewarded for your efforts, men. ", "There is food and wine awaiting you downstairs.'", "\n\nOnce the foot soldiers had filed out of the room looking forward to getting happily drunk, Usberti went over to the framed world map that covered much of one wall. ", "He pointed his right forefinger at their present location in Sicily, then slid his fingertip to the right, squeaking against the glass, until it landed on Turkey. ", "The capital city of Ankara was marked by a red blob. ", "He tapped his finger against it three times and turned with a flourish towards Silvano Bellini and Ugo Bozza.", "\n\n'Ugo, you are going on a journey. ", "Silvano, instruct Volpicelli to arrange the flight, and to contact our good Catholic allies in Istanbul who will arrange everything Ugo and an additional four-man team require on arrival. ", "No expense is to be spared. ", "We cannot afford to fail this time.'", "\n\n'Yes, Excellency.'", "\n\n'And now everything is falling into place,' Usberti said, almost rubbing his hands in glee as he walked to the window and gazed out at the Ionian Sea. '", "Before long the idol will be ours, Ben Hope will be dead, and Gladius Domini will be on its way to being restored to its former power, and more. ", "Our time is coming, gentlemen. ", "It is coming sooner than I ever dared to dream.'", "\n\n## Chapter 30\n\nThe next morning heralded another day of icy rain as Ben and Anna hurried through a simple and silent breakfast of coffee and toast in the empty restaurant, sitting at the same table they'd had dinner at the night before, with what little luggage they had packed and ready at their feet. ", "Anna was all buttoned up in her coat, but still looked cold and miserable. '", "I have to get new clothes. ", "These are ruined. ", "A hobo wouldn't wear trousers this filthy.'", "\n\n'No army surplus store in town,' he said.", "\n\n'Maybe a Versace boutique, do you think?'", "\n\n'You Italians. ", "It's like a disease.'", "\n\n'Careful.'", "\n\nAt 8.30 a relic of a Lada Niva taxicab rattled and wheezed to a halt in the street outside, and a younger, less ursine version of Kris Christakos jumped out, left the engine running and came bursting enthusiastically inside his brother's joint.", "\n\n'I am Nick,' he announced brightly, striding up to their table like the ninth cavalry coming to the rescue of these poor, helpless, stranded tourists who so badly needed his services. ", "He threw himself down in the empty seat next to Anna and showed her all his teeth in a wide grin. '", "I am mechanic. ", "I take you to your van and fix her up, okay? ", "Is no problem.'", "\n\nBen looked at him. '", "You say you can fix up the van?'", "\n\nNick grinned. '", "Sure, sure. ", "Price is two hundred euros.'", "\n\n'Sounds a little steep,' Ben said.", "\n\n'Hey. ", "You know how it is. ", "Parts are expensive. ", "You give me the money now, we go fix her up, then you go on your way to Messini. ", "Okay?'", "\n\n'Change of plan,' Ben said. '", "We're not going to Messini any longer. ", "We need to get to Thessaloniki instead. ", "Can you take us there?'", "\n\nAnna was staring at Ben, bewildered. ", "Nick was staring, too. '", "Thessaloniki is the other side of the country.'", "\n\n'I'm well aware of that,' Ben said. '", "We'll pay you for your trouble.'", "\n\n'What about your van?'", "\n\n'We'll come back for it,' Ben said. '", "Some other time.'", "\n\n'You are crazy. ", "Three days, it will be gone. ", "These kids now, they steal anything.'", "\n\n'They're welcome to it. ", "So will you drive us to Thessaloniki or not?'", "\n\nNick chewed his lip and looked doubtful. '", "Is too far, take too long. ", "I have much mechanic work to do, you know? ", "This time of year, it is most of my business.'", "\n\n'Tell you what, I'll give you five hundred euros for the ride,' Ben said, reaching into his bag and showing Nick a bundle of banknotes from his stash. '", "That's better than two hundred for the repair job.'", "\n\nNick boggled at the sight of the money and swallowed hard. '", "I would love it, but then, my customers...'\n\n'Thessaloniki is what, four hours away?' ", "Ben said. '", "You'll be gone eight. ", "I doubt whether your customers will even know you're gone.'", "\n\nNick's face was busy for a moment as he churned it over. '", "Okay. ", "I do it. ", "Give me the money first.'", "\n\n'Half now, half when we get there,' Ben said.", "\n\nNick pulled a grimace, then nodded. '", "Okay, okay.' ", "He grabbed the two-fifty from Ben's hand and stuffed it in his pocket. ", "He glanced at their bags. '", "You ready? ", "We go right now. ", "Let me go to toilet. ", "I come right back.'", "\n\n'See you in a minute,' Ben said, finishing his coffee. ", "He watched as Nick stood up and hurried off in the direction of the toilets. ", "The instant the mechanic was out of sight, Ben snatched up their bags and said to Anna, 'Let's go. ", "Quickly.'", "\n\nBefore she could reply, he was whisking her outside towards the idling taxi. ", "He tossed the bags on the back seat and clambered in behind the wheel. '", "Anna, come on.'", "\n\n'What are we doing?' ", "she asked, getting in.", "\n\n'Getting out of here as fast as we can,' he said.", "\n\n'But he's supposed to drive us. ", "You gave him money.'", "\n\n'No, I bought something from him.'", "\n\n'What?'", "\n\n'His life.' ", "Ben slammed the Lada into gear and they took off.", "\n\n'I don't understand.'", "\n\n'I'm sure Kris is an honest guy,' Ben said, skidding around the corner. '", "Decent and hardworking, like his wife and daughter. ", "But I'm not so sure the brother is as trustworthy. ", "Or, for that matter, very intelligent.'", "\n\n'How did you figure all this out?'", "\n\n'He gave himself away in the first three sentences,' Ben said. '", "When we talked to his brother last night, we told him our car had broken down. ", "I never said anything to anyone about a van, did you? ", "And yet Nick offered straight off to fix our van. ", "Not our car.'", "\n\n'Oh,' Anna said, realising.", "\n\n'That was his first mistake. ", "After that, the next test he failed was turning down five hundred euros for a few hours' drive.'", "\n\n'Why would he do that?'", "\n\nThey were heading out of town now, as fast as the old taxi would go. '", "Only one possible reason,' Ben said. '", "Because he was desperate to lead us into an ambush in the woods.'", "\n\n'It was a _trap_?'", "\n\n'It's probably all over the local news by now that the desperadoes who shot up Olympia are running loose about the countryside. ", "My guess is that our friend Nick found the van up there in the forest, saw the bullet holes, put two and two together and figured out a way to get some money out of this. ", "He's probably got an even stupider buddy waiting behind a tree with a shotgun. ", "The minute we rolled up they were aiming to nab us, rob us blind and then turn us in to the police for whatever extra reward they could get. ", "He's calling his mate right this minute, telling him there's been a change of plan so they can rendezvous somewhere else along the road. ", "Except it wouldn't work out the way they expected, because I'd have had to kill them both. ", "And I'd rather lose two hundred and fifty euros than kill anyone, even if they are brainless idiots.'", "\n\n'But when he realises we took his car, he'll call the police.'", "\n\n'And he'll tell them we're headed north-east, for Thessaloniki,' Ben said. '", "Why else would I have mentioned it?'", "\n\n'We're not going to Thessaloniki?' ", "Anna asked, confused. ", "She glanced out of the window. ", "Andritsaina was out of sight behind them and they were winding further down the woody mountain road, veering through one hairpin bend after another with all the agility Ben could coax from a worn-out Lada taxi.", "\n\n'Nowhere near,' Ben said. '", "We're going the other way, south-east to Athens, and from there to see your guy in Ankara.'", "\n\n'We'll never make it to Athens in this car. ", "The police will be searching for it.'", "\n\nBen nodded. '", "And when they find it, we'll be long gone. ", "Relax.'", "\n\nAnna said, 'Relax? ", "We're escaping in a stolen car and we're being hunted by the police and a gang of professional killers who want to kidnap me, and everywhere we go the locals are trying to trap us and rob us at gunpoint, and you say relax?'", "\n\n'Don't exaggerate.'", "\n\n'What if the police arrest us at the airport?'", "\n\n'What occupation does your passport say?'", "\n\n'Author.'", "\n\n'If they're looking for anyone specific at all, the only lead they have right now is for some unnamed history professor. ", "As long as none of the cops have read any of your books and twig the connection – and I seriously doubt these guys read much other than comic books – we'll be fine. ", "For now, at any rate.'", "\n\n'This is how you live all the time, isn't it?' ", "she asked him, arching an eyebrow. '", "This is just a normal day for you.'", "\n\n'You'll get used to it,' Ben replied. '", "In the meantime, let's concentrate on getting out of Greece as fast as possible.'", "\n\n'This isn't exactly what I would call fast,' she said, eyeing the speedometer. ", "The old Lada was struggling to reach a hundred kilometres an hour as they roared along a straight section of the mountain road.", "\n\n'The moment we spot a nice Ferrari, we'll do a switch. ", "What colour would you like?'", "\n\nThe chance for a switch came unexpectedly as they were winding down through the hills before hitting the motorway. ", "It wasn't a Ferrari, and there was little choice of colour. ", "Their new vehicle was a mud-brown, rust-speckled Ford Granada that Ben spotted in the backyard of a row of rundown cottages outside a village. ", "Nobody was about, and a barking dog was the only witness to their presence. ", "Moments later, Ben was inside the Granada and hotwiring it, to Anna's consternation.", "\n\n'I don't know if I'm comfortable with this, Ben. ", "I've never stolen a car before.'", "\n\n'You're not doing anything.'", "\n\n'I'm a witness to a criminal act.'", "\n\n'Then close your eyes. ", "In any case, we're not stealing it, we're buying it.'", "\n\nThe Ford fired up and seemed to run well enough, so true to his word he left a generous roll of cash, more than the thing was worth, on the cottage's kitchen table. ", "Which meant he first had to get inside the house, a quick and easy job.", "\n\nAnna was shaking her head. '", "Let me get this right. ", "You break into someone's home to pay them for the car you just stole?'", "\n\n'Where else can I leave the money? ", "Someone might steal it.'", "\n\n## Chapter 31\n\nThey were soon back on the motorway, speeding along in the second dodgy old car Ben had been forced to buy since landing in Greece only yesterday. ", "He wasn't sorry to be leaving the country. ", "Just over four hours later, they arrived at Athens airport. ", "By late afternoon, they were in the air, heading for Turkey.", "\n\nBut the long, frustrating journey wasn't over yet. ", "The only plane they'd been able to board at such short notice was terminating at Istanbul, making it necessary to jump on a domestic flight to take them the extra five hundred kilometres south-east to Ankara. ", "That ate up a lot more time, and until the last minute it was uncertain whether the internal flight would even depart, with adverse weather conditions and threats of severe snow in the capital.", "\n\nFinally, late that evening, they touched down in a sub-zero, white-frosted Esenboga International Airport outside Ankara, where crews were working hard to clear ice off the runways. ", "The airport was teeming with a heavy paramilitary police presence in the wake of terror bombings by Kurdish separatists, to add to the failed attempt by rogue elements in the Turkish Army to overthrow the government a few months earlier. ", "Ben and Anna filtered slowly through the scrutiny of customs, who paid close attention to the contents of Ben's battered green canvas haversack.", "\n\n'Is this a bullet hole?' ", "asked one of the officials, poking his finger through it.", "\n\n'Cigarette burn,' Ben told him. ", "Which, of course, wasn't the case. ", "The official, a dumpy little guy in what looked like a military uniform, did a lot of frowning before he finally let them through. ", "The bag would have excited him a good deal more if Ben hadn't dumped the MPX machine pistol and ammunition on a quiet mountainous stretch of their drive through Greece.", "\n\nEsenboga Airport abounded with gift boutiques, cafés and restaurants, and even featured its own dozen mosques for travellers to catch up on their prayers, but to Anna's bitter disappointment she couldn't find anywhere to buy clothes and had to endure the humiliation of wearing the same travel-stained rags as before. ", "Ben was more concerned about getting her some appropriate winter wear. ", "She was shivering with cold as they left the airport and searched for a taxi rank, but it took more than freezing temperatures to diminish her fascination for history.", "\n\n'Did you know that right here, on this very spot, more than six hundred years ago, a huge battle was fought?' ", "she said. '", "It was a bloody conflict between the Mongolian warlord Timur the Lame and the Ottoman Sultan Bayezid the First, and it achieved very little. ", "The Ottomans were defeated but would return to take back Ankara just the following year. ", "It's claimed there were more than a million soldiers on the battlefield, exactly where we're standing now.' ", "She shook her head. '", "A million men, full of hate and trying to hack each other to pieces, and all for nothing. ", "I can't even imagine what it must have been like. ", "It's so senseless. ", "What makes people want to wage war and slaughter one another like that?'", "\n\nBen ignited a Gauloise and clanged his lighter shut. '", "You mean, aside from money, power, territory and the fact that most of them were probably just doing what they were ordered? ", "You're the history expert. ", "What would I know?'", "\n\n'But you were a soldier. ", "You must surely know.'", "\n\n'War is what human beings do best,' Ben said. '", "Always has been. ", "It's what sets our species apart from all the others and until we wipe ourselves out, that's how it will always be.'", "\n\n'When you fought in wars, did you believe you were doing a good thing?'", "\n\nHe looked at her. '", "Sometimes. ", "Mostly not. ", "That's why I left.'", "\n\n'Why did you join?'", "\n\n'You know, I really don't remember.'", "\n\n'The more I study history, the more I realise what very strange creatures men are.'", "\n\n'You don't need a doctorate to work that one out,' Ben said.", "\n\nSoon afterwards, they found a solitary taxi waiting at a rank nearby. ", "The engine was running to keep the heater going, melting the snow into a pool below its steaming exhaust. ", "Anna had Ercan Kavur's address on a slip of paper, and passed it to the driver through the window. ", "The driver nodded. ", "They got in. ", "The inside of the car was stifling. '", "Hey, no smoking,' the driver complained as Ben climbed in with his Gauloise. ", "Ben replied in Turkish, 'Who are you kidding? ", "This shitbox smells like an ashtray. ", "Let's go. ", "And you can start the meter. ", "I know all the tricks.'", "\n\nCheated out of the opportunity to stiff a couple of tourists by quoting a fixed rate fare, the driver sullenly set off. ", "Ben kept glaring at him in the mirror. ", "Roguish cabbies weren't his favourite people right now.", "\n\n'I didn't know you could speak Turkish,' Anna said.", "\n\n'Just phrasebook stuff. ", "Let's hope this guy Kavur is at home tonight.'", "\n\n'Ercan doesn't get out much,' she replied. '", "He used to be married, until he became too eccentric to keep his job at the University, and his wife left him. ", "Nowadays, if he's not on a dig somewhere, which he wouldn't be at this time of the year, he spends nearly all his time in his study, translating ancient languages and deciphering old manuscripts and tablets. ", "He'll be there, I'm sure of it.'", "\n\nThe white-dusted motorway flashed by for half an hour as the taxi's wipers slapped away drifting snowflakes and the spangling expanse of city lights gradually swelled on the horizon. ", "Coming into Ankara, the taxi cut eastwards towards the centre, through streets piled at the edges with dirty brown slush. ", "They passed the Grand National Assembly building, Turkey's parliament, which had been badly hit by F16 strikes during the military coup attempt and was now half-hidden behind scaffolding as it was slowly pieced back together. ", "It hadn't been very long since tanks and troop convoys had been rolling through these same streets as the government and rebel factions struggled for power. '", "There's the Kocatepe Mosque,' Anna said, pointing out another of Ankara's landmarks with its lit-up dome and four tall towers piercing the night sky like spikes.", "\n\nErcan Kavur lived right across town on the south-eastern edge of Ankara, within an area called Dog˘ukent Caddessi, where crumbly traditional red-roofed houses intermingled with suburban high-rise developments that looked unfinished and neglected. ", "Arriving in a narrow street with houses spaced far apart and back from the road, Anna told the driver to pull up. ", "The night air seemed to have dropped another degree as they stepped out of the car. ", "Their breath fogged in the chill. ", "Snowflakes spiralled gently down to add themselves to the whiteness of the empty street.", "\n\n'That's his house there,' Anna said, pointing, as the taxi disappeared into the night. '", "I think I see the study light on. ", "What did I tell you?'", "\n\nBen glanced at the house, a squat single-storey building that looked from a distance like a concrete bunker. ", "A small area of garden in front was lined with bushes that were caked in snow. ", "A winding path led through a gate to the front door. ", "All the windows were dark except one, from which a chink of light was shining through a narrow gap in the drawn curtains.", "\n\n'I take it you've been here before,' he said.", "\n\nShe nodded. '", "After finishing with the excavations in Iraq, Ercan and I brought the pieces of the damaged Muranu tablet back here together. ", "I stayed with him for three days, during which time he showed me some of his work. ", "He's a fascinating man. ", "Dry as a rock and a little strange, but fascinating nonetheless. ", "You'll like him.'", "\n\n'A little strange how exactly?'", "\n\n'You'll soon see for yourself. ", "Let's just say that his world view goes a little bit beyond not using telephones and email.'", "\n\nIt was after midnight. ", "Anna led the way towards Ercan's gate. ", "The slab pavement was slick with frozen snow, and Ben held her arm to catch her if she slipped. ", "Italian designer shoes weren't made for this.", "\n\n'Walk on the crunchy bits,' he said.", "\n\n'I go down, we both go down,' she replied, flashing a nervous smile at him.", "\n\nBen was about to reply when he looked down, his eyes narrowed to slits and he stopped. ", "His grip tightened on her arm.", "\n\n'You say Ercan lives here all alone? ", "Doesn't get out and has no friends?'", "\n\n'Pretty much.'", "\n\nBen pointed at the path leading to the house. ", "Anna looked down where he was pointing, and her smile dropped. ", "At least four sets of footprints led from the front gate and up the path towards the front door.", "\n\n'Then his social life must have improved since you last saw him.'", "\n\nBen bent down to examine the tracks. ", "The prints were mostly overlapped and the individual sole treads hard to make out, but judging by the clearer imprints he reckoned the tracks had been made by at least four different people, rather than by just one person going back and forth. ", "The crushed snow was powdery, the impressions of the sole treads not yet frozen hard by the cold night. ", "Enough to discern that Ercan's visitors had been wearing boots with chunkier treads than regular shoes. ", "Which wasn't too much of a tell, in itself, on a cold and snowy night. ", "Then again, as Ben knew well, a good solid pair of boots were good for other things than walking. ", "That was why soldiers wore them, and assault teams who might have to kick down doors and get a little rough.", "\n\nOne of the sets of prints was unlike the others. ", "Shoes, not boots. ", "Making sloppy drag marks, like the footsteps of someone too drunk to walk steadily and needing to be supported. ", "The tyre tracks that curved away from the kerb and merged with the fresh ones just made by the taxicab explained where Ercan's visitors had gone.", "\n\nAnna was reaching the same disturbing conclusion Ben was. '", "Someone's been here before us,' she said, looking at him anxiously.", "\n\n'And not long ago, or they'd be covered by fresh snowfall.'", "\n\n'Ben, you don't think—?'", "\n\nBen walked up to the front entrance. ", "The door was reinforced, set into a steel frame that made it as strong as concrete. ", "To the right of the door was a panel with keypad and an intercom speaker behind a grille. ", "A wall-mounted camera stood guard over the doorway, its red power light blinking at them.", "\n\n'I thought you said he hated technology,' Ben said as Anna caught up with him.", "\n\n'Only when it's for communication,' she replied. '", "Not when it's for security. ", "I told you, he's a very cautious man.'", "\n\nBut not cautious enough to keep his front door shut. ", "It was hanging ajar by half an inch. ", "Ben gave it a shove and it swung a quarter open on its reinforced hinges. ", "It was a beefed-up security door, welded steel like the entrance to a bank vault. ", "It would have needed some kind of serious dedicated door-breaching munitions to take out the lock, but there wasn't a scratch to suggest forced entry. ", "Whoever they were, the four booted visitors who'd called earlier that night hadn't had a hard time getting inside.", "\n\nNo sound, no movement from within. ", "The house felt empty. ", "But there was only one way to find out for sure.", "\n\nBen put his finger to his lips, telling Anna, 'Quiet', then held the finger up to signal, 'Wait here.'", "\n\nBen eased the heavy door open the rest of the way and stepped inside the dark silence of Ercan Kavur's house.", "\n\n## Chapter 32\n\nIn that vulnerable moment when the eyes need time to adapt to the darkness and the other senses step protectively in to provide the missing data, Ben stopped, set down his bag and stood completely still, as alert as a wild animal tuned into the tiniest sound, even a scent, that could alert it to danger. ", "He could hear nothing.", "\n\nAs the darkness began to resolve itself into distinct shapes and shadows, he moved on deeper into the house. ", "The small entrance hall was cold from the open door, but not freezing, telling him that the door hadn't been lying ajar all that long. ", "The hallway extended into a long, narrow corridor that passed through the middle of the building and was sectioned off by first one heavy glass interior door, then a second.", "\n\nIt was an unusual layout, but Ben didn't have time to dwell on that now. ", "Other doors radiated off left and right, leading to rooms that he checked one by one. ", "For a few moments he experienced a strange sense of déjà vu, like a replay of entering Carlo Scanzi's office in Florence, and he half expected to find a dead body slumped across the floor, bled out from a slashed throat like Anna's agent. ", "Or a sudden violent attack from multiple armed intruders. ", "Ben's whole body was jangling into full-on combat mode, ready to explode into action any instant and inflict serious damage on anything that moved.", "\n\nThe inside of the house was warm and smelled closed up, with aromas of stale cigarette smoke and cooking oil and spices that all but smothered an unpleasantly familiar background chemical tang lingering in the air which Ben couldn't quite put his finger on. ", "Daring to risk a little light, he dug his torch from the bag on his shoulder and flashed it around him. ", "It wasn't a big house. ", "In the ninety seconds that it took him to sweep its half-dozen rooms he found no mutilated corpses, and no lurking intruders either.", "\n\nBut he did find the obvious signs of a struggle in the spare bedroom that Kavur had converted into a chaotically cluttered study. ", "The overturned chair and the upset desk lamp, lying on its side in a sea of scattered papers and books, told him that Kavur had been deep in his work when his first set of unexpected visitors that night had turned up.", "\n\nAnd now Ben understood what that odd, lingering chemical odour was, because he could smell it loud and clear inside the small study. ", "The same type of alcohol-based sedative that Anna's would-be kidnappers had intended to use on her in Olympia. ", "This time around, the snatch had been successful. ", "That explained the dragging footprints in the snow outside. ", "Kavur had been dragged semi-conscious from the house and bundled into a waiting vehicle.", "\n\n'Someone was here, all right,' Ben said when he went back to bring Anna inside and retrieve his bag. '", "Been and gone. ", "And your friend with them.'", "\n\nHe shut the door and flipped the hallway light switch. ", "Decor-wise, Kavur's home was as drearily and unimaginatively furnished as might be expected of a reclusive single guy with no interests outside of his work. ", "Except now that it was all brightly lit up, Ben could see a few unusual details about the place. ", "The heavy glass doors that divided the corridor into sections were internal security doors with sophisticated electronic locks and full-height mesh-reinforced panes, probably capable of deflecting a rifle round. ", "The doors off the corridor were set into metal frames and likewise fitted with combination keypads. ", "The alarm system master control panel in the front hall near the door could have belonged in a high-security prison.", "\n\n'Who took him?' ", "Anna asked, eyes darting nervously about as though Kavur might still be hiding in a recess, waiting to jump out and surprise them.", "\n\n'You want to hazard a guess?'", "\n\n'But how did they know where to find him?'", "\n\n'And why did he let them in?' ", "Ben added. '", "Doesn't it strike you as strange that a guy who obviously hasn't spared any expense when it comes to security would just open the door to a bunch of kidnappers?'", "\n\n'Speaking of security –' Anna flipped open a cover on the master control panel by the door. '", "July twentieth, 356 BC,' she muttered to herself as she tapped in a code with a polished red fingernail.", "\n\n'You seem to know your way around,' Ben commented.", "\n\n'That's an easy one to remember, for a historian. ", "It's the birth date of Alexander the Great.'", "\n\n'Of course.'", "\n\nAnna pointed at the alarm system. '", "Now we're safe in here. ", "Windows and doors are sealed and the electrified perimeter circuit is armed, but none of the internal security devices, like the pepper blaster, will activate. ", "That was the first thing I made Ercan show me when I was here, in case I set it off by mistake.'", "\n\nBen stared at her. '", "Electrified perimeter? ", "Pepper blaster?'", "\n\n'He was left some money by a rich relative. ", "Rather than buy a house in a better part of town, he spent most of it on turning this place into a fortress. ", "You have to disarm the system every time you open the front or back doors, or you can get an electric shock from the handles. ", "And those –' She pointed upwards at a small nozzle that pointed down at them from a ceiling light fitting. ", "Ben noticed three more of them poking discreetly from elsewhere overhead. '", "Those will spray liquid pepper at any intruder who sets off the motion sensor. ", "And you see those vents on the wall? ", "An infrared tripwire triggers a fog device that fills the whole hallway so you can't see.'", "\n\n'Which you couldn't anyway, if your eyes were full of pepper spray.'", "\n\n'Those are just some of the modifications Ercan has made. ", "Even the windows can withstand bullets.'", "\n\n'You told me he was a little strange,' Ben said. '", "I wouldn't say that at all.'", "\n\n'No?'", "\n\n'He's a raving paranoid headcase.'", "\n\n'It's not paranoia if they're really after you,' Anna said.", "\n\n'Hasn't done him much good. ", "They got in and grabbed him as easily as falling off a log.'", "\n\n'So it seems, and I don't understand it,' Anna said, anxiously chewing her lip. '", "What can have happened? ", "Oh my God, I hope he's all right.'", "\n\n'We'll worry about that later. ", "For the moment, let's make sure that we are. ", "Given that your friend is so obsessive about security, any chance he keeps a firearm around the place? ", "Any kind will do.'", "\n\n'No, Ercan hates guns. ", "He believes they're responsible for war and violence.'", "\n\n'That's logical. ", "Did those million Mongolians and Ottomans all fight with guns at the Battle of Ankara six hundred years ago?'", "\n\nShe shrugged. '", "I guess he hates swords and spears and arrows too.'", "\n\nBen grunted. '", "Never mind. ", "I'm sure he has plenty of lethal weapons in his kitchen, like normal people do.'", "\n\nHe returned to the tiny kitchen. ", "Pots and pans and plates were stacked all over the place. ", "He jerked open a drawer, found a carving knife and tucked it diagonally through his belt, pirate-style. '", "If you can't have a gun, you can still have an edge,' he said to Anna, who was staring at him. ", "He could see she was on the edge of panic. ", "He touched her arm and felt the rigidity of her muscles through the sleeve of her coat.", "\n\n'Where could they have taken him?' ", "she groaned. '", "What could they want with him?'", "\n\n'I can't answer the first question,' Ben told her. '", "And you already know the answer to the second. ", "Whatever he discovered and was going to tell you that was so important, it's important to Usberti as well. ", "They took him away to work on him.'", "\n\nHe regretted that last part the moment he said it. ", "It was a little more information than Anna could handle. ", "But it was out now, and too late to retract it.", "\n\n' _Work on him?_ '", "\n\n'Like they did to Gianni. ", "Whatever it takes to get them to open up.'", "\n\n'Will they torture him?' ", "she blurted, horrified. '", "Kill him? ", "Ben? ", "Answer me.'", "\n\nHe said no more, deciding to keep his thoughts to himself. ", "Such as the fact that he sensed something not quite right about the situation. ", "This was a solidly built house, with thick walls, extremely efficiently sound-insulated by so many layers of security doors and well detached from the nearest neighbour. ", "If you wanted to tie a guy up and torture information out of him, you'd have all the privacy you needed right here on the spot, and plenty of time to get your victim to spill whatever information you were after.", "\n\nSo why, in fact, had they taken Kavur away? ", "That was another question Ben couldn't fully answer – and not knowing was triggering his trusted sixth sense for danger and making him feel unsettled.", "\n\n'Now we're here, let's stay calm and have a look at what we came to see,' he said after a few moments. ", "He led her up the corridor, through the first security door, and to the room on the right which was Kavur's study.", "\n\n'Look at this place,' Anna breathed when she saw the state it was in.", "\n\n'This is where they took him,' Ben said. '", "Seems he put up quite a struggle before they doped him. ", "Now, we don't want to stay here any longer than we have to, so show me what's what.'", "\n\nShe pointed at a framed picture that was hanging away from the wall on a hinge. '", "That's where he was keeping the pieces of the tablet.'", "\n\n'The old hidden wall safe,' Ben said. '", "Not the most original hiding place.' ", "It was the size of a shoebox and inset in a rectangular hole in the plasterwork, with a small combination panel built into its half-inch steel door. ", "The door was open. ", "Ben peered inside. ", "Empty, naturally.", "\n\n'They took the tablet fragments,' she said.", "\n\n'They seem to know a lot, don't they?'", "\n\nAs Anna stared helplessly around the wrecked study, Ben went to the window and tugged at the edge of the drawn curtain to take a look at the empty, snowy street outside. ", "The uneasy feeling nagging at him kept intensifying as the minutes ticked by.", "\n\n'Wait,' Anna said. '", "Of course. ", "The document safe. ", "That's where he would have hidden whatever he had to tell me about.'", "\n\n'I hope it's in a better place than the first one.'", "\n\n'Under the floorboards, somewhere about there,' she said, pointing down at the large sheepskin rug that covered most of the floor. '", "Can you help me? ", "We have to shift the desk to get to it.'", "\n\nShe removed her coat and laid it neatly over the back of an armchair. ", "Ben was too warm inside the house but kept his leather jacket on. ", "He went over to the desk and hooked his fingers under it to test its weight. ", "It would be considerably lighter without the piled stacks of archaeology books and papers that littered its surface. ", "He swept them to the floor with a crash. ", "The place was a mess anyway.", "\n\n'Careful. ", "Some of those books are rare and valuable.'", "\n\n'I think Ercan has bigger problems right now than a couple of dented books,' Ben said. ", "He heaved the desk aside, crouched down and pulled away the corner of the rug. ", "The boards under it had been sawn to make a square trapdoor about two feet across. ", "Ben used the carving knife to prise it up, revealing the upward-facing grey steel door of the floor safe.", "\n\n'Locked,' Anna said with grim satisfaction. '", "They wouldn't have thought to look here.'", "\n\n'Or they drugged him up before he could tell them about it. ", "Either way, unless you have a crowbar in your handbag we're going to need a key to get into this thing.'", "\n\n'Kitchen,' she said. ", "Ben followed as she hurried from the study, turned right, darted further up the corridor, heaved her way through the second glass door with a small grunt, then entered the room on the left. ", "As he joined her she was bent down by Kavur's fridge and entering a code to unlock it. ", "The kitchen was tiny, with a small table and a single chair shoehorned in between worktops and cupboards. ", "The back door was another high-security affair. ", "As, it seemed, was at least one of Ercan Kavur's appliances.", "\n\n'Don't tell me,' he muttered. '", "The fridge squirts poison gas at anyone who tries to pinch Ercan's beer.'", "\n\n'Ercan doesn't drink beer, he's a Muslim.' ", "Anna opened the fridge door, slid open one of the plastic compartments at the bottom and took out a large iceberg lettuce. ", "Before Ben was able to make comment, she turned it upside down and he saw that it was actually a convincing resin fake, hollowed to contain a small key safe with another press-button number pad.", "\n\n'Mail order from the paranoid shop,' Ben said.", "\n\n'Fourteen fifty-three. ", "Fall of the Roman and Byzantine Empires with the conquest of Constantinople by the Ottomans under Mehmed the Conqueror.' ", "Anna tapped in the number, and the hidden compartment flipped open to let a key drop into her palm.", "\n\n'You need a damn good memory to live in this place.'", "\n\n'The code to get inside the document safe is the most important of all,' Anna said. '", "Ercan wanted me to know it, in case anything happened to him. ", "He suffers from a lot of medical conditions, most of them probably psychosomatic, and has always believed he could die at any minute.'", "\n\n'This gets better and better,' Ben said. '", "What friends you have.'", "\n\n'But neither he nor I could have predicted what's happened to him now.'", "\n\nBen took the key from her hand. '", "Let's go and find out what he had to tell you.'", "\n\n## Chapter 33\n\nBack in the study, Ben crouched by the trapdoor, unlocked the floor safe and hauled open the heavy steel door. ", "It wasn't booby-trapped. ", "Standing anxiously over him, Anna let out a gasp of relief when she saw the stacks of papers inside. ' _", "Grazie a Dio!_ '", "\n\nBen lifted out the entire contents of the safe and dumped them on the floor. ", "Anna fell on her knees next to him to start sifting through the heap. ", "The papers were a mixture of photocopied images of ancient carvings, stone tablets and other relics, and loose sheets covered in handwritten scribbles made up from an alphabet that didn't look to Ben like any modern language. ", "It wasn't Arabic, nor did it much resemble the ancient Hebrew or Aramaic script that he'd laboured to comprehend as a student at Oxford, way back in another life.", "\n\n'Old Anatolian Turkish,' she explained. '", "Not used since the fifteenth century. ", "Ercan uses it as a kind of code for all his written notes. ", "He works the same way as I do, recording everything he does in a kind of diary form for later reference. ", "Except, of course, my notes are all in Italian.'", "\n\n'And you can read this?'", "\n\n'Not as well as he can, but I can get by,' she said. '", "I've spent some time studying a variety of these ancient languages.' ", "From her handbag she snatched a leather spectacle case with PRADA emblazoned across it. ", "Putting on a pair of designer glasses that only emphasised the perfection of her eyes and cheekbones, and smoothing her long black hair away from her face, she took a thick handful of the handwritten notes to the desk and began to study them intently under the light of the lamp, flicking from one sheet to another.", "\n\nBen had never much relished the chore of poring over ancient languages during his theology days, and he disliked codes and ciphers even more. ", "Watching Anna bent over the desk, totally absorbed in her work, the memory flashed through his mind of the fiendish code he'd had to crack years earlier at the height of his running chase with Usberti's hired killers in the Languedoc region of southern France. ", "It had been the same sultry, summer night that Anna had been attacked in her villa by the near-indestructible Franco Bozza, who would have carved her into pieces if Ben hadn't raced to the scene when he had. ", "Holed up in a hotel suite later that night with Roberta Ryder fast asleep nearby, he'd struggled deep into the early hours to decipher a set of maddeningly cryptic alchemical riddles and number puzzles that had almost driven him over the edge. ", "Ercan Kavur's scribbles didn't seem any less impenetrable to him. ", "He was glad that Anna was here to figure them out.", "\n\nLetting her get on with the task, he returned to the window for another check of the street outside. ", "More snow clouds were gathering in the sky. ", "Thick flakes were drifting down in spirals that caught the glow of the streetlights like swirling haloes. ", "The footprint tracks on the path were slowly disappearing under a fresh layer of white. ", "A lone car hissed by on the snowy road, taking it slow and easy in the slippery conditions.", "\n\n'This is strange,' Anna muttered from the desk.", "\n\n'Make anything of it?' ", "he asked, glancing over.", "\n\nShe shook her head, not looking up from the papers she'd carefully arranged on the desktop. '", "I thought Ercan was working on the Muranu tablet, but instead he seems to have been going into a whole other set of historical archives. ", "Nearly all this material is sourced from the PFA.'", "\n\n'The what?'", "\n\n'The Persepolis Fortification Archive,' Anna explained, fluttering a sheet of paper at him as though scolding him for not being informed on such elementary stuff.", "\n\n'That makes everything so clear to me.'", "\n\nShe frowned. '", "Persepolis, literally \"City of the Persians\", was the seat of the Achaemenid Empire in what is now Iran, founded in 518 BC by Darius the First, grandson of Cyrus the Great who overthrew Babylon. ", "The archive was set up in 1933 after a team of archaeologists from the Oriental Institute of the University of Chicago, who were excavating the ruins of palaces of the Persian kings, came across a fantastic cache of clay tablets hidden in two rooms in a bastion of a fortification wall. ", "Hence its name, the Fortification Archive.'", "\n\nMore excavations, more tablets. ", "Ben was scarcely in the mood for another lecture on the history of archaeology. '", "I get it. ", "Or maybe I don't. ", "What about it?'", "\n\n'They found tens of thousands of tablets, which to this day haven't all been deciphered. ", "It's a monumental task that will take many more years to complete. ", "The archive mostly comprises administrative and bureaucratic records dealing with matters of local government, transport, trade, food distribution and so on. ", "It's been a really important source of our knowledge of everyday life during the Achaemenid period.'", "\n\n'I'm sure that's all spellbindingly fascinating,' Ben said, 'but I fail to see what it has to do with us.'", "\n\n'So do I, frankly,' Anna replied, frowning back at the sheet of paper in her hand. '", "This comes as a complete surprise to me. ", "It's as if Ercan had taken a totally different tack.'", "\n\n'He did say that the tablet fragments were too badly damaged to work with,' Ben reminded her. '", "Maybe he just gave up on them altogether.'", "\n\nShe nodded, looking even more mystified. '", "That would fit with what he told me.'", "\n\n'Or else this is something entirely different he was working on,' Ben said. '", "Nothing to do with your Muranus or your Babylon idol at all.'", "\n\n'Quiet. ", "Let me read this.'", "\n\n'Fine, but don't take too long.'", "\n\nShe fell back into a concentrated silence as she went on examining the notes. ", "Ben struck up another Gauloise, wondering whether maybe Ercan had smoke detectors built into the place that would drench him with water. ", "Nothing happened, but Ben was more and more on edge. ", "He wanted to get out of this place.", "\n\n'I think I understand,' Anna suddenly exclaimed. '", "This is amazing. ", "This is it. ", "This will lead us to the next step.'", "\n\nBen asked, 'What next step?'", "\n\nBut before she had time to explain what she'd found, he heard the sound of engines outside. ", "He snapped back around to peer out once again through the crack in the curtains.", "\n\nOncoming headlights made him blink. ", "Four of them, carving beams through the thickening snow. ", "A pair of vehicles approaching fast. ", "Unusually fast, for the slippery road conditions. ", "Heading for the house. ", "The one in front was a big, boxy Volvo SUV. ", "Behind it was a muscular black Audi saloon. ", "Both cars slithered to a halt outside Kavur's front gate. ", "Their lights went dark.", "\n\n'We have company,' Ben said quietly.", "\n\nAnna looked up from the desk, startled, plucking off her reading glasses. '", "Let's get out of here!'", "\n\n'Too late for that now,' Ben said, watching. ", "Two men jumped from each vehicle and gathered in a group in the empty street. ", "And one thing was for sure: they weren't stopping by for a friendly social call.", "\n\nThe briefest glimpse of them was all Ben's trained eye needed to take in every detail. ", "They were dressed in black like a tactical raid team, which was exactly what they appeared to be. ", "Their faces covered by goggles and gas respirator masks. ", "The same combat boots on their feet that had made the earlier tracks in the snow, tactical combat gloves on their hands. ", "They knew how to move, fluid and fast, especially the one whose obvious command over the others singled him out as the leader.", "\n\nHe wasn't tall, wasn't muscular, but he exuded power and authority and confident expertise in just the same way as a thousand top-level operatives Ben had seen, known and worked with in the past. ", "This guy was a soldier, or had been.", "\n\nFrom their equipment, he and the others could have passed for a Turkish police SWAT team. ", "The leader and one other man were armed with stubby 9mm automatic carbines fitted with tactical lights. ", "The third was armed with a full-size assault rifle bombed up with a grenade launcher attachment that Ben guessed from the masks was loaded with tear gas. ", "The fourth was what military close quarter battle teams designated as the breacher. ", "His weapon was a radically cut-down shotgun with a jagged muzzle attachment designed to be pressed hard against a lock or hinge. ", "Special frangible door-busting ammunition would blow through just about anything that stood in the assault team's path. ", "Ben had gone through plenty of doors that way, back in olden times.", "\n\nThe leader signalled the breacher to lead the way to the house. ", "They hurried in long, purposeful strides towards the door, boots crunching on the fresh snow. ", "Ben slipped the knife out from his belt. ", "Now he understood what his sixth sense had been telling him all this time.", "\n\nUsberti's men had returned in full force. ", "Except it wasn't strictly a return – because the fact was, they'd never really left. ", "It was the answer to the question why they'd taken Ercan Kavur away: to leave an empty house as bait for their real targets to be lured inside, to feel safe and let their guard down while the assault team waited and watched somewhere nearby, preparing to come back and catch them unawares.", "\n\nIt was a carefully considered move, tactically speaking. ", "The team could have been lurking hidden inside the house to surprise them on arrival, but they knew who Ben was and what he was capable of. ", "They knew, or had been instructed, that a man like him wouldn't walk into an ambush unprepared. ", "They knew, or had been warned, that there would have been a fight. ", "Ben was a dangerous threat to be eliminated, but Anna Manzini was a precious asset to the employer. ", "She could have been hurt, or killed, or escaped. ", "Their orders were not to let any of those things happen, under any circumstances.", "\n\nAnd it was a strategy that begged too many questions for Ben's liking. ", "The enemy had known he and Anna were coming here. ", "Usberti was cunning, but he wasn't a mind reader. ", "How could he have predicted their moves so well?", "\n\nAnswers might come later, or they might not. ", "Either way, the trap was sprung.", "\n\nAnd Ben and Anna were caught right in it like a couple of rats.", "\n\n## Chapter 34\n\nTrapped inside a strange house, on unfamiliar ground with little sense of the lie of the land, unarmed except for a kitchen knife, with four heavily tooled-up professional thugs about to attack at any moment and a matter of seconds in which to figure out a contingency plan. ", "Ben had been in similar scrapes before now, and survived. ", "But it wasn't something to make a habit of.", "\n\nThen again, Ercan Kavur's home was not the typical middle-class suburban residence.", "\n\nBen jumped over to the desk and turned off the lamp, plunging the study into darkness. ", "Too late. ", "The attackers already knew which room their targets were in. ", "Through the window he saw the lithe figure of the team leader signal to the one with the grenade launcher, who planted himself on the patch of lawn in front of the house, braced himself and fired straight at the study window with a loud report that Kavur's thick security glass muffled to a WHOOMPH.", "\n\nBen instinctively dived away from the window, grabbing Anna and yanking her down to the floor. ", "If the grenade was high explosive, they were both dead anyway; but if his guess was right and the assault team were using tear gas, he'd have to try to get to the study door in time to escape the worst of it.", "\n\nThe juddering impact seemed to shake the whole house as the grenade whacked into the glass. ", "A normal window would have shattered into a million fragments that would have covered Ben and Anna's prone bodies like an ice storm, but Ercan Kavur's home improvements paid off. ", "Instead of smashing through the window the missile just bounced off.", "\n\nOnce, while training on a pistol shooting range, Ben had been hit square in the chest by a forty-calibre slug that had bounced straight back at him from a steel plate target and left him shaken and bruised. ", "These things happened, time to time. ", "Up on his feet instantly, still clutching Anna's arm, Ben saw the grenade rebound towards the shooter who had launched it, catch him right in the face and knock him off his feet with his visor cracked. ", "The grenade dropped to the ground next to him, blowing out a pressurised stream of CS gas that billowed and dispersed into the night air. ", "The team leader quickly kicked the grenade away and it rolled harmlessly into the bushes. ", "The fallen guy jumped back up, ripped off his damaged mask and threw it away in disgust.", "\n\nThe assault hadn't started well, but the team now wasted no time to move on with the next phase of the attack, to get inside. ", "That was when the fun would begin.", "\n\n'Time to leave,' Ben said. ", "He snatched up his bag and slung it over his shoulder, reached down and pulled Anna sharply to her feet.", "\n\n'The papers—' she began.", "\n\n'Leave them.' ", "He hauled her towards the study door. ", "There was no time to grab her coat or handbag, either. ", "The electrified perimeter might deter a casual burglar but it wasn't going to be an obstacle to these guys. ", "As Ben wrenched open the door he heard the explosive BLAM of the breaching shotgun taking out the lock on the front entrance.", "\n\nThen they were in.", "\n\nAt the instant that Ben emerged from the study and bounded into the corridor, knife in one hand and Anna's arm clutched in the other, the front door crashed open. ", "Through the reinforced glass of the security door separating them he saw the four men burst into the hallway. ", "Their boots were rimed with snow. ", "Weapons pointing. ", "The leader was first in, carbine at the hip, finger on trigger, eyes glinting behind his visor, moving with a fluid violence that looked as if he lived for these moments.", "\n\nNext, three things happened. ", "First, the alarm system activated a whooping, shrilling siren that filled the house. ", "Second, as the invaders charged into the breached hallway, they were met with streams of vapour that shot like smoke from the wall vents either side of them, instantly engulfing them in thick fog. ", "Third, the overhead nozzles built into the light fittings went into action, scooshing jets of red fluid downwards into the impenetrable mist. ", "It looked like blood, or brake fluid, but it was neither.", "\n\nWith gas masks on, the three men still wearing them were protected from the pepper blasters that would have reduced any normal intruders into an incapacitated jelly, and they pushed on blindly through the fog to make it to the first glass door a few paces in front of them. ", "The guy who had torn off his damaged mask didn't fare as well. ", "From the muffled scream that Ben heard through the security glass, it was obvious that Ercan Kavur's pepper spray must be the proper undiluted tactical capsaicin agent that would put the most determined attacker out of action for a good half-hour, and not the attenuated dilution for sale to civilians in those few countries where governments still trusted citizens to defend life and property. ", "The guy wouldn't be much of a threat for a while.", "\n\nBen had to smile. ", "Round two to Kavur and his home improvements.", "\n\nThe leader never even glanced back at his fallen man. ", "First to reach the security door, he shouldered and kicked and beat it with his gloved fist, but the alarm system had sent it into lockdown mode. ", "In a fury he motioned to the breacher to take out the lock. ", "The breacher stepped forward, jacked another round into the chamber of his shotgun, jammed the jagged muzzle tight up below the door handle, pulled the trigger, and BOOM, they were through. ", "First came the leader, then the breacher, then the third guy dragging their incapacitated comrade out of the smoke and dumping him on the floor, where he lay writhing and rubbing his eyes as if they were on fire.", "\n\nBy then, Ben and Anna were already through the second glass door, Anna frantically punching in the four-digit code from memory to override the lockdown mode long enough for them to dart through and slam it shut behind them. ", "The electronic lock reactivated on closing with a solid clunk, audible over the screech of the alarm siren.", "\n\nThe leader sprinted towards them and slid to a halt as the second door blocked his way. ", "He ripped off his goggles and respirator.", "\n\nBen had been about to hurry on, but he held back. ", "He and the man were just feet apart, almost close enough to reach out and touch if the security glass hadn't separated them.", "\n\nThe man's eyes seemed to bore into Ben's.", "\n\nBen stared back.", "\n\n## Chapter 35\n\nBen was good with faces. ", "Never forgot one, and certainly wouldn't have forgotten this one. ", "He was certain he'd never met, or seen, this guy before in his life. ", "Yet, as he lingered for a moment that seemed suspended in time, he experienced the strangest feeling of semi-recognition. ", "It wasn't the facial features themselves – the shaven head, the solid cheekbones, the square heavy jaw behind the goatee beard.", "\n\nNo, it was the eyes. ", "They were like the eyes of a shark watching him. ", "Dull, lifeless, yet filled with such an intensity of inhuman hatred that Ben had only ever seen once before on a man's face.", "\n\nThat man was dead. ", "Ben had seen him die. ", "And yet—\n\nThen the moment was over. ", "The man's lips curled into a kind of snarl and he raised his weapon and loosed a fully automatic burst of gunfire at his side of the security door. ", "He disappeared from sight as the reinforced glass became an opaque web of cracks.", "\n\nBen turned away from the door, took Anna's hand and they ran away down the corridor.", "\n\n'That man—' Anna gasped as they hurried on. ", "It seemed to Ben that she had more to say, but there was no time for conversation. ", "The attackers would be through the second door in moments.", "\n\nBen and Anna sprinted for the kitchen. ", "Her shoes weren't made for running and she stumbled and almost fell. ", "They burst inside the kitchen, past the table and chair, and to the back door.", "\n\n'I hope you know this combination too,' Ben said, pointing at the panel on the wall. '", "Or this is going to be a very short escape.' ", "She nodded and started tapping in a number with a shaking hand. ", "Just as she finished entering the code there was a muffled blast behind them as the breaching shotgun took out the second security door.", "\n\n'There,' she said.", "\n\nBen kicked open the back door and the cold night air rushed in. ", "The temperature outside seemed to have dropped several more degrees. ", "He pushed Anna out of the door, then followed, slamming the door behind him. ", "There were two steps down to a path that wound back around the side of the house towards the front. ", "The flagstones were covered in two inches of fresh snow over a layer of ice. ", "Anna slipped and went down on her side with a cry. ", "Ben scooped her up and got her back on her feet. ", "Her flimsy blouse was wet and clinging to her skin where she'd fallen. ", "No time to stop and ask her if she was hurt. ", "A security light flashed on as they ran, illuminating them like a floodlamp shining on a pair of escaping prison inmates. ", "Their pursuers would be out of the house in seconds.", "\n\nNow Ben and Anna were racing around the corner to the front of the property, down the driveway, towards the gate, slithering on the ice, their breath fogging in huge clouds. ", "Lights were coming on in neighbouring houses as residents became alarmed at the commotion. ", "Faces were peeking through curtains. ", "Nobody would dare venture outside, but someone would be bound to have called the cops. ", "The police might already be on their way, a complication that Ben pushed to the back of his mind as he ran through the gate and into the empty street.", "\n\nSlabs of fresh snow had layered the roofs and bonnets and windscreens of the Volvo and the Audi. ", "Ben's eye landed on the big SUV and he thought, _Kavur_. ", "It was the kind of car in which a drugged-up kidnap victim could be bundled in the back. ", "He let go of Anna and wrenched open the tailgate, but the cavernous boot was empty.", "\n\nBig it might be, and built like a Sherman tank, but the Volvo was the slower car compared to the Audi, and speed was what Ben wanted. ", "He ran to the saloon. ", "The driver's door was open. ", "No key dangling from the ignition. ", "His guts gave a twist of panic, but then he noticed the keyless start button and the fob lying in a moulded recess in the centre console. ", "He shoved a foot inside the footwell, pressed the brake and touched the button and the engine instantly powered into life. ", "He hurled his bag onto the back seats. ", "Flicked on the lights and wipers. ", "The frozen blades juddered, then sprang free and sliced away the brittle layer of snow on the glass.", "\n\nAnna hovered uncertainly nearby, as if paralysed by the bitter cold. ", "Ben pointed at the passenger side and ordered her to get in, and his sharp command spurred her back into life. ", "As she scurried to the passenger side, she was looking fearfully at him as if to say, _What are you doing?_", "\n\nBen leaped back towards the Volvo. ", "The dirty tyre tracks in the snow were already beginning to freeze over into hard ruts. ", "He knelt behind the big boxy rear of the car. ", "Clumps of snow were clinging to its wheels. ", "He planted the tip of the carving knife horizontally against the sidewall of a rear tyre, and used the heel of his left hand on the handle to punch the blade through the rubber. ", "When they did it in the movies, the tyre burst in a spectacular explosion. ", "In real life it just gasped a loud hiss of bad-smelling air and the Volvo sank down at one corner.", "\n\nBen was about to do the same with the other rear wheel when he heard Anna's panicked voice from the Audi, screaming his name. ", "He looked up and saw the three armed men charging around the corner, sprinting across the garden for the gate. ", "The leader was in front, his boots pounding the frozen ground as he ran like a madman, his gun raised to the shoulder, eyes darting from side to side, hunting for his escaping targets.", "\n\nBen leaped to his feet. ", "Head low, he covered the few steps to the Audi in two leaps. ", "The leader saw him and opened fire. ", "The sharp _rat-a-rat-tat_ cut through the silence of the empty street. ", "Bullets chittered off the Audi's bodywork. ", "Ben reached the driver's door, ripped it open and threw himself inside. ", "Anna was saying something, but her words were coming out in a terrified gargle.", "\n\nThe men were racing closer. ", "More gunshots raked across the Audi's windscreen. ", "The left side-door mirror burst apart as a bullet smashed into it. ", "Anna screamed. ", "Ben pressed a hand against her shoulder and forced her roughly down into the passenger footwell. ", "He rammed the stick into drive and stamped down hard on the gas, and the Audi's wheels spun with a tortured scream as it leaped forwards.", "\n\nSteering with one hand and pressing Anna down with the other he aimed the nose of the car at the oncoming attackers and hammered the wheels up onto the snowy kerb straight at them. ", "The Audi absorbed a dozen more snapping gunshots before the three men scattered out of his path. ", "One slipped on the ice and went down in his haste to avoid being run over. ", "Ben swerved away from the gateway and accelerated along the pavement, scraping past the parked Volvo. ", "Swerved again, bumping down off the kerb and onto the road and booting as much power as he could force from the Audi's screaming engine as the wheels bit down on the slippery surface and he sped fishtailing away from the scene. ", "A glance in his remaining mirror told him the three men were piling into the Volvo. ", "The leader was getting behind the wheel. ", "Its headlights flared into life and it took off in pursuit.", "\n\nThe chase had only just begun.", "\n\n## Chapter 36\n\nBen had a start on their pursuers, but it was only a tenuous one and he intended to widen the gap as fast as he could. ", "The worsening weather conditions weren't going to make that easy. ", "It was turning into a blizzard out there and the driving snow was splatting the windscreen faster than the wipers could bat it away. ", "What little he could see of the road as he sped down the street was a blanket of virgin white, drifting up against the edges of the kerbs and mounding on the roofs of parked cars.", "\n\nThe street on which Ercan Kavur lived was long and narrow, lined with a clutter of dilapidated houses and apartment buildings. ", "By the time Ben reached the end of the street, he was going over eighty kilometres an hour. ", "Much too fast for the conditions but the glare of the Volvo's headlights filling the cabin of the Audi pushed him on faster. ", "The SUV should have been crippled by its punctured tyre but its driver was coming after them like a madman, wallowing and skidding all over the road in their wake. ", "If Ben slowed down, it would be right on their tail.", "\n\nShots cracked out. ", "The Volvo's passengers were hanging out of its open windows, firing at the speeding Audi. ", "Their aim was wild but they could get lucky. ", "The Audi's rear window blew out and a bullet punched through the back of the passenger seat. ", "Now that they had Ercan Kavur, maybe they were no longer as concerned about keeping Anna Manzini alive as Ben had thought.", "\n\n'Stay down,' he yelled at her over the roar of the engine. ", "She was bundled up in the passenger footwell, getting thrown about with the motion of the car.", "\n\nBen had no idea where he was going, but as he reached the bottom of the street and there were suddenly no more buildings he could tell they must be on the extreme eastern edge of the city, on the cusp between the last suburban developments and the start of open countryside. ", "The Audi's wheels hammered over a road surface that was pocked and rough under the snow, hardly more than a track with snow-clumped scrubby grass and tangled bushes marking its edges. ", "The Audi shot by a broken-down house with junked snow-covered cars in its front yard. ", "Then a sharp right bend flashed up without warning, and Ben piled the car into it too fast and felt the wheels losing traction and going into a slide.", "\n\nA dilapidated fence rushed towards them in the headlights. ", "With his heart in his mouth he swerved to avoid it, felt the tyres bite again and accelerated harder up the track. ", "Trees and bushes tore past. ", "If it had been a clear night, he might have been able to see the sprawling craggy hills stretching away from the city dotted with scrub vegetation and snow-laden conifers, the lights of Ankara clustered and twinkling to his left in the distance, maybe a pylon or a mobile phone mast here and there on the high ground, some of the outlying pockets of residential areas where the spreading city had engulfed surrounding villages, and the mountains in the distance. ", "But all he could see was a steady stream of snowflakes rushing at him like twin arcs of tracer fire in his headlights, and behind it the flat greyness of the blizzard blanketing the night.", "\n\nThe Volvo kept on coming. ", "This guy just wouldn't give up. ", "In Florence, Ben had been the hunter. ", "Now he was beginning to feel decidedly like the hunted. ", "The shooters kept up their crackling fire, missing more than they were hitting, but still hitting plenty. ", "Lots of damage. ", "The Audi's perforated bodywork was soaking up pounds of lead. ", "Warning displays were burning like Christmas tree lights all over the instrument panel. ", "Superior German engineering or not, there was only so much punishment the car could take.", "\n\nThe rear window on Ben's side disintegrated in a shower of glass. ", "Another bullet smacked through the headrest of his seat and he felt it part the hair above his ear before it bit a chunk out of the steering wheel an inch from his fingers and buried itself in the dashboard. ", "That was about as close a call as he wanted. ", "But the car's core vitals were seemingly still untouched and it kept going, tearing along the rough road that was now so bumpy and potholed that the suspension was hammering against the stops and the revs were screaming up and down as the wheels constantly struggled for grip on the treacherous surface.", "\n\nThe Volvo was still right there behind them, its lights burning into the windowless back of the Audi, muzzle flash popping from its flanks. ", "Its driver was demented, reckless, suicidal. ", "He was pushing them all to the brink. ", "As if survival instinct meant nothing to him. ", "Only the chase, and the kill at the end of it.", "\n\nThis couldn't go on. ", "Ben knew he had to do something, or any second now this journey would come to a swift and sudden halt. ", "From a bullet or a crash – either way it wouldn't matter once they were both smashed to a pulp.", "\n\n'Hang on tight,' he yelled. ", "Anna had nothing to hang on to, but she wedged herself tighter into the passenger footwell as he sawed at the wheel and left the road, belting down an even narrower track that veered off to the right through a sudden gap in the bushes.", "\n\nAn instant later he knew it was a bad turning. ", "The track disappeared and he found himself hammering over rough grassland covered in two feet of snow, lurching up and down hillocks, the bottom of the car grinding and scraping over hidden boulders and rocks. ", "Behind them, the Volvo's headlamps were bucking and bouncing like the lights of a ship on a stormy ocean. ", "Ben gritted his teeth and pressed on through it for several hundred yards until the grinding and banging stopped and the Audi cleared a grassy knoll to come bouncing onto an actual road. ", "It had eighteen inches of snow over it, but under the snow was smooth solid tarmac and now Ben could take advantage of the Audi's speed and four intact tyres. ", "He pressed his right foot down all the way. ", "The engine note soared. ", "The Volvo's lights, which had reached the road in his wake, now began to recede in the mirror. ", "The gunfire had stopped.", "\n\nThe road seemed to be leading back towards the edge of the city. ", "Walls and railings and gateways flashed by, too fast to see anything except the speeding tunnel ahead, Ben wrestling the wheel to keep it between the hedges as he ripped a racing line through one twisting bend after another. ", "The Volvo kept falling back, shrinking away in the rear-view mirror. ", "Ben felt a smile spread over his face. _", "Bye-bye, you bastards_. ", "They wouldn't catch him now.", "\n\nThat was when a new warning light in the instrument cluster began flashing urgently at him to catch his attention, and he tore his eyes away momentarily from the road to glance at it. ", "What he saw there clenched at his guts like an icy fist.", "\n\nA bullet must have clipped the Audi's fuel line or holed the tank. ", "The gauge was almost at zero. ", "The car was running on fumes and very soon it was going to run out altogether.", "\n\n## Chapter 37\n\nBen had barely processed the realisation in his mind when the engine coughed and seemed to falter for a moment before it caught again. ", "That was the kind of warning he couldn't ignore. _", "Not good_ , he thought. ", "He slackened his pressure on the gas, afraid to use up what little was left too soon.", "\n\nBy now, the chase had carried them into some kind of sprawling industrial zone on the outer reaches of Ankara. ", "Snowy-roofed factories and warehouses, huts and store buildings and chain-link fences rimed with white zipped by, all in darkness like a ghost town. ", "Ben had no idea how long his remaining fuel would last, but before too long at all he was going to have to abandon this car and either find another or look for a place to hide.", "\n\nAnna squirmed out of the footwell and into the passenger seat, looking tousled and frightened as the questions poured out of her. '", "What's happening? ", "Where are we? ", "Are we getting away?'", "\n\n'You don't want to know,' he said. ", "Glanced in the mirror and saw the Volvo's lights growing larger again as its driver came on like a demon, rapidly closing the gap.", "\n\nDefinitely not good.", "\n\n'Buckle up,' he told her. '", "This isn't over yet.'", "\n\nThe network of roads and alleyways branching off in all directions between industrial buildings large and small was like a maze. ", "Ben turned left, right, right, left, picking junctions at random and throwing the car into one after another, not slowing down, kicking up sprays of ice and powder snow as the Audi fishtailed crazily through the bends. ", "Strapped into her seat, too terrified to look, Anna was clutching the door handle and had her eyes clamped shut. ", "Behind them the Volvo skidded, spun on the ice, lost ground, came after them again. ", "The Audi's engine gave another faltering cough. ", "Air in the fuel line. ", "Ben was pretty sure all he had left was whatever remained in his carbs. ", "Any moment now, the engine was going to die. ", "That was if the fuel pump didn't overheat and seize up first from lack of lubrication.", "\n\nA long straight rushed towards them, with no side roads to duck into, nowhere to hide. ", "The Volvo was coming up fast. ", "Its rear tyre was completely shredded and flapping off its wheel, but the driver was thrashing it on like the coachman from hell. ", "His two guys were hanging out of the side windows, their jackets and masks covered in snow. ", "More shots snapped off. ", "Ben's remaining door mirror blew apart. ", "He didn't need it. ", "Didn't need reminding of what was behind him.", "\n\nOr, of the fact that they were now heading right into a dead end. ", "The way ahead was barred by a massive chain-link fence that was heavily padlocked. ", "Anna opened her eyes at the wrong moment and let out a cry as she saw the gates coming and realised he was going to crash right through them.", "\n\nThey hit the gates with a shattering clang of metal on metal and went tearing on through, bits of ripped wire and metal fencepost trailing along behind them as they entered a separate section of the industrial park. ", "To their left as they raced up a narrow alley were unbroken, uneven rows of what looked like disused railway sidings and maintenance sheds, with piles of rusty equipment and lengths of dismantled aluminium barrier and sleepers and other assorted junk. ", "To their right was a long, tall ribbon of wire fence that ran on beyond the reach of the car's headlights.", "\n\nThe Audi began to splutter and shake. ", "The Volvo was gaining fast. ", "Bullets punched into their tail. ", "Ben felt the back tyres go and the rear of the car begin to sway like a pendulum. ", "Heard Anna yelling his name, but barely registered it. ", "They were going to die unless he did something _right now_ , but he didn't know what.", "\n\nNot yet.", "\n\nIn such extreme situations, the average human brain easily becomes so flooded with acute stress and terror that it can cease to function properly. ", "Rational faculties and decision-making ability are overwhelmed by panic as the heart rate shoots into the red, hyperventilation causes dizziness and weakness, neurochemical connections fire off too fast for thoughts to be processed and a massive overload of sensory impressions quickly leads to total mental shutdown and physical paralysis.", "\n\nBut Ben Hope's was not the average human brain. ", "The way his mind worked, the closer he came to impending violent death, the more extreme the immediate threat, the more relaxed he became. ", "In this moment, speeding into darkness at over a hundred and twenty kilometres an hour with automatic gunfire hacking and chopping the car to pieces around him and the engine screaming its last before it ran out of gas and Anna shrieking in his ear, he felt as calm as if he was lounging in a hammock on a lazy summer afternoon, lulled half-asleep by the singing of the birds in the trees above, a cool drink in his hand. ", "Everything slowed down. ", "Seconds became minutes. ", "He had all the time in the world to figure out a plan.", "\n\nAnd then it came to him.", "\n\nCrazy. ", "Utterly insane. ", "But he'd had crazier ideas in his life, and he was still here.", "\n\nTo his right, the other side of the mesh fence and running parallel with it, the rough ground sloped upwards into an embankment that a snatched glance out of his shattered window told him was a section of the Ankara high-speed railway line that skirted the city. ", "That explained two things: first, the presence of the rail maintenance sheds and train-related junk on the left. ", "Second, it explained the fact that the sudden dazzling brightness of the light filling the back of the Audi couldn't only be coming from the headlamps of the pursuing Volvo.", "\n\nA train was approaching. ", "Moving fast. ", "Roaring up on their right rear quarter, set to overtake and come ripping past at any moment, just a stone's throw beyond the fence.", "\n\nAnd in his slowed-down ultra-calm near-death state of mind, Ben had also noticed what lay ahead. ", "A dumper truck had tipped a massive load of gravel on the inside of the fence; a whole hill of the stuff, spilled against the wire and bulging it outwards. ", "Presumably some crew of workers, now most likely fast asleep in their beds, were meant to come and spread it or make whatever use of it was intended, but for the moment it had just been left there. ", "As had the lengths of aluminium railway barrier that had been carelessly dumped across the mound at an angle, ramped diagonally upwards towards the fence. ", "It had been there long enough for the snow to drift thickly up against its base and freeze hard, glittering like a small sugar mountain in the headlights of the speeding cars and the glare of the approaching train.", "\n\nBen saw his chance. ", "Thought, _fuck it_ , and stamped his foot on the gas and veered the car a few degrees to the right to steer straight for the base of the ramp. ", "Whatever last few dribbles of fuel remained in his carburettor float bowls propelled the Audi towards it like a rocket.", "\n\nAnd whatever words were about to burst from Anna's screaming mouth, it all happened too fast for them to come out. ", "The Audi smashed up the ramp in a storm of exploding ice and snow, so hard that it felt as if its wheels had been ripped off. ", "The brutal wrench of the impact almost tore the steering out of Ben's clenched fists. ", "He felt his body pressed back into the seat and his stomach sink as the car left the ground and its nose tilted towards the sky and it hurtled upward at a forty-five-degree angle. ", "The revs soared up an octave, one final tortured howl before the last drop of fuel finally burned away.", "\n\nThe car launched into space. ", "Its momentum carried it straight into the mesh fence and beyond as it ripped a hole right through the wire and sailed high over the snowy embankment and over the tracks in an arcing parabola. ", "An unguided missile, carrying Ben and Anna with it.", "\n\nStraight into the path of the oncoming train. ", "\n\n## Chapter 38\n\nThe giant monster was almost on them. ", "An unstoppable force moving so fast that its driver could have done nothing to scrub off the slightest bit of speed as the car came bursting out of nowhere across his path, sailing high over the tracks. ", "The train's blinding white glare filled the inside of the airborne Audi like the flash of a nuclear explosion. ", "The thunderous roar was the loudest sound Ben had ever heard. ", "Louder than an artillery battle at close range. ", "It completely drowned Anna's scream, filled every space and vibrated every cell inside his body.", "\n\nAnd then they were dead. ", "Or they should have been, the car squashed flat on impact and then smashed down onto the tracks and pulverised by the train's wheels, their bodies reduced to mincemeat in a fraction of a second.", "\n\nBut the impact never came. ", "The car passed in front of the train's nose by a matter of inches and began to drop towards the ground. ", "Its front wheels hit first, slamming into the downwards slope of the embankment on the far side of the tracks. ", "Ben and Anna were hurled against their seat belts with the force of the landing. ", "Behind them the train hammered past, the moving pocket of air at its nose slapping them like a shockwave as it came hurtling by. ", "The car bounced and seemed about to flip and cartwheel; but then all four wheels were back on solid ground and they were moving again, rolling away from the roaring clatter that made the air tremble and blasted a blizzard of swirling snowflakes in its slipstream. ", "The train kept coming and coming. ", "The ground trembled as if an earthquake had struck.", "\n\n' _Sei completamente pazzo!_ ' __ ", "Anna yelled in Ben's ear over the deafening noise.", "\n\nBen heard that one. ", "He couldn't agree more: he probably was completely mad, but at least they were still alive, just about. ", "As Anna kept up a rapid-fire torrent of abuse about how utterly insane he was and how he'd almost killed them both, he grabbed the steering wheel and yanked the Audi's gearstick into neutral. ", "The engine had given all it had to give. ", "The dead car began to roll faster down the slope of the embankment. ", "The train was still clattering past, seemingly infinite in length – but all too soon it would be gone into the night and their pursuers stranded on the other side of the tracks would be able to find a way to come after them. ", "Ben knew he had limited time to make his escape.", "\n\nThe rolling car picked up speed down the slope. ", "It was steeper and longer than Ben had anticipated, which was both a good thing and a bad thing. ", "Bad, because the snow had drifted up thick against the side of the embankment making the terrain so treacherous that one touch on the brakes would send them into a sideways slide that would turn into a roll, and then a lethal tumble all the way down to the bottom of the hill.", "\n\nWorse, the landing had destroyed the car's headlights. ", "They were free-falling blind, crashing through mounds of snow that splashed up all over the windscreen and obliterated what little forward vision they had. ", "Moments earlier the Audi had been an unguided airborne missile – now it was an uncontrollable bobsleigh plummeting through the darkness, ripping through unseen shrubs and bushes as it went. ", "Ben gritted his teeth and tried to steady the slithering, gyrating, bucking car, but it was out of his hands. ", "If a tree or a rock were in their path, they wouldn't even see the obstacle coming before the car came to a sudden, crunching halt, and maybe their lives with it.", "\n\nWhen the crash came, it wasn't a solid tree trunk or a boulder they hit, but an abandoned wooden storage hut at the bottom of the hill. ", "It was a hidden rut beneath the snow that saved them from a head-on collision, bouncing them sideways at the last instant so that the car's flank took the worst of the impact. ", "Ben was flung against the driver's door, and Anna against him. ", "Ripped bits of planking flew all around as the car ploughed through the flimsy wall of the hut and spun through several full turns, demolishing the building totally before it finally came to rest on the snowy hillside.", "\n\nThen there was eerie stillness, just the ticking of hot metal and the rasp of their breathing as they sat still for a moment in the darkness of the wrecked car, gathering their wits and slowly realising that they were still alive.", "\n\n'You okay?' ", "Ben said at last.", "\n\n'I think so,' Anna replied shakily, not sounding too sure.", "\n\nThe driver's door was too badly twisted to open, so the two of them had to scramble out of the passenger side. ", "The snow was almost up to their knees, and fresh billows were still tumbling from the sky. ", "The night air felt deeply refrigerated. ", "Ben could already feel his cheeks beginning to tingle before they started going numb. ", "He and Anna were still warm from adrenalin, but the cold would start getting to them quickly, especially her. ", "He peeled off his leather jacket and, despite her protests, made her put it on and zip it up to her neck. ", "He was worried about her feet, pressed deep into the snow. ", "His own would stay warm and dry for hours in his heavy waterproof boots, even if the rest of him froze. ", "Hers were almost totally unprotected in those flimsy little shoes.", "\n\nBen retrieved his bag from the back seat and shone the flashlight up and down the length of the car. ", "Its rear bodywork panels were bullet-shredded and perforated beyond recognition. ", "The front suspension had collapsed. ", "A trickle of smoke was rising from its rumpled bonnet. ", "Or maybe steam. ", "Ben was far from being an expert mechanic, but he knew enough to recognise a vehicle that wouldn't be going anywhere from here. ", "He pointed the light beam up the hill, could see no lights, nobody coming after them. ", "Not yet, but they soon would be.", "\n\nHe made Anna lean against the side of the car and shone his torch over her to check for anything broken. ", "He could find no damage. ", "Lucky.", "\n\n'Still think this Babylon idol of yours is worth going after?' ", "he asked her.", "\n\nShe glared at him, her temper flaring up. '", "Do you think I would be so weak that I would give up, just because I'm a woman?'", "\n\n'Not in the least. ", "I've known some pretty crazy women.' ", "He thought of Brooke, fighting her way out of the armed South American compound in which she'd been held captive and hiking alone through miles of Amazonian jungle. ", "Roberta Ryder, picking up his Browning pistol in the middle of a firefight with multiple attackers after he'd been shot, and getting them both to safety. ", "That made him think of Father Pascal, who'd looked after him during his recovery. ", "That in turn made his thoughts cycle back to Jeff, picturing him lying there with the tubes and the needles, maybe never to regain consciousness. ", "He sighed.", "\n\n'I won't give up,' Anna snapped, shooting daggers with her eyes. '", "I'm perfectly capable of seeing this through to the end. ", "Besides, nobody could possibly be half as crazy as you, Ben Hope. ", "What kind of _deficiente_ would have done what you did back there?'", "\n\nFirst he was called a lunatic, now he was a moron too. ", "But he wasn't in a mood to get offended. '", "Now you know why the car hire companies won't touch me with a bargepole any more.'", "\n\n'It's not funny,' she fumed at him, in no way mollified. '", "And if you would mind not pushing and pulling me around and speaking to me as though I were one of your soldiers, that would also be very much appreciated.'", "\n\nHe spread his hands. '", "My apologies,' he said graciously. '", "Now if you don't mind, at the risk of telling you what to do, it's my opinion that we should be getting out of here before our friends come looking for us. ", "Can you manage to walk?'", "\n\n'I can manage fine.'", "\n\nBen wasn't so sure that she could, but he said nothing.", "\n\n## Chapter 39\n\nThey abandoned the car and started making their way down the hillside, picking out a wandering path between the snow-laden conifers and thorny bushes that dotted the steep incline. ", "If the hut hadn't arrested their descent when it had, they might have come down the hill much more quickly, with a one hundred per cent chance of getting killed in the process.", "\n\nBen had no idea where they were going, just that they needed to keep moving in the hope of finding either some kind of shelter, or some kind of vehicle. ", "But keeping moving in near-blizzard conditions wasn't an easy thing to do. ", "Without his jacket, he could feel the killer cold gradually seeping into his body.", "\n\nThe ground levelled out into a wooded valley where the snow wasn't quite as deep. ", "Every so often a fallen tree blocked their way, making them skirt around or scramble over it. ", "An hour passed. ", "The going was slow and they hadn't come far in real terms, but as the wilderness closed in around them Ankara could have been a thousand miles away. ", "On the far side of the wooded valley the terrain became rougher and rockier, full of hidden boulders lurking beneath the snow that could easily trip an unwary foot. ", "Ben walked behind Anna so that he could keep an eye on her. ", "His relief at giving their pursuers the slip was overshadowed by his concern for how she was doing. ", "Her temper had long ago subsided and she was very quiet as she struggled gamely on, kilometre after painful kilometre, stumbling more often and slowing her pace until she eventually halted and slumped on a big rock that jutted out of the snow.", "\n\n'My feet. ", "I can't feel them any more.'", "\n\nBen knelt in the snow in front of her, clamped his flashlight in his teeth to see by, unshouldered his bag and undid the straps. ", "From inside he took out both pairs of spare thick socks. '", "Put your feet here,' he said, pointing at his thighs, and she did. ", "He pulled off each of her shoes in turn and tossed them away. ", "They disappeared in the snow.", "\n\n'Those are Prada.'", "\n\n'I'm sure some fashionable Turkish lady will find them in the springtime and cherish them forever. ", "You don't need them any more.' ", "He rolled up the hems of her flimsy trousers, then peeled off her thin socks and threw them away too. ", "They were soaking wet. ", "Her toenails were carmine red, while the skin of her feet, ankles and calves was almost blue with cold.", "\n\n'Am I going to get frostbite?' ", "she asked anxiously.", "\n\n'Can you wiggle your toes?'", "\n\nShe wiggled them. '", "Just about.'", "\n\n'Then we won't have to chop them off anytime soon.' ", "He rubbed everything dry with a spare T-shirt, then pulled the socks onto her feet, two pairs apiece. ", "He used a length of duct tape to attach them to each trouser leg, so they couldn't slip off. '", "Good enough for the Norwegian Army,' he said. '", "And those blokes know a thing or two about keeping your feet toasty in cold weather.' ", "He closed up his bag, stood up. ", "Anna peered at her feet, holding them clear of the snow to keep them dry.", "\n\n'They feel warmer already, but now I can't walk.'", "\n\n'You don't have to,' he said. ", "He reached down to pick her up. '", "Put your arm around my neck.'", "\n\n'You're not going to carry me?'", "\n\n'That's exactly what I'm going to do.' ", "He lifted her off the rock, one arm around her torso and the other under the crook of her knees.", "\n\n'But we're in the middle of nowhere. ", "You can't carry me all that way.'", "\n\nHe gave her a reassuring smile. '", "You ever been to Wales? ", "There's a mountain there called Pen Y Fan. ", "In winter it makes this place look like Miami Beach. ", "For SAS training we were expected to march right the way over it in full pack, plus rifle and ammunition. ", "My bergen alone was heavier than you.'", "\n\nBut that pack had been on his back, held tight to his body by wide webbing straps, the science of weight distribution and ergonomic efficiency all carefully worked out by military minds. ", "Even that kind of load, carried for too long, occasionally proved enough of an endurance test to claim the lives of strong, fit young warriors twenty years or more his junior. ", "Ben knew all that even as he set off with her in his arms, but outwardly he just smiled and acted as though it was nothing.", "\n\nAfter a mile, though, his arm muscles were screaming, his spine was arched backwards to counter the forward drag and his neck felt ready to snap off. ", "He was afraid of stumbling in the snow and dropping her. ", "The big fat flakes were falling even more thickly from the sky, drifting down like feathery moths that clung to his hair and eyelashes, making him blink. ", "The temperature was still dropping. ", "The cold was seeping deeper towards his core. ", "His face was numb. ", "His denim shirt was soaked through to the skin. ", "He was trembling and his teeth were chattering. ", "Which was a good sign. ", "It was when they stopped chattering that you needed to start worrying.", "\n\nJust one of the tell-tale signs of hypothermia. ", "Others included headaches, loss of coordination, blurred vision, slurred speech and increasing stupor that eventually led to unconsciousness. ", "After another mile, he was still doing reasonably okay himself but he was worried that Anna was becoming drowsy and unresponsive. '", "Hey,' he said close to her ear. '", "What was the birth date of Alexander the Great again? ", "Remind me.'", "\n\nShe mumbled back, 'Three fifty-six BC.'", "\n\n'What month?'", "\n\n'August,' she answered after a pause.", "\n\n'Wrong. ", "It was June. ", "What day?'", "\n\n'I don't know,' came the slurred reply. '", "Why are you asking me all these questions?'", "\n\nHe marched on, trying to keep her talking, but before long she stopped answering and her arm drooped loosely from his neck, putting even more dead weight on his straining biceps. ", "If he didn't find shelter for them both before the night was out, her core temperature was going to drop to critical point, her organs would begin to shut down, and she was going to freeze and die.", "\n\nThen, sometime afterwards, exactly the same thing was going to happen to him. ", "Nobody would find them until the snow melted, sometime next year. ", "Perhaps never at all.", "\n\nHe marched on, half-blinded, snow in his eyes. ", "Snow in his hair, snow down his neck. ", "The chill gnawing right through him. ", "His feet were two blocks of wood and he could no longer feel his arms. ", "His blood was chugging to a standstill in his veins. ", "He had thought he'd been cold crawling from the Arno River in Florence. ", "He couldn't take much more of this, but he made himself do it anyway. ", "Step after step. _", "Always a little further_. ", "Like the words of the James Elroy Flecker poem that adorned the wall of the SAS chapel at the regimental HQ in Hereford.", "\n\n_We are the pilgrims, Master; we shall go always a little further:_\n\n_It may be beyond that last blue mountain barr'd with snow,_\n\n_Across that angry or that glimmering sea._", "\n\nThe poem had always inspired him, kept him fighting and struggling and driven him to survive even when the odds appeared insurmountable. ", "And that was what it did now.", "\n\nAnd then, through the swirling blizzard, he saw the dark shapes of the buildings up ahead.", "\n\n## Chapter 40\n\nThe farmhouse was in a whole different order from Ben's solid stone-built home in France. ", "As he got closer and played his torch beam over it through the falling snow he saw it was little more than a log cabin, long and low, the green paint old and peeling. ", "Its corrugated roof extended outwards all around to make a veranda whose wooden steps had rotted away and were buried under a mound of white. ", "An iron stovepipe chimney jutted from one end of the roof and icicles as long and thick as unicorn horns hung from the rusted guttering. ", "Some of the windows were boarded, others broken.", "\n\nNext to the house was a lean-to barn that was in no better state, snow drifted deep against its chained and padlocked doors. ", "Old animal pens stood empty and forlorn nearby. ", "The patch of land around the homestead, maybe a couple of acres, was planted with the corpses of dead trees, gnarled ghosts of what had once been a small apple orchard. ", "Whatever smallholder family had tried to make a go of it here had probably packed up and left not long after the trees had died, and their livelihood with them. ", "It was a sad and gloomy place, but for Ben, it was a miracle haven whose discovery was almost enough for him to start believing in God again.", "\n\nAlmost.", "\n\nStruggling up the broken-down steps onto the porch with Anna in his arms, he kicked open the front door. ", "The smell of dank and decay wafted out of the dark interior. ", "There was no need to call out, 'Anyone at home?' ", "Nobody had been at home for years. ", "Inside, he booted the door shut with his heel and lowered Anna gently down to the bare plank floor. ", "She stirred, muttered something incoherent. ", "He shone the torch around him. ", "Life here had been as rustic as it could get. ", "The smallholders obviously hadn't thought their few sticks of simple furniture worth taking with them when they left. ", "In a corner was a chopping block made from a section of apple tree, with a small pile of kindling and logs and a rusty hatchet next to a spartan old wood burner.", "\n\nShivering violently, he knelt by the wood burner and laid his torch on the floor to give him some light. ", "His hands were so numb that he could hardly get his fingers to work enough to scrape away the damp ashes clogging up the grate. ", "With luck, the stovepipe chimney wouldn't be packed solid with generations of bird nests.", "\n\nLuck was on his side. ", "In a few minutes he had a fire going, a small smoky flame that he carefully built into a crackling blaze. ", "The cast-iron stove soaked up the heat, clicking and ticking as the metal warmed and threw out a glow that began to chase the cold air from the room. ", "He moved Anna close to the spreading warmth.", "\n\n'What is this place?' ", "she asked groggily.", "\n\n'We'll be safe here for a while,' he said. '", "Let's get you out of these wet clothes.'", "\n\nAnna was too cold to have many inhibitions. ", "They both stripped to their underwear, huddling and shivering as close to the fire as they could without burning themselves. ", "The smallholders had fixed up a rack for drying clothes from a pulley above the stove. ", "Ben hung their things from it, and soon there were clouds of steam billowing from the soaked material. ", "He joined her on the floor and the two of them sat pressed up close together, feeling the wonderful heat sinking into them and the blood beginning to circulate once more through their half-naked bodies. ", "He wrapped an arm around her bare shoulder and rubbed her back and arms to get the circulation going.", "\n\nIt was several minutes before Anna's shivering died away and she was able to talk normally. ", "Ben uncapped his flask and shared a little whisky with her. ", "She spluttered at the taste of it, but gratefully took a few more sips. ", "The firelight glowed amber on her skin and danced in her eyes. '", "Thank you for looking after me, Ben. ", "I'm sorry I snapped at you before.'", "\n\n'Sticks and stones,' he said. '", "Better than bullets and grenades.'", "\n\n'They won't find us here, will they?'", "\n\n'Not unless they're psychic, and riding on polar bears.'", "\n\n'Perhaps they are psychic. ", "I can't understand how else they got to Ercan's house before us.'", "\n\n'I've been asking myself the same question,' Ben said. '", "They seemed to know exactly where we were headed, and that's a little too much of a coincidence. ", "You said that nobody could locate Ercan unless they had his address. ", "Unless I'm missing something, there's only one place they could have got that. ", "From you.'", "\n\n'From me?'", "\n\n'Specifically, from your laptop,' he said. '", "You left it behind in Greece.'", "\n\n'Because you told me I couldn't go back for it.'", "\n\n'What exactly was on that laptop, Anna?'", "\n\nShe shrugged. '", "Everything.'", "\n\n'Such as?'", "\n\n'When I'm researching a project I keep a diary of all my thoughts and ideas as it takes shape. ", "My travel plans, everything.'", "\n\n'Including the names and contact details of the people you were intending to visit?'", "\n\n'It's all in my address book.'", "\n\n'Which is on the laptop too?'", "\n\n'That's where people keep them nowadays.'", "\n\n'Do they? ", "I have a leather book that sits by the phone.'", "\n\nShe said nothing.", "\n\n'And the laptop was where?' ", "he asked.", "\n\n'It was in my travel bag, along with my clothes and other things. ", "I didn't try to hide it. ", "Why would I? ", "In any case, Ben, as I told you, the material in the computer is encrypted.'", "\n\n'There's encrypted and \"encrypted\". ", "How hard would it be to access?'", "\n\nShe looked flustered from his questioning. '", "I'm not all that expert with computers, and in any case I wasn't expecting anyone to pry into it. ", "You just have to enter a code to get in. ", "The thing asked for a password of twelve digits or more, so I used \"Nebuchadnezzar\". ", "I suppose, if Usberti had hold of it, he might have—'\n\n'Yes,' Ben said. '", "I suppose that too. ", "In which case, he'd have known exactly where in Ankara you were headed.'", "\n\n'I suppose,' she said.", "\n\nHe thought for a minute. '", "Among these personal details, did you write down Ercan's various security passwords and combinations?'", "\n\n'On the last day I stayed with him, he ran out of provisions and went out shopping. ", "I was terrified I would set off the alarms while he was gone, so I got him to list them all down for me and I copied them down. ", "But only the numbers, not what they were for. ", "I had my own system for remembering what was what. ", "Nobody else could have used them.'", "\n\n'What matters is that they knew they were dealing with a paranoid nut,' Ben said. '", "Which is also why they were able to get inside his house so easily. ", "Usberti's no fool. ", "He would have known the place would be on lockdown and Ercan would never open the door to a bunch of strangers. ", "I'll bet he used a decoy.'", "\n\n'What kind of decoy?'", "\n\n'It wouldn't be hard to find a nice-looking woman of about the right height and build, dress her up to look stylish, put a long black wig on her, stick some money in her pocket and tell her what to do. ", "A hooker, maybe, happy to earn easy cash for a change. ", "All it took was for her to ring his doorbell and say into the speaker \"Ercan, it's me, Anna, I've come to see you,\" and his whole security system was worthless. ", "The instant he deactivated the alarm to open the door, the heavies jumped out of the bushes, pushed their way inside and that was it. ", "Then they took him away and waited nearby for us to walk into the trap.'", "\n\nAnna looked crestfallen. '", "I can't believe this is happening. ", "It's like Theo Kambasis all over again. ", "How could I have known Ercan would be in danger?'", "\n\n'You couldn't,' Ben said. '", "So don't beat yourself up over it.' ", "Which was some advice, coming from the man who had spent much of his life plagued by guilt over things he couldn't control.", "\n\nThey were silent for a few minutes, listening to the crackle of the fire. ", "Ben tossed on another log.", "\n\n'There's something else,' she said. '", "This may sound crazy to you.'", "\n\n'Try me.'", "\n\n'That man back there. ", "The leader. ", "It seems insane, but somehow I felt that I recognised him.'", "\n\n'Me too,' Ben admitted, 'and it's been bugging me the whole time. ", "I'm certain I've never come across him in my life, and yet... it's as if I'd seen the bastard before.'", "\n\n'It's the eyes,' Anna said shakily, gazing into the flames with a troubled expression, as if she saw something there that haunted her. '", "I can't ever forget those eyes. ", "They are the same eyes that looked at me that night in France, years ago, when I thought I was going to die.'", "\n\nBen turned to face her. ", "She wasn't joking. '", "What are you saying?'", "\n\n'Bozza,' she replied, tight-lipped. ", "There was total conviction in her voice.", "\n\n'That's impossible,' Ben said. '", "Franco Bozza's been dead for years. ", "And in any case, he was bigger, taller.'", "\n\n'Then this man is related to him. ", "His son?'", "\n\n'Too old for that.'", "\n\n'Then his brother, perhaps. ", "Is it possible?'", "\n\nBen shook his head grimly. ", "He didn't want to believe it, but his instinct told him Anna might be right. '", "I don't like it, but it's not impossible. ", "It would mean—'\n\n'Ben? ", "What would it mean?'", "\n\n'First, if you're right, it would mean this guy has more motivation than whatever cash sum Usberti's paying him to do a job. ", "He wants revenge for his brother's death.'", "\n\n'And he knows you killed him.'", "\n\n'Or thinks I did. ", "As it happens, the blind woman shot him. ", "Two rounds from an old broom-handle Mauser pistol. ", "The first got him in the throat, the second blew the top of his head off.'", "\n\n'That sounds like very precise shooting from a blind woman.'", "\n\n'That's because she was only pretending to be blind. ", "Had us both fooled.'", "\n\n'Oh.'", "\n\n'And secondly,' Ben said, 'if you're right, it means we're up against someone a lot worse than your regular rent-a-thug. ", "The first Bozza was bad enough, and he was just a plain-vanilla hired assassin, sadist and torturer. ", "Little brother, if that's who he is, is a tougher prospect. ", "He's done some army time. ", "Maybe quite a bit of it.'", "\n\n'You can tell?'", "\n\n'Like day from night.'", "\n\n'He was a soldier like you?'", "\n\nBen shook his head. '", "If he'd been a soldier like me, or like any of my guys back in the day, he wouldn't have confined his assault to the front door. ", "He'd have split his men up and hit the front and back both at once. ", "Then we'd have had a real problem getting out of that house. ", "What that means is that he was never in Special Forces, in anyone's army. ", "That's the good news. ", "The bad news is, you take a man with the screwed-up psychopathic genes of a Bozza brother and put him through any kind of serious military training, teach him how to fight with weapons or bare hands, how to endure physical punishment and ignore pain, you're bound to create some kind of monster. ", "But then, we've already had a taster of what he's like.'", "\n\n'He won't stop coming after us, will he?'", "\n\nBen shook his head again. '", "Nope. ", "Not until it's over. ", "We'll be seeing him again, for sure.'", "\n\n'This won't end well, will it?'", "\n\n'For someone, it won't.'", "\n\n'This is my problem, not yours. ", "If I have to face it alone, I will. ", "You don't have to stay with me.'", "\n\nBen looked at her, saw the earnestness in her face, and his heart went out to her for her courage. '", "You're not getting rid of me that easily,' he said. '", "We're getting through this together, or not at all. ", "You and me.'", "\n\n'You, me and Ercan. ", "We have to save him, too. ", "Before those animals harm him.'", "\n\n'I wouldn't bet on Ercan's chances, if I were you. ", "His only value to the enemy is the information inside his head. ", "How long he lives depends on how long it takes for Usberti's guys to get it out of him. ", "My guess is, not long.'", "\n\n'Then we have to get to him first,' Anna said firmly. '", "The sooner we find Usberti, the sooner we find Ercan, alive. ", "It all boils down to our search for the idol. ", "We're all in the same race, hunting the same clues. ", "And now I know where the next clue is leading us.'", "\n\n## Chapter 41\n\nBy now, the glow of the fire had spread through the whole cabin. ", "Ben and Anna's bodies were warm, the whisky flask was empty and they felt as safe and cosy as two people in their predicament ever could. ", "Ben took their dried-out clothes from the rack over the stove and handed Anna's down to where she sat on the floor. ", "He kept his eyes discreetly averted as she stood up to dress.", "\n\n'Such a gentleman,' she said. '", "You can look now. ", "Oh, it feels so good to be warm again.'", "\n\n'You were saying you knew where we have to go next. ", "I'd be interested in knowing that myself.'", "\n\nShe nodded. '", "Thanks to Ercan. ", "At first, when I read the papers from his document safe, I didn't understand. ", "But then I realised. ", "He figured it out. ", "I told you he was a genius.'", "\n\n'He must be, considering it now turns out the fragments of the Muranu tablet are of no use after all.'", "\n\n'The tablet was... what's the expression? ", "A red sardine.'", "\n\n'A red herring,' Ben said.", "\n\n'That's exactly what it was. ", "Ercan realised that the pieces were too badly damaged to be decipherable, leaving him with no choice but to abandon them. ", "But he's as tenacious a scholar as any detective. ", "When you find one avenue of investigation becomes a dead end, you retrace your steps, go back to the starting point and look for another. ", "This time he took a completely different approach, in order to try to trace the movements of the Muranu family after their escape from Babylon. ", "The problem was, no such records existed. ", "Instead, he found the solution buried in the administrative records of the PFA.'", "\n\n'The Persepolis Fortification Archive,' Ben said, remembering.", "\n\nAnna nodded.", "\n\n'And?'", "\n\n'Let me set up the context for you, or none of it will make sense. ", "As we know, the Muranu family and their mysterious cargo left Babylon in October, 539 BC, literally days before the Persian army of Cyrus the Great swept in, conquered the city and took over the whole Babylonian Empire as part of their own, which it would remain for many years. ", "Cyrus eventually died and his son Cambyses became king for eight years, until he died also and his son Darius took over in turn. ", "In some ways, Darius was to the Persian Empire what King Nebuchadnezzar had been to Babylon, a highly capable empire builder. ", "He expanded and consolidated Persia's conquests in territories including India. ", "Like his father and grandfather before him, initially Darius used the city of Babylon as his capital; then in the year 518 BC he founded Persepolis—'\n\n'City of the Persians,' Ben cut in. '", "His new capital, in what's now Iran. ", "You already told me this part.'", "\n\n'But as the empire grew, so did the number of rebellions he had to deal with. ", "Darius was very adept at putting down rebels. ", "We can see that from the famous inscription carved into the rock of a cliff at Mount Behistun in Iran's Kermanshah Province, studied in depth by a British Army officer called Sir Henry Rawlinson who was the first to scale the mountain in 1835. ", "The carving depicts Darius as a mighty warrior crushing a rebel underfoot.'", "\n\n'What's the point of this?'", "\n\n'Stop interrupting,' she said testily. '", "All this background is important. ", "Now, we also know from various records that minor insurrections began to break out all over Darius' empire in those years. ", "Most of these rebellions Darius could entrust his local governors to quell. ", "Law enforcement records, including records of executions of insurgents, would be gathered together in a central database, if you like, in the rapidly growing capital Persepolis. ", "Do you follow me?'", "\n\n'Every step. ", "I just don't know where we're going.'", "\n\n'You must have been a terrible student. ", "Did your tutors never tell you that patience is a virtue?'", "\n\n'It's also a luxury.'", "\n\n'Well, now here's where we get to the really interesting part. ", "When Ercan gave up on the tablet fragments and turned instead to the records of the Persepolis Fortification Archive, he found there a translated account of one particular uprising against the Persian authorities. ", "It was led by a man known as The Babylonian, whose force of rebel bandits occupied the ruins of an old fortress in the hills near the city of Harran, within the Persian Imperial Province of Athura.'", "\n\n'And?'", "\n\n'And, as Ercan confirmed when he cross-checked the story against other historical records, it seems that The Babylonian and his rebels were a real stone in the side for the Persians.'", "\n\n'A thorn in their side,' Ben corrected her. '", "Or a stone in their shoe.'", "\n\n'But you get the idea. ", "They were a skilled guerrilla militia who scored a lot of success in attacking army convoys and supply routes, disrupting them very considerably. ", "This went on for some time, until in 516 BC, the Persian-appointed governor finally sent a mass of soldiers who stormed the fortress and caught many of the rebels. ", "The surviving prisoners were brought to the local garrison, where they were horribly put to death. ", "All of which was entered in government records and later became part of the PFA archive. ", "But while the authorities had managed to eliminate most of the outlaws, the leader himself managed to evade capture, and was never caught. ", "Now, by cross-checking all the sources he could find, Ercan discovered that this enigmatic character was also known by another name: Ashar the Babylonian. _", "Ashar_ the Babylonian,' Anna repeated, looking at Ben with a sparkle in her eyes. '", "Do you see?'", "\n\nBen thought. ", "The name sounded familiar, but where had he heard it? ", "Then he remembered. '", "You told me about him. ", "The boy on the ship.'", "\n\n'That's right. ", "The eight-year-old Muranu child listed on the passenger manifest when they fled the incoming Persian invasion in 539, never to see their beloved home again. ", "So it's thanks to the very precise records of old Babylon, and then the detailed law enforcement database of the Persian authorities, that for the first time we can pinpoint where the Muranus went after leaving Babylon.'", "\n\nBen did the arithmetic. ", "Twenty-three years later, Ashar Muranu would have been thirty-one. ", "A grown man, and a dedicated rebel against the imperial invaders who forced his family into exile. ", "Ben thought about that, then revisualised the map of the ancient Middle East that he'd spent all those hours studying in his youth. '", "Harran, in Mesopotamia. ", "In the Book of Genesis, it's where Abraham and his wife settled en route to the promised land of Canaan. ", "To get there, the Muranus must have sailed a long way up the Euphrates, and then continued eastwards overland. ", "Quite a journey, in those days. ", "Even so, they can't have reached beyond Persian territory.'", "\n\n'Something like eight hundred kilometres from Babylon,' Anna said. '", "And you're right, Harran was still within the borders of the Achaemenid Empire. ", "After the conquest of Babylonia, it was now the biggest empire in all of classical antiquity, covering such a gigantic territory that it was simply too huge for normal travellers to escape from.'", "\n\n'Then again, the Muranus weren't exactly normal travellers. ", "Why not keep moving?'", "\n\nAnna shrugged. '", "Perhaps they were content to compromise, by settling in a corner of the empire as remote and far-flung as possible, in order to try to get on with their lives. ", "There may have been a Babylonian connection, albeit a tenuous one, as some scholars believe that Addagoppe, the mother of King Nabonidus and grandmother of Belshazzar, may have been from Harran. ", "In any case, in those days Harran was a reasonably busy trading outpost, where they might have thought they could resume their merchant business. ", "But it seems they never returned to their former greatness. ", "Meanwhile Ashar, who clearly had never forgiven the Persians for what they did, seems to have gone his own way. ", "I don't suppose we'll ever know all the facts. ", "But that's history for you.'", "\n\n'What about the idol?' ", "Ben asked. '", "Did they have it, or didn't they?'", "\n\n'We've already speculated that they could have sold it, or melted down the gold plates into enough coinage to make them fabulously rich.'", "\n\n'In which case, why hang around in some backwater outpost of the same empire that had ravaged their home? ", "With that kind of money they could have travelled as far and wide as they wanted, settled anywhere they pleased, and lived like kings and queens.'", "\n\n'It was a bigger world then. ", "Distances seemed much greater than they do to us now, and foreign lands were mysterious and frightening. ", "Especially with wars raging everywhere. ", "Perhaps they still retained enough affinity with the region to make them want to stay.'", "\n\n'Or perhaps it's more than that,' Ben said. '", "Ashar's political involvement suggests that at least some of the Muranus must have been sympathetic to the rebel cause. ", "Maybe they hoped that the kingdom of Babylon would one day be restored and they could go back. ", "That could have been why they stayed.'", "\n\nShe shook her head. '", "I doubt anyone could have thought that way. ", "The Persians were too powerful. ", "It would have seemed like a lost cause.'", "\n\n'And history's full of lost causes that people never gave up fighting for.'", "\n\n'That's just speculation,' Anna said doubtfully. '", "You can't know these things for sure.'", "\n\n'Not for sure,' Ben said. '", "But close enough. ", "And it changes everything.'", "\n\n## Chapter 42\n\nBen said, 'Put yourself in his shoes. ", "Think like him. ", "By the age of thirty-one, Ashar would have risen up to be a fairly senior member of the Muranu clan. ", "From what we've learned about him, he must have been a pretty strong personality, probably with a lot of influence within the family. ", "Yet he broke with family tradition in a big way. ", "He could have chosen the easy path and become a merchant trader like the whole dynasty before him, but instead he chose a life of hardship, war and risk. ", "To make that kind of sacrifice, he must have been highly driven. ", "And nothing drives a guy like that more than ideological ambition. ", "Then there's the value of symbols. ", "Ancient people placed far more importance on them than we do.'", "\n\nAnna looked puzzled, studying Ben's face intently in the firelight. '", "I'm not sure what you're telling me here,' she said.", "\n\n'Say the idol was still in the family's possession, still intact after all those years. ", "A vast, magnificent monument to the fallen king they'd once revered, under whose reign Babylon had flourished. ", "To a dedicated freedom fighter locked in a death struggle against the hated Persian oppressor, it would have been more than just a heap of gold. ", "It would have represented more than just wealth. ", "It would have been a massively powerful political icon, symbolising a future return to the glory days of Babylon under the rule of a mighty king like Nebuchadnezzar. ", "Darius wasn't a popular sovereign, or else there wouldn't have been revolts sprouting up like mushrooms all over his empire. ", "What if Ashar's dream was to overthrow it altogether, rallying together all the discontented and disenfranchised peoples of the empire under the symbolic totem of the golden idol?'", "\n\n'Then he would have kept it carefully concealed until the time came when he could use it. ", "If my theory is right about its modular structure, he could even have scattered its parts in various secret hiding places.'", "\n\n'That's what I would have done,' Ben said. '", "And I would have been extremely cautious about who I trusted with the knowledge of those hiding places. ", "Maybe just a handful of my closest and most faithful followers. ", "I certainly wouldn't have allowed my family to know. ", "For their own protection as much as anything else.'", "\n\n'That makes sense. ", "Go on, I'm listening.'", "\n\n'He had a lot to lose. ", "And a lot to gain. ", "When the day finally came when the idol could be reassembled in its proper home, the guy who could pull off a coup like that would be sure to become the new king of Babylon. ", "Except it never happened. ", "Ashar's dream fell apart when his rebels were decimated and he became just another renegade fugitive. ", "What if he was the only one left who knew where the pieces of the idol were hidden? ", "Or, what if he was killed too, in some skirmish with imperial forces that never made it to the official record?'", "\n\nAnna had her head bowed in thought, beginning to nod to herself as she gradually came round to Ben's idea. '", "Or that did, but the official record is still lying in a storeroom of the Persepolis Fortification Archive with a thousand others, waiting to be translated? ", "I told you, there are still years of work left to be carried out.'", "\n\n'In which case', Ben said, 'he'd have taken the secret to his grave. ", "And if he'd chosen his hiding places half as carefully as I would have done—'\n\n'It could still be there,' Anna finished for him.", "\n\n'Not just the single piece you were hoping for. ", "But the whole thing. ", "You'd just have to know where to dig.'", "\n\nHer eyes sparkled from the flames. '", "You're right. ", "This changes everything.'", "\n\n'It's just a theory,' Ben said.", "\n\n'But an excellent one. ", "All the more reason why we need to go to Harran.'", "\n\nBen thought back to his mental map, picturing what the vast territory of the Persian Empire looked like in ancient times. ", "Then he set it side by side in his mind with a modern map of what the region looked like in the present day. '", "My ancient geography's a little rusty after all these years.'", "\n\n'Like your Bible knowledge.'", "\n\n'But if I'm getting it right, our destination is right here in Turkey.'", "\n\nAnna nodded. '", "I already worked out the location. ", "Harran is about forty kilometres from Sanliurfa, which is just six hundred kilometres to the south and west of Ankara, with a motorway connecting them. ", "Except we don't have a car. ", "How are we even going to get out of here?'", "\n\nBen kept the wood burner going all night. ", "When he ran out of logs he smashed a chair for firewood, taking it outside first so as not to wake Anna who was sleeping peacefully in the glow of the fire with his jacket over her as a makeshift blanket. ", "After the last spar of the chair was burned up, he carried out the wooden table and broke that up too, then tiptoed back inside carrying an armful of splintered pieces. ", "Being on fire duty kept him from thinking too much about all the things that would have crowded his mind and kept him from sleeping anyway.", "\n\nAs the red tendrils of dawn came creeping in over the eastern forest skyline, he quietly left the cabin and went exploring about the smallholding. ", "He took the hatchet with him, partly for wanting some kind of weapon just in case, and partly for its usefulness in helping him to get inside the chained-up barn, which was what interested him most. ", "Specifically, what he might find inside. ", "The snow had stopped; the rising sun shone its ruby glitter across the hard-frozen white ground. ", "It was going to turn out a gloriously crisp, perfect winter's morning. ", "You could almost forget you had a bunch of crazed murderers after you, and a best friend back home who was deep in a coma.", "\n\nThe rural property was too far out in the middle of nowhere to have been of interest to vandals and thieves. ", "Judging from the thick rust that had seized the padlock, the barn hadn't been opened since the day the smallholders had departed. ", "Ben used the shaft of the hatchet like a crowbar to prise the rusty screws holding the hasp to the rotted wood of the door. ", "The chain fell away, he creaked the door open and sunlight shone inside for the first time in years. ", "The floor of the barn was covered in musty straw. ", "Shovels and rakes and a pickaxe leaned against one wall. ", "A small tractor stood partially dismantled, never to run again. ", "Next to it, tucked away behind piles of old boxes and crates and covered by a dusty tarpaulin, was a large object whose shape there was no mistaking.", "\n\nThe old sedan was a Peugeot 404, the car whose design the East Germans had pinched for their papier-mâché Trabant. ", "It was about the same age Ben was, though it had been enjoying a far more restful existence for quite some time, doing little except provide a home for generations of mice. ", "The key was in the ignition but the battery was totally dead, its terminals badly corroded, which Ben guessed might have been the reason why the smallholders had abandoned it.", "\n\nBen had never been much of a car person but he did happen to know something its former owners might not have been aware of: that this model was one of the last saloon cars to incorporate a manual starting crank. ", "Hence, it didn't need a battery or a starter motor to turn the engine over. ", "Knowledge like that was the kind of thing Special Forces soldiers found useful on occasion, such as when commandeering improvised transport in tricky situations in Third World countries where such ancient vehicles tended to proliferate. ", "He'd once seen a pickup version of the 404 in Yemen, carrying two live camels in the back. ", "These old crates could survive just about anything.", "\n\nHe smiled when he found the crank handle buried under a heap of junk in the boot, still in its original plastic pack. ", "The smallholders might have dismissed it as some kind of oddly shaped wheel brace or other tool whose purpose they couldn't figure out, or they might never have spotted it at all. ", "Along with the crank handle Ben found a tatty, mouldy old road atlas of Turkey and a battered but serviceable pair of wellington boots. ", "Where they weren't caked in old chicken shit they were pink, with flowers all over them. ", "Fashionable footwear for a farmer's wife or teenage daughter.", "\n\nBen walked around to the front, found the hole below the rusty front grille where the handle could connect to the crankshaft, gave it a turn, and the engine coughed into life amid a massive cloud of blue smoke. ", "Now he was smiling even more. ", "He tossed the crank handle and the map on the back seat, along with a shovel and the pink rubber boots. ", "Brushed the mouse droppings from the driver's seat, climbed in and engaged the steering-wheel gearstick, and the car rattled out into the morning sunshine, tyres crunching on the snow.", "\n\nHe parped the horn twice. ", "Moments later, Anna appeared in the doorway of the cabin, wide-eyed in amazement.", "\n\nHe stepped out of the car and leaned on the door. '", "Did you say something about a motorway trip to Sanliurfa?'", "\n\n'In that?'", "\n\n'It's a classic.' ", "He slapped the bodywork. '", "No recycled Coke tins in there.'", "\n\n'It looks like something we could have excavated from the ground in Iraq.'", "\n\n'Suits me fine,' he said. '", "These modern cars, a couple of little knocks and they just fall to pieces.'", "\n\n'How are we going to drive in deep snow?'", "\n\n'We'll dig our way out, if we have to. ", "That's what you have me for.'", "\n\nShe ventured out onto the veranda, stopped short and looked down at her feet. ", "I've got no shoes.'", "\n\nBen grabbed the rubber boots from the back. '", "Sorted,' he said, tossing them to her. ", "They landed on the veranda. ", "She bent to pick them up, tentatively sniffed them, pulled a face and held them at arm's length as though they were two dead fish.", "\n\n'I'm supposed to _put my feet_ into these?'", "\n\n'Might not cut the mustard on the Florence catwalk, but at least now you'll be waterproof. ", "Now let's grab our kit and get out of here. ", "Next stop, Harran.'", "\n\n## Chapter 43\n\n_Some hours earlier_\n\nMassimiliano Usberti stood by his window overlooking the dark sea, hands clasped behind his back, deep in thought and ignoring the presence of his assistant Silvano Bellini. ", "At this late hour, the house would normally have been all in silence, except only for the continual hiss and boom of the waves breaking in the rocky cove below.", "\n\nTonight, instead, the room was filled with the sound of agonised screams.", "\n\nThe screaming was coming from the fifty-eight-inch LCD television screen that had been set up especially for the occasion by Pierangelo Volpicelli who, unlike his employer, was handy with technology. ", "Usberti had never used Skype before. ", "The idea seemed like science fiction to him, not to mention faintly vulgar for its populist appeal. ", "Yet he was willing to admit its usefulness in certain applications, and he was enjoying the show playing out on the big screen. ", "Bellini, though, judging by the contorted frown on his face, was not.", "\n\nThe image showed a bare, starkly lit and lugubrious room with mould-streaked walls and peeling plaster. ", "Usberti knew exactly where it was, in an abandoned rat-infested hovel in a shanty-town district of Ankara, although nothing on the screen would have given away the location.", "\n\nThe scene was framed from the point of view of a webcam positioned not far above floor level, on a stool or a box. ", "In the middle of the screen stood a cheap, narrow wooden table. ", "Perched on top of the table was a cheap wooden chair. ", "Lying arched on his back across the seat of the chair, elevated so that his legs dangled in empty space down one side and his head, arms and upper torso dangled down the other, was the source of the inhuman cries of pain that were filling Usberti's living room.", "\n\nErcan Kavur was naked, which wasn't a particularly pretty sight. ", "He was lashed securely to the seat of the chair by a rope around his middle. ", "A second length of rope was attached to his ankles, and a third to his wrists, which were outstretched beneath his head. ", "The ropes were tautly connected at a downward angle to makeshift iron rings on the floor, each of which consisted of several thick nails hammered halfway into the boards and bent over to make an inverted U for a rope to pass through, with a strong man keeping up the strain on each end: Groppione and Iacono, both hidden off-camera at opposite sides of the screen. ", "Ugo Bozza, overseeing the proceedings with a completely blank and deadpan expression on his face, could be seen to the left of the frame. ", "The only crew member with little to do was Maurizio Starace. ", "The bulging eyes that were caused by a thyroid disorder were even more manically bugged out than usual as he enjoyed watching the spectacle from the wings while puffing on a cigarette.", "\n\nThe torture was called 'the German chair', though as far as Usberti knew it had no particular association with Germany, and its use was popular in various parts of the world by virtue of its sheer simplicity. ", "Why mess about with elaborate equipment when some of the most effective torture methods required only the minimum of basic essentials? ", "The tension on his arms and legs was stretching Kavur backwards over the seat of the chair, arching his spine to breaking point. ", "If the brutal screams were anything to go by, it was causing him appalling pain. ", "Usberti's understanding of anatomy and physiology was somewhat limited, but even he could see that if the strain on the victim's arms or legs increased by another inch, it would cause irreversible damage. ", "Or worse. ", "Kavur already wasn't the world's most prime specimen of the male sex. ", "God had not blessed him with a fine physique to begin with, and decades of bad diet and deskbound study had atrophied his muscles until he looked as scraggy as a diseased old cat. ", "Any more of this punishment would break him, literally – and Usberti didn't want Kavur dead. ", "Not just yet.", "\n\n'Enough,' he commanded. ", "Far away in the shanty hovel in Ankara, Ugo Bozza's stonefish eyes flickered across and down to the laptop on the crate, from which his employer's face looked up at him. ", "Bozza nodded to Groppione and Iacono, and the tension on both ends of the rope slackened. ", "Kavur gasped, still in tremendous pain, but his back no longer about to snap like a stick of celery.", "\n\nUsberti stepped closer to the big screen. '", "Look at me, Ercan.'", "\n\nSlowly, painfully, Ercan Kavur craned his neck to peer at the smaller screen on the Ankara side of the Skype connection. ", "Sweat dripped from his body despite the freezing cold that had his torturers all wrapped up in coats and gloves.", "\n\n'You do not want to die, do you, Ercan?' ", "Usberti said.", "\n\nA slow, agonised shake of the head. ", "No, Ercan didn't want to die.", "\n\n'Of course you do not. ", "Nor would I wish to inflict such a cruel and untimely end upon a scholar of your calibre. ", "On the contrary, my dear Ercan, I want you alive, fit and healthy, so that we can go on a journey together. ", "A journey of discovery. ", "One that may bring untold rewards. ", "That's right, Ercan. ", "For you too. ", "You know what journey I am speaking of. ", "You know where the Babylon idol is.'", "\n\n'No!' ", "Kavur managed to gasp through his pain. '", "Nobody knows if—' a fit of coughing seized and racked him pitifully for a few moments before he could finish. '", "If it even exists.'", "\n\nUsberti's face darkened. '", "You are lying to me, Ercan. ", "I warn you, you must never, ever, lie to me. ", "It exists. ", "And you know where it is. ", "You are going to lead us to it. ", "Because if you do not... well, let me show you what. ", "Ugo?'", "\n\nBozza needed no further prompting. ", "He stepped around the side of the table. ", "Kavur let out a strangled cry of terror and tried to wriggle away from him, but he couldn't move. ", "Groppione and Iacono tensioned the ropes just a little more, to prevent the victim from struggling. ", "Kavur hung arched backwards over the raised chair, eye to eye with Bozza. '", "Please,' he quavered. '", "Whatever it is you're going to do to me – please!'", "\n\nFrom the look in Kavur's wild eyes, it was easy to imagine what kind of anticipatory terrors were running through his mind. ", "Knives, needles, blowtorches, pincers, all the usual horrors associated with physical mutilation.", "\n\nBut what was coming was worse than any of that.", "\n\nBozza's face remained completely expressionless as he removed first one glove, then the other. ", "He flexed his fingers, rubbed his hands together, then reached out and lightly, almost delicately, ran his fingertips over the clammy flesh of Kavur's right shoulder. ", "Kavur flinched violently at his touch, but the strain on his arms held him tight.", "\n\nBozza slowly moved his fingertips up and across Kavur's scrawny upside-down upper torso, like a caress, and stopped just at the point where the top of the ribcage met the base of his stringy, wasted right pectoral muscle near the armpit. ", "His fingers seemed to hover there like a concert pianist about to hit the opening notes of a concerto.", "\n\n'Ugo's late, lamented brother was a master at inflicting pain,' Usberti said. '", "I should know, as Franco was my trusted and loyal servant for many years and I personally witnessed him at work on countless occasions. ", "His methods with the knife and the razor were brutal and highly effective, and earned him a well-deserved reputation in certain quarters as well as the equally deserved moniker \"The Inquisitor\". ", "In fact, I doubt whether the torturers of the Spanish Inquisition could have plied their craft as skilfully. ", "But in retrospect, now that poor Franco is no longer with us, I would say that his techniques were somewhat crude, frequently requiring a great deal of cleaning up afterwards. ", "The room would often have to be completely screened with thick plastic sheets. ", "I am sure you can imagine, sparing me from having to enter into graphic descriptions.'", "\n\nUsberti paused. ", "Bozza hadn't moved or shown any flicker of expression. ", "He stood there poised for his next command.", "\n\nUsberti went on: 'By contrast, what I have learned of Ugo's skills has persuaded me that his mastery of the art of pain has transcended even that of his elder brother. ", "Even without the use of such crude implements as steel blades, he is capable of elevating the human pain response beyond all imagining, and in this respect has reached a level of virtuosity to which few expert practitioners could aspire. ", "Ugo, perhaps you could offer a small demonstration of your considerable skills to our friend?'", "\n\nThe nerve centre that Bozza had singled out was known to acupressure practitioners as Gall Bladder Point 23 or, to give it its traditional Chinese name, 'Zhe jin', meaning 'flank sinews'. ", "Like all such points, the right application of pressure could be used to heal, or it could be used to inflict pain and damage. ", "A sharp strike or excessive pressure on GB23 could cause liver damage or even death. ", "However, just the right touch could, without inflicting permanent harm, trigger a jolt of the most excruciating agony possible.", "\n\nAnd that was exactly what Ugo Bozza now did to Ercan Kavur. ", "He dug his index finger and thumb into the pectoral muscle and mashed the nerve centre in an iron pincer grip. ", "The inhuman scream that burst from Kavur's lips almost made Groppione and Iacono drop the ends of the rope and clamp their hands over their ears, and this was far from being their first torture.", "\n\nThe scream went on and on, ululating, piercing, bellowing. ", "Bozza held the pressure for a few seconds and then released it. ", "Kavur fell silent and hung there quivering, his breathing coming in great shuddering gasps. ", "Sweat pattered the table and the floor like rain. ", "His eyes had rolled up in their sockets so only the whites showed.", "\n\n'On a scale of one to ten,' Usberti said, 'one being roughly equivalent to the pain from a handful of finely ground sea salt being vigorously rubbed into a raw and open wound, and ten being the most unimaginably hideous torment of Dante's purgatory at the hands of demons, I would estimate that what you have just experienced was approximately level four. ", "Each successive point of the scale represents a significant increase of agony. ", "The real measure of Ugo's skill is the effortlessness with which he is able to extract such a response from his victim. ", "He is perfectly able to continue for hours. ", "And we have all night. ", "Shall we now explore what a five would feel like, or would you prefer to talk instead? ", "The choice is entirely yours.'", "\n\nAnd it was a choice Kavur wasted no time in making. ", "The information flowed out of him so freely that once he'd started talking, he wouldn't stop. ", "He told them every last detail of what he'd encrypted into his research notes. ", "And every last detail of his fresh discoveries since making those notes, yet to be written down.", "\n\nAs Kavur talked on the big screen, Massimiliano Usberti listened, and smiled, and paced back and forth with his hands clasped behind his back. ", "Silvano Bellini stood near the window, looking edgy and thoughtful. ", "At last, when the terrified man had given all he had to give, Usberti stopped pacing.", "\n\n'So let me make sure I understand this correctly,' he said. '", "We already know, from having seen them scattered all over the floor of your study, that the Manzini woman was able to locate your research notes. ", "We can equally take it that she must have acquainted herself with their content, being admirably educated herself and quite capable of translating the old Anatolian Turkish that you used as your code. ", "Unfortunately, she is not here to confirm this fact in person, but it is a reasonable assumption to make. ", "Moreover—' He held up a finger. '", "We also know for a fact, assumptions aside, that her knowledge must necessarily be limited to what she has seen and read. ", "It is impossible that she could have become aware of these further discoveries of which you speak, as they are so fresh that you had not yet committed them to note form. ", "Interesting. ", "Very interesting. ", "In short, what this means is that she believes the idol to be located in Turkey. ", "Which we now know, and she cannot know, is not the case. ", "Or, to put it another way, we have a significant advantage thanks to superior intelligence. ", "Am I correct?'", "\n\nToo exhausted to utter another word, Kavur just nodded.", "\n\nUsberti pursed his lips. ", "His eyes gleamed. '", "Very well, here is what we will do. ", "Ugo: you, Luca, Aldo, and Maurizio, all remain where you are. ", "The time has come for me to leave this island. ", "I will travel incognito from Sicily and rendezvous with you in Ankara as soon as possible. ", "Pending my arrival there, you will make the necessary preparations for our journey south to Harran.'", "\n\nBellini frowned. '", "But, Excellency, as you just said yourself, the idol is not in Harran.'", "\n\n'No, Silvano, it is not,' Usberti replied with a chuckle. '", "But Hope and Manzini are currently lacking that information. ", "Nor does Hope appreciate how well I know him; how clearly I can anticipate his moves. ", "When they reach Harran they will make their way to the ancient ruins there. ", "Like the soldier he is, Hope's strategy will be to establish a temporary base as nearby as possible, from which he can determine the whereabouts of the rebel fortress of Ashar the Babylonian. ", "He is by nature independent of spirit and his first instinct will be to locate the fort himself. ", "Whereas Manzini, being both a pragmatist and a woman, will be more inclined to seek local assistance in the matter. ", "In his foolish gentlemanly way, Hope will relent rather than force his own inclinations on a female. ", "Thus, after some discussion, they will doubtless opt for her way of thinking and make inquiries to find a guide in the town of Harran who can convey them to the site.'", "\n\n'You confuse me, Excellency. ", "You speak as though you knew exactly where this fortress can be found.'", "\n\n'My dear young friend, as ever you are one step behind me. ", "Be assured, I have precious little interest in either the fort itself or its location. ", "My sole concern lies in ensuring that Hope and Manzini are brought somewhere conveniently remote, and very private. ", "The perfect location for us to strike.'", "\n\nOn that note, Usberti cracked a broad, toothy smile and turned to the big screen, where Bozza, Iacono, Groppione, and Starace had gathered in a group, all peering down at the webcam and waiting for their instructions. ", "Starace looked like a mad Pekingese.", "\n\nUsberti said, 'Gentlemen, get ready for the final phase of our plan.'", "\n\n'What about him?' ", "Iacono asked, pointing at Kavur.", "\n\nAnd Usberti told them what to do.", "\n\n## Chapter 44\n\n'It's me.'", "\n\n'I know it's you. ", "There's something nowadays called caller ID, you know? ", "Anyway, you don't have to keep phoning me all the time. ", "I told you I'd be in touch if there was a change.'", "\n\n'Which there hasn't been?'", "\n\n'He's stable. ", "But there's no improvement in his condition. ", "I wish I could tell you more, but that's it.'", "\n\n'I'm sorry if I disturbed you. ", "I won't call again.'", "\n\n'No problem.' ", "A hesitant pause in her voice, then: 'I like it when you call.'", "\n\nHe said nothing.", "\n\n'When are you coming back?' ", "she asked.", "\n\n'I can't say.'", "\n\n'Where are you now?'", "\n\n'Stopped for fuel at a motorway services in the Urus Mountains, about three hundred kilometres south-east of Ankara, Turkey.'", "\n\n'What are you doing there? ", "What's happening?'", "\n\n'It's a long story.'", "\n\n'That's what I was afraid you'd say. ", "Don't do anything—'\n\n'Stupid? ", "You already said that.'", "\n\n'Or whatever.'", "\n\n'You want to come and hold my hand?'", "\n\n'I would, but I'm too busy holding Jeff's.'", "\n\n'Keep doing that. ", "Talk to him. ", "He'll hear you.'", "\n\n'It's your voice he needs to hear. ", "Come back soon, okay? ", "I'm worried about you.'", "\n\n'Why?' ", "he asked her.", "\n\n'I don't know why. ", "I hardly know you.' ", "Another pause, longer this time, as if she was searching for more words but didn't want to commit to saying them. '", "Just come back soon, okay?' ", "she repeated. '", "And promise me you'll look after yourself, Ben.'", "\n\nHe put the phone away and got back in the car. '", "Here, I got us some sandwiches,' he said to Anna, holding up two plastic packs. '", "Lamb or cheese?' ", "She picked the cheese. ", "They sat in silence for a moment, ripping open the plastic twin-packs, both just now realising how hungry they were. ", "Anna wolfed down half of her first sandwich with little care for ladylike manners, then paused for breath and asked, 'Who were you talking to just then?'", "\n\n'Sandrine Lacombe, the doctor looking after Jeff.'", "\n\n'That's who I thought it was. ", "I take it there's been no change in your friend's state?'", "\n\n'Not yet.'", "\n\n'I'm sorry.'", "\n\n'Me too.'", "\n\n'I wish there was more I could say.'", "\n\n'I know.'", "\n\n'He'll pull through it, I'm sure.'", "\n\n'Maybe,' Ben said. '", "Thanks for the thought.'", "\n\n'You're welcome,' Anna said, and then a small smile curled the corners of her lips. '", "She likes you, doesn't she? ", "And you like her, too.'", "\n\n'Don't be ridiculous,' Ben said through a mouthful of lamb sandwich.", "\n\n'I can tell. ", "From your face when you talk to her.'", "\n\n'What about my face?' ", "he said, hardening it into a scowl.", "\n\n'It certainly doesn't look the way it does now. ", "The opposite. ", "And I could tell from the warmth of your voice when you were talking to her. ", "And from the way you didn't want to end the call.' ", "Anna smiled. '", "Is she nice? ", "Tell me about her. ", "What colour eyes does she have? ", "What colour hair?'", "\n\n'This is a daft conversation,' he said, tossed away the empty sandwich pack and twisted the ignition. ", "The battery was fully recharged from all the driving, and the engine fired instantly.", "\n\nA hundred kilometres further down the road he broke his silence and said, 'Blue eyes. ", "Blond hair. ", "Don't ask me any more questions about her.' ", "Anna made no reply. ", "The little smile on her face remained there for a long time.", "\n\nThe old car was sedate, but it was comfortable and reliable, and the heater worked fine. ", "Anna dozed off now and then, while Ben smoked the last of his cigarettes with the driver's window wound open a crack and the icy wind whistling at his ear. ", "As the journey rolled further southwards they left the snow and the mountains behind for the more temperate climate of south-eastern Turkey. ", "It was still cold, but the roads were clear and the sky was blue.", "\n\nSix hours after setting off from the hills of Ankara, they were arriving in Sanliurfa. ", "A city of half a million inhabitants, built on a plain eighty kilometres east of the Euphrates. ", "Anna knew it as the birthplace of some twelfth-century Armenian historian she mentioned. ", "Ben knew it as the site of massacres during the First World War. ", "Then again, just about everywhere had been the site of massacres during the First World War, like the second, and most likely the third too.", "\n\nBy the time they were driving into the city, Anna's mood had changed and she was looking sombre. '", "What were we thinking? ", "Now we're here, I have no idea what to do next.'", "\n\n'One thing at a time,' Ben told her. '", "First let's see about getting you kitted out with some decent shoes and clothes. ", "Then we'll think about establishing a base somewhere nearby, preferably as close to Harran as possible. _", "Then_ , we'll worry about what we're going to do next.'", "\n\nThey might have had different ideas about what constituted decent shoes and clothes, but thanks to the limited options available in the stores they checked out, it was Ben's that mostly prevailed. ", "She stalked out of the store wearing leather winter boots, heavy denim jeans and a good, warm, if utilitarian, thigh-length jacket that padded out her figure with thick quilting. ", "She was grateful for being able to junk the pink wellingtons, but the new coat wasn't such a hit. '", "It's like something you'd put on a horse,' she said, looking disapprovingly at her shapeless reflection in a shop window. '", "Is this meant to be part of my re-education? ", "Learning to live the Ben Hope way?'", "\n\n'You look fine,' he had to say at least six times before they reached the car.", "\n\nNow that that task was taken care of, it was time to make their way to their destination, Harran. ", "The road from Sanliurfa seemed at first to be taking them due south, straight towards Syria; then just a few kilometres before reaching the border town of Akçakale it veered eastwards. ", "The ancient site that had been the stopping point for Abraham in the Old Testament was a sprawl of ruins scattered over an arid plain of semi-desert scrubland, encircled at a distance by the modern town of Harran. ", "Like a couple of sightseers, Ben and Anna trekked on foot across the barren scrubland of the plain and spent a while wandering about the ruined sandstone walls and archways and towers that were all that remained of the place. ", "It was like Olympia, but with none of the serenity and little of the mystique. ", "The only intact buildings on the plain were the clusters of beehive houses that had been built a lot more recently, centuries rather than millennia ago, from the stones of the ruins. ", "Incongruously surrounded by pylons and wires that hummed in the cold desert wind, some of the beehive houses appeared still inhabited – until it turned out that they were strictly used as a tourist trap by locals ever-ready to exploit the unwary for all they could get. ", "The children were less subtle about it, crowding around Ben and Anna everywhere they went like a cloud of mosquitoes, clamouring for money. ", "Ben noticed that some of the kids were speaking Arabic. ", "Refugees from over the Syrian border, just twenty-five kilometres away. ", "He felt pity for them, until one of the little urchins pulled out an imitation 9mm Beretta realistic enough to have caused most tourists to soil their pants, pointed it at Ben and yelled 'Bang, bang, you're dead!' ", "Ben replied to him in Arabic. ", "The kid lowered the gun, stared at Anna in horror and then beat it along with his crowd of friends.", "\n\n'What did you say to him?' ", "Anna asked.", "\n\n'I told him you were a Seventh Dan Karate master, and you were going to break both his little arms and shove his gun where the sun doesn't shine.'", "\n\n'This is a dismal place. ", "There's nothing for us here anyway. ", "We should be looking for Ashar's fortress.'", "\n\nBen shook his head. '", "It's getting late, and we wouldn't know where to start. ", "I suggest we get a place to rest up for the night, a shower and a meal.'", "\n\nThe modern town of Harran wasn't much less dismal than the ancient one, but had a motel handily situated right on the edge of the plain. ", "Anna wasn't impressed with their adjoining rooms, and even less so with the shared bathroom. '", "There are cockroaches.'", "\n\n'It's winter.'", "\n\n'They're hibernating. ", "But they're here. ", "Don't tell me you've seen worse, because such a thing isn't possible.'", "\n\n'Except maybe in summer,' he said. '", "When the cockroaches all come back out to play.'", "\n\nThe narrow street leading up from the motel was crowded with tawdry gift shops, coffee bars and a handful of restaurants that looked more or less in the same league as the motel, but within a five-minute walk they found a café that was a little better than the others. ", "Over dishes of Urfa kebab and chicken and rice, they talked about the possibility of hiring a local guide to help them locate the fort, or at any rate the site where it had once stood. '", "There must be dozens of them in this town, with little work during the low season,' Anna pointed out. '", "And in a place like this, where everyone knows everyone, it's just a matter of asking.'", "\n\n'What are the chances that some local guy just happens to know where this fort is?' ", "Ben said.", "\n\n'I've used guides before, on research trips. ", "It's surprising how knowledgeable some of them can be.'", "\n\n'Maybe you're right,' Ben said. '", "But assuming we even find anything out there, it could be a long trek. ", "And the terrain will be rough as hell. ", "I could go alone. ", "I've spent a lot of time in places like that.'", "\n\n'You think I'd let you find the golden idol of King Nebuchadnezzar without me?' ", "she fired back. '", "I've survived this far. ", "I'm ready for anything.'", "\n\n## Chapter 45\n\nAnna survived the night, as well, with no cockroach sightings to report when morning came. ", "Breakfast was a cup of Turkish coffee so strong you had to chew it, taken in the empty dining room. '", "I think we're the only guests here,' Ben commented.", "\n\n'What a surprise.'", "\n\nBen left her to finish her coffee while he went over to the reception desk to enquire about hiring someone local to show them around the surrounding area. ", "As it turned out, Anna had been right about everyone knowing everyone in Harran, but wrong about the abundance of suitable tour guides.", "\n\n'There's only one man I know of who might be able to help you,' the manager said. '", "Wait a minute.' ", "And kept Ben waiting for several of them while he took his time looking up the number in a grubby old diary. '", "Here he is. ", "Diya Sharifi.' ", "The manager scribbled the name and number down on the back of a scrap of paper and showed Ben the way to a payphone.", "\n\nAn hour later, Diya Sharifi was sitting with Ben and Anna in the empty motel dining room, over more of the chewy coffee. ", "He was an ethnic Arab, about thirty years of age, who said he'd lived in the area all his life and knew every inch of terrain from Gaziantep to Batman. ", "His manner was relaxed but his eyes were sharp and his English fluent, even though it had been learned from American TV. ", "He confirmed that he could make space in his frantically busy schedule to help them out, and listened as Anna outlined to him what they were looking for.", "\n\n'The place we're trying to find would be very, very old. ", "It was already a ruin in ancient times, possibly the remains of an Assyrian fortress dating back four thousand years. ", "There might be virtually nothing left now, except a few scattered pieces of rubble. ", "Yet it's vitally important that we find the right place. ", "Do you think you can help us?'", "\n\nSharifi considered the request. '", "Most tourists, they want something they can take a picture of, you know? ", "You're asking me to take you someplace that doesn't even exist any more?'", "\n\n'It would be on high ground,' Ben said. '", "Somewhere right up in the hills, a good vantage point where you could see an enemy approaching miles away. ", "The kind of place a lightly equipped guerrilla force would have had no problem slipping in and out of, but regular infantry would've found difficult to access, even harder to attack.'", "\n\n'Do I look like a military tactician to you?' ", "Sharifi said, then broke into a grin. '", "Relax, man. ", "Happens I do know a place that kind of sounds like what the lady was talking about. ", "You could say it was a fort, or was once, what's left of it. ", "Might be the same one you're looking for, maybe.'", "\n\n'You can take us there?' ", "Anna asked, leaning forward in her chair.", "\n\n'It's a long way up in the hills. ", "Kinda hard to reach, but I have a good truck. ", "Sure, I can take you there. ", "Gonna cost you a little extra, though. ", "It's real close to the border. ", "Lots of trouble still going on in some of those places. ", "You hear stories of ISIS fighters slipping across and killing folks.'", "\n\nBen and Anna exchanged glances. ", "His, dubious. ", "Hers, flashing with excitement. '", "It's as good a place as any to start,' she said.", "\n\n'I still think it's best if I go alone,' Ben replied.", "\n\n'Over my dead body.'", "\n\n'That's what I'm trying to avoid.'", "\n\nAnna dismissed the idea with a wave of her hand. '", "You have the job, Mr Sharifi,' she said.", "\n\n'The price will be five hundred lira,' Sharifi said. '", "And please, call me Diya.'", "\n\n'That's fine, Diya. ", "We're anxious to reach the fort as soon as possible. ", "How quickly can you be ready to leave?'", "\n\n'Let me go fuel up the truck,' Diya said, knocking back the dregs of his coffee and getting to his feet. '", "I'll meet you outside in one hour, ready to rock. ", "You should bring some food and water. ", "Gonna be a long day.'", "\n\nBen watched him go, then turned to look at Anna, saying nothing.", "\n\n'What?'", "\n\n'Are you sure you want to play it this way?' ", "he asked her.", "\n\n'You heard him. ", "It sounds as if he might be able to take us to the right place. ", "And for a good price, too.'", "\n\n'I don't care about the money,' Ben said.", "\n\n'It's just that you don't trust anyone.'", "\n\n'I trust myself.'", "\n\n'But you don't know where the fort is. ", "You said so, remember?'", "\n\nAn hour later, Diya Sharifi screeched up outside the motel in a Dodge Power Wagon pickup truck that looked as though it had spent the last thirty years hauling rocks over the desert, complete with enough ancillary lighting to fry a camel crossing the road and knobbly tyres so oversized that Anna could barely clamber up inside the crew cab.", "\n\n'You can dump your bag in the back, boss,' Diya said. ", "The rear bed was filled with a clutter of various junk. ", "One big steel jerrycan for fuel, a plastic one for water. ", "A crammed metal tool box with all the paint knocked off it. ", "A spare wheel, wearing the same pattern of knobbly tyre, tethered to the side of the flatbed with rope. ", "Some shovels and other well-worn wooden-handled utensils carelessly rolled up in a frayed bit of canvas tarp tied in the middle with a length of twine. ", "Ben always found it interesting what people carried with them for travelling in the wilderness.", "\n\n'You coming, boss?'", "\n\n'I'll be right there,' Ben said. ", "He shoved a few things aside to make space for his bag, made sure it was secure and then walked slowly back towards the front passenger side. ", "He paused at Anna's window. '", "Last chance to change your mind.'", "\n\n'I told you, I'm coming. ", "I wish you wouldn't keep asking.'", "\n\n'Fair enough,' Ben said. ", "He pulled open the front passenger door and hauled himself in. ", "The dashboard was covered by a colourful patterned cloth to protect it from melting in the summer sun. ", "An Islamic ornamental pendant dangled behind the windscreen from the mirror stem. ", "Less traditional was the sat nav device suckered to the inside of the glass.", "\n\nDiya grinned at his passengers. '", "Hang on tight, folks. ", "I drive real fast and we're taking the road where there _is_ no road. ", "Let's go.'", "\n\n## Chapter 46\n\nThey set off, quickly leaving Harran behind as their guide sped out into open country, talking and joking animatedly as he drove. ", "From March through October, it would have been the kind of unbearably hot, dusty trek that Ben had endured a thousand times before. ", "In winter, it was just unbearably uncomfortable as Diya charged up into the barren hills, never slowing down for a rock or boulder smaller than a watermelon or bothering to avoid a rut unless it threatened to engulf the entire truck. ", "Ben wedged his feet against the door and transmission tunnel to prevent himself getting too badly thrown about. ", "Behind him, Anna was being bucked out of her seat at every bump, but she was too excited to complain.", "\n\nThe landscape was an arid panorama yellowed by sand and sun, dotted here and there with sparse vegetation. ", "They passed through the outskirts of a village where feral children came out to throw stones. ", "Deeper into the wilderness they had to slow for a sheep herder leading his flock across their path. ", "Further on again, they passed the bleached-white skeleton of a camel; then the carcass of a wrecked and overturned car, blackened by fire and peppered with large-calibre bullet holes, a silent witness of the warfare that now and then strayed over the border into south-eastern Turkey.", "\n\n'In your line of work I'd carry a weapon for self-defence, Diya,' Ben said in Arabic over the roar of the engine. '", "What with all the trouble in these parts.'", "\n\nDiya glanced at him in surprise that he could speak the language, then shrugged and replied, 'Forget it. ", "That's a sure way to get yourself killed, around here.'", "\n\n'I'd take the risk, personally,' Ben said.", "\n\n'Rather you than me, chief.'", "\n\n'So you don't have a gun?'", "\n\nDiya shook his head, all the way left, then all the way right, in an exaggerated motion for emphasis. '", "Never wanted one, never needed one, never will.'", "\n\n'Sorry I asked,' Ben said. '", "Just wondered, that's all. ", "So, are you really the only guide in Harran?'", "\n\n'Only one worth his salt.'", "\n\n'Nice little monopoly you have there. ", "No competition. ", "You make much money?'", "\n\nDiya shrugged and grinned wider. '", "A man has to earn his crust. ", "You know how it is.'", "\n\n'Yeah, I think I do know how it is,' Ben said. '", "I'll bet your phone never stops ringing, does it? ", "I'll bet it was ringing even last night, sometime after she and I got into town.' ", "He pointed a thumb back at Anna, who was gazing out of the window and oblivious of the conversation.", "\n\nDiya looked at him uncertainly, the grin wavering. '", "You ask a lot of questions, chief.'", "\n\n'Bad habit of mine,' Ben said.", "\n\nSoon afterwards the terrain began to climb. ", "Diya took a winding hill path up and up through all sorts of spectacular ravines and canyons and escarpments. ", "Anna was watching it all roll by, gazing out of the window in fascination. ", "Ben was watching Diya. ", "For the last few kilometres the guide had stopped smiling and talking. ", "He kept glancing at his watch, biting his lip. ", "Peering this way and that as though checking for landmarks, then consulting the GPS reading on the sat nav.", "\n\nBen asked him, 'What's the matter, Diya? ", "Lost your way?'", "\n\n'No chance,' Diya replied. '", "I been coming out this way all my life, chief. ", "Nobody knows it better than me.'", "\n\n'Maybe you're in a hurry because you have a plane to catch later, or a hot date.'", "\n\nDiya threw him another uncertain look. '", "No worries, man. ", "Almost there. ", "Just a couple more minutes.'", "\n\n'This'll do,' Ben said. '", "You can drop us off here.'", "\n\nDiya stared at him. '", "You crazy? ", "This is no taxi ride.'", "\n\n'You heard me. ", "This is far enough.' ", "Ben reached out and yanked the handbrake. ", "The truck skidded to a halt at an angle across the track. ", "Anna was thrown forwards against the front seats.", "\n\n'Ben, what are you doing?'", "\n\nThe engine had stalled. ", "Diya clutched the wheel and kept staring at Ben. ", "He was sweating. ", "Ben said nothing, either. ", "Before Diya could speak or attempt to restart the engine, Ben threw open his door and jumped out. ", "They had stopped in a shallow canyon that a million years ago could have been the bed of a fast-flowing river. ", "Its banks sloped upwards on both sides in a wide V. Here and there, landslides had brought part of the canyon walls down to form piles of boulders around which scrubby bushes had sprung. ", "Ben hit the stony ground with both boots and started striding fast towards the rear of the truck. ", "Stepped up on the tow-hitch, reached into the pickup bed among the wooden-handled utensils carelessly wrapped inside the piece of frayed canvas tarp, grabbed something solid and heavy and slid it out of the roll with a sharp tug.", "\n\nBen always found it interesting what people carried with them for travelling in the wilderness. ", "Especially when one of the items in their tool roll wasn't a shovel or a pick, but rather a clumsily concealed bolt-action Mauser main battle rifle of the sort that had flooded Turkey by the million during and since World War Two. ", "And even more especially when the same rifle's owner insisted he carried no weapon. ", "By anyone's standards, the 8mm Mauser was a _hell_ of a weapon, as lethally effective now as when it had rolled off the assembly point at the Steyr-Daimler-Puch factory in Austria, 1943, and into the eager hands of the Waffen SS.", "\n\nDiya was clambering out of the truck. ", "Anna peered open-mouthed from the dusty window. '", "Let me guess,' Ben said, clutching the rifle. '", "This old thing has been bumping around so long in the back of your truck, you forgot it was there. ", "Is that right, Diya?'", "\n\nDiya made no reply. ", "Ben cracked open the bolt and saw the big, long, bottlenecked rounds stacked on top of each other in the receiver. ", "He pulled the bolt all the way back, then pushed it all the way forward, feeling that famous slick Mauser action, and locked it down tight. ", "Now there was a round in the chamber.", "\n\n'You really shouldn't leave firearms lying around like that,' he said. '", "Too many nasty, dishonest people around. ", "The kind of people who might point a loaded rifle at you when they pretended they were unarmed.'", "\n\n'Ben, what's happening?' ", "Anna called from the truck cab.", "\n\nDiya took a step towards him. ", "In one fast motion Ben swivelled the butt of the rifle to his shoulder and fixed the battle sight right on Diya's centre of mass. ", "The 8mm Mauser cartridge was good for over a thousand yards and could penetrate light armour at half that distance. ", "At this range it would blow a man in two.", "\n\nDiya presumably knew that, it being his rifle. ", "He took a step back and raised his hands.", "\n\nBen said to him, 'Let's have a little bit of truth, Diya. ", "You can start by emptying out your pockets. ", "Nice and easy. ", "If I thought you had a pistol in there, I might get really nervous. ", "And nervous folks have twitchy fingers.'", "\n\nDiya moved slowly, partly because he didn't want to get shot with his own rifle, and partly because he was understandably reluctant for Ben to see what was in his jacket pocket. ", "More precisely, what was in his wallet, which he left until last to pull out. ", "The worn leather was stuffed as thick as a double burger.", "\n\n'Open it up so I can see inside,' Ben said.", "\n\nDiya's eyes bulged. ", "He held open the wallet. ", "A fat wad of banknotes fell out, scattered and caught the wind and swirled about his feet like autumn leaves, but he made no move to pick them up.", "\n\n'Business really has been good for you, hasn't it?' ", "Ben said. '", "Looks like another couple of thousand Turkish lira, on top of the five hundred you stood to get from us. ", "Why don't you go crawling after it, before it all blows away? ", "Wouldn't want you to have sold us out for nothing.'", "\n\nAnna's door opened and she peered out. '", "Ben, please tell me what's going on here.'", "\n\n'What's going on is that there _is_ no ancient Assyrian fort anywhere nearby,' Ben told her, still keeping the rifle pointed at Diya. '", "And if there were, our deceitful friend here wouldn't care one way or the other. ", "Because he didn't drive us out into the middle of nowhere for an archaeological excursion, but for a prearranged rendezvous with a certain someone. ", "Isn't that correct, Diya?'", "\n\nDiya boggled at him. '", "They said to bring you here. ", "That's all I know. ", "Said it was for a surprise.'", "\n\n'You're an idiot, Diya. ", "The biggest surprise would've been when they put a bullet in you and took the money back. ", "And if you thought packing a rifle as insurance was going to save your worthless skin, you have no idea who you're dealing with. ", "When did they call you? ", "Yesterday?'", "\n\n'Last night,' Diya admitted.", "\n\n'And they didn't wire you that cash through the bank. ", "They paid it to you in person. ", "Which means they're here, in Harran. ", "Who did you meet?'", "\n\n'I don't know his name. ", "I don't know anything, I swear.'", "\n\n'The last bloke who swore to me he knew nothing died pretty soon afterwards.'", "\n\n'Okay, chief, okay. ", "One was in charge. ", "Older than the rest, with white hair, maybe in his sixties. ", "A big man, spoke with a foreign accent. ", "Italian, sounded like. ", "He had three others with him. ", "Heavy-looking guys. ", "Two who spoke, one who didn't. ", "Just kinda looked at me.'", "\n\n'Bozza,' Anna breathed.", "\n\nBen asked Diya, 'They came to your place?'", "\n\nDiya nodded reluctantly. '", "Told me to expect your call in the morning. ", "Gave me the money. ", "Half now, half when the job was done.'", "\n\n'The job being to cart us out into the middle of nowhere like two lambs to the slaughter,' Ben said. '", "And you knew just the spot to bring us. ", "So far, the only thing you haven't lied to us about is that you know this area like the back of your hand. ", "You probably even gave them the GPS coordinates, which is why you kept checking your sat nav as we got closer. ", "And my guess is that you called them just before we set off, which is why you kept checking your watch, too. ", "Because they're up ahead, waiting for us.'", "\n\nDiya nodded. ", "He pointed mutely deeper into the rocky canyon, about five hundred yards further on. '", "Where I was taking you.'", "\n\n'That's all I need to know,' Ben said. '", "You're a very lucky man, Diya. ", "A less nice person than me would have blown your brains out and left you where you dropped, for the jackals and lynxes and whatever other hungry things live out here. ", "I'm just going to make you walk home. ", "You'll have to pray you make it back alive.'", "\n\nBut Diya wasn't going to make it back alive, and Ben might as well have shot him anyway.", "\n\nBecause in the next instant, his brains burst all over the side of the truck.", "\n\n## Chapter 47\n\nThe bullet that spattered Diya's brains was travelling about three thousand feet per second, more than double the speed of sound. ", "So the crack of the shot reached Ben's ears almost exactly half a second after it hit. ", "Diya was stone dead but still standing, his knees crumpling under him, beginning to drop. ", "Anna's cry was still forming in her mouth.", "\n\nBut by then Ben already knew exactly where the hidden sniper was positioned among the rocks some five hundred yards away. ", "And he was already spurred into action, leaping behind the truck and yelling at Anna to get down, _Down!_ ", "Through the rear cab window, all grimed with dirt and dust, he saw her duck between the seats. ", "Out of sight, not out of danger.", "\n\nThe truck lurched on its suspension and went down at the front left corner. ", "Quarter of a second later, another boom sounded from the distant rocks and echoed up and down the canyon.", "\n\nThe sniper fired again. ", "Same result, second front tyre. ", "He was immobilising the truck. ", "Once he'd contented himself with that, he might very well start shooting at them. ", "Using the big Dodge as cover wasn't an option. ", "A high-velocity rifle would zip through vehicle metal like paper.", "\n\nBen had no intention of hanging around for whatever might come next. ", "Jumping up onto the cluttered pickup bed he yelled to Anna to turn her face away. ", "Military Mauser bolt-action rifles were made with a thick steel butt plate, ideal for smacking down onto the concrete of the parade ground, or for staving in an enemy's teeth, or for smashing windows. ", "He jabbed it hard against the dirty glass, felt the splintering crunch, whacked it again and kept hammering at it until the entire rear window was in pieces over the back seat. ", "He reached an arm inside. ", "She clasped his hand and he half helped, half hauled her out through the glassless frame. ", "At the same moment she scrambled onto the pickup bed, the truck's windscreen dissolved into a mass of fissures with a round hole punched cleanly through its middle. ", "Ben ran for the tailgate, leaping over the junk and tools, dragging her behind him. ", "They jumped. ", "Hit the stony ground at the rear of the truck. ", "Anna was wild with terror. ", "Ben pushed her down into a crouch behind the tow-hitch.", "\n\nIt was time to give the sniper back a dose of his own medicine. ", "Ben brought up the Mauser and used the side of the pickup bed as a rest to steady his aim. ", "The hidden shooter was almost certainly using a modern rifle with a telescopic sight, surgically accurate enough to pick off flies at long range. ", "Ben had only crude iron battle sights, through which even a relatively close target looked tiny. ", "He couldn't expect to pick flies off at this distance.", "\n\nBut a man is a much bigger target than a fly.", "\n\nThen he saw what he was looking for: the briefest flash of reflected sunlight glinting off steel and glass, just long enough to give away the sniper's position. ", "He was hunkered in tight to the rocky slope of the canyon, about thirty feet up and about ten degrees left. ", "Ben estimated the range at around 485 yards. ", "He sighted on the spot where he'd seen the flash. ", "Took up the first pressure on the trigger, drew in a breath, let half of it out, felt his body go still and pressed the trigger the rest of the way. ", "The Mauser was loud. ", "Its recoil jolted the steel butt plate against his shoulder. ", "The bullet was in flight; a fraction of a second later he thought he saw the puff of dust as it struck the rocks. ", "Close enough to the sniper's position to get him worried.", "\n\nBen worked the bolt, ejected the smoking spent cartridge case, slammed another in the chamber. ", "He wondered how many Wehrmacht soldiers back in the day had shared the same worry he was having now, which was the limited magazine capacity of their standard infantry rifle. ", "One gone, only four to go.", "\n\nThen he would just have to make them count.", "\n\nHe scanned the rocks through the sights. ", "A tiny movement caught his eye. ", "He fired again. ", "The same loud crash, the same hard-kicking punch to his right shoulder, the same split-second interval as the bullet flew. ", "There was no puff of dust this time. ", "He thought he saw a dark shape flit past a gap in the rocks. ", "Had he hit his mark?", "\n\nThe return shot that cracked off the side of the truck an instant later told him he hadn't. ", "Now the sniper had _his_ position. ", "Not good. ", "And sheltering behind the flimsy-skinned truck was no kind of shelter at all. ", "Ben glanced at a pile of landslide debris ten yards to their left, where a large boulder had broken loose of the canyon wall at some time in its history and come tumbling down to the foot of the slope to provide perfect cover for a moment like this. ", "The sniper could blast away all day and never put a crack in it.", "\n\n'I'm going to count three,' Ben said to Anna. '", "Watch my fingers. ", "Take my other hand and don't let go. ", "On three, we're going to run for that rock there, quick as we can. ", "Ready? ", "One – two – _go_.'", "\n\nThey burst out from behind the truck and raced over the stony ground, threw themselves behind the safety of the big boulder and crouched there. ", "Ben re-cocked the Mauser. ", "The empty case flipped out and rolled in the dirt. ", "Two rounds gone, three to go. ", "Less than ideal, considering the sniper probably had a ten-shot magazine and a whole box of ammo resting at his elbow.", "\n\nAnna was gaping at him. '", "Ben, how are we going to get out of this?'", "\n\n'Same way we always do,' he replied. '", "I'll do something crazy, you'll tell me I'm a lunatic, and we'll live to find more trouble another day.'", "\n\n'I don't care what you do, as long as you do something.'", "\n\n'I'll quote you on that.'", "\n\n'Is it Usberti?'", "\n\n'Not in person,' Ben said. '", "The archbishop never was a trigger puller and I doubt whether he'd risk himself in a gunfight. ", "Like a good general, he'll be leading his troops from the rear.'", "\n\n'Bozza?'", "\n\nBen smiled grimly, nodded. '", "I don't know if he's the one sniping at us, but he's here, all right. ", "I can smell him.'", "\n\n'What can we do?'", "\n\nBen said nothing. ", "Because the fact was, with only one gun and just three rounds, they weren't exactly option-rich right now.", "\n\nA third bullet cracked off the rocks nearby, ricocheting with a cloud of dust and stone chips and a howl that blended with the boom of the shot.", "\n\n'He can't see us,' Anna said. '", "As long as we stay here, we're safe.'", "\n\nShe was right, as far as it went. ", "The problem was that it didn't go far, because Anna was new to the tactics of war. ", "Ben wasn't. ", "He was all too aware that they were being deliberately pinned down. ", "That was one of the key functions of a sniper, to keep the enemy distracted and unable to shift position while the rest of the unit split up and work their way around in a flanking manoeuvre. ", "That was exactly what he'd have been doing, in Bozza's shoes.", "\n\nIn which case, the rest of them could appear at any moment.", "\n\nAnother shot cracked and boomed. ", "The truck's rear right tyre exploded and the vehicle sagged down at the corner. ", "Another key function of a sniper, in anti-materiel mode to neutralise the enemy's transport. ", "This was getting better and better.", "\n\n'Ben? ", "What do we do now?'", "\n\n## Chapter 48\n\n'The only thing we can do,' Ben told her. '", "Get out of here, and fast.'", "\n\n'How?'", "\n\nHe nodded in the direction of the truck. '", "In that, while there's anything left of it.'", "\n\n'But the tyres—'\n\n'I'll drive it on its rims if I have to. ", "Won't be the first time.'", "\n\n'I can believe that.'", "\n\nHe gripped her shoulder. '", "Now listen to me. ", "Stay tight, keep your eyes peeled and don't move. ", "If I'm not back in two minutes, run like hell. ", "Okay?'", "\n\nShe nodded, eyes huge and moist. '", "I'm frightened.'", "\n\n'Being frightened is good. ", "Helps you run faster.'", "\n\n'Come back quick.'", "\n\n'Quicker than you can say \" _precipitev‌olissimevolmente_ \".'", "\n\n'I'll say it slowly.'", "\n\nBen winked, then snatched up his rifle and broke cover. ", "The sniper had been waiting, poised to shoot, and his reflexes were sharp. ", "Ben was halfway to the truck when a bullet zipped much too close for comfort behind him. ", "Still running, he sacrificed another bullet with a snap shot intended more to cover himself than hit anything. ", "He reached the truck and ducked behind it. ", "He glanced back at the rock. ", "Anna was out of sight.", "\n\nBen inched his way up the left side of the truck. ", "The angle at which it sat meant that if he kept pressed against its flank, he was shielded from view. ", "Diya Sharifi's body lay sprawled with one arm outflung under the rocker panel. ", "His blood had soaked into the dirt to make a dark, almost purple patch on the ground. ", "Ben stepped over him. ", "He worked the rifle bolt one more time. _", "Shlick-shlack_. ", "Chambered the fourth round. ", "Just two cartridges left. ", "He was almost at the open driver's door. ", "He could see the bunch of keys dangling from the ignition. ", "If he could scramble inside the cab without getting shot, fire up the engine and slam the truck into reverse and hit the gas as hard and fast as he could while locking the steering all the way right, he had a fair chance of getting the vehicle backed up close to where Anna was hiding behind the big boulder. ", "A lot of things could go wrong. ", "But it was a plan.", "\n\nThen the plan fell apart even before it began. ", "Ben was so focused on getting to the door that he almost didn't notice the movement sixty yards the other side of the truck, halfway up the right-side bank of the canyon. ", "A man in a dark jacket, carrying a submachine gun.", "\n\nIt was just as Ben had feared. ", "They were closing in around their flanks.", "\n\nHe and the man both saw each other at the same instant. ", "And now the slow, exploratory exchange of fire erupted into a full-on gun battle. ", "The guy swivelled his weapon and fired, but he was in too much of a hurry and his footing was bad on the rough slope. ", "Bullets thunked into the truck and blew out the passenger window. ", "Ben swung the Mauser up, caught his target in his sights, and let loose his precious fourth and penultimate shot.", "\n\nThe bullet took the guy right in the head. ", "The pink mist caught the wind. ", "He crumpled at the knees, then dropped straight down like a sack of washing. ", "His weapon went clattering down the slope.", "\n\nBen worked the rifle bolt. _", "Shlick-shlack_. ", "One guy down. ", "And one round left. ", "Like a pauper's last penny in the world, with a stack of debts and bills to pay and bailiffs beating on the door.", "\n\nWhich meant the last thing Ben wanted at this moment was to be forced to use it. ", "But in war, just as in life, what you want is seldom what you get. ", "A second later, another figure of a man appeared – on the left this time, high on the canyon bank, clutching a black rifle with a compact ACOG scope. ", "He was directly above Anna and tracing a zigzag path down towards her. ", "From the way he was peering down the slope, Ben realised that he had a line of sight to her. ", "He was raising his gun to his shoulder. ", "Watching her through his scope. ", "All he had to do was squeeze the trigger, unless Ben did it first.", "\n\nBen did. ", "The perfectly timed and balanced reflexive aim-fire. ", "The ultimate synthesis of man and machine, as though the battle rifle had been an extension of his mind and body.", "\n\nBut then it went horribly wrong. ", "At the exact moment that Ben pressed the trigger, the sniper fired again, punching a hole through the open door of the truck next to him. ", "It missed Ben, but it also caused him to jerk his shot. ", "The last bullet from the Mauser vanished somewhere beyond the empty horizon. ", "The figure on the slope quickly scurried for a cluster of rocks and ducked under cover. ", "He needn't have worried. ", "Ben was now clutching a steel and wood club.", "\n\nBut the sniper was still happily in business – and let off another shot to prove it. ", "The truck shuddered from the impact. ", "The tell-tale _ping_ of a pointed copper-jacketed bullet penetrating deep into metal, carving a channel of destruction through the vehicle's vital innards. ", "The sniper followed that one up with another that blasted out the driver's side window and showered Ben with broken glass.", "\n\nAnd then it got worse.", "\n\nThe cry that rent the air was full of pain and fear. ", "Anna's voice. ", "Ben felt the blood freeze in his heart and wheeled around.", "\n\nBozza had her.", "\n\n## Chapter 49\n\nHe'd found his way down the slope unseen, and had come up behind her. ", "He had jerked her upright, dragged her out from the shelter of the boulder behind which she'd been hiding and was clutching her tightly in front of him, one hand clamped over her mouth, the other holding a pistol against her head. ", "Her eyes were rolling and she was struggling in his grip, but he was too strong for her. ", "It was a replay of Olympia, except this time Ben was unarmed and helpless to do anything about it.", "\n\nAnything except a strategy that had worked well for him in the past, and saved his life a couple of times. ", "Pure brazen bluff.", "\n\nBen wasn't thinking about the sniper as he walked towards Bozza and Anna. _", "Let the bastard shoot_ , he thought. ", "If he allowed this woman to be killed on his watch, it was what he deserved anyway. ", "He pointed the rifle at Bozza and worked the bolt one last time, ejecting the fifth and last spent case and making a big show of slamming a non-existent sixth into the empty chamber.", "\n\n'Put it down, Bozza,' he said as calmly as he could make his voice work. ", "He saw the tiniest narrowing of the man's eyes at the mention of the name.", "\n\n'It is Bozza, isn't it? ", "Franco was what, your elder brother?'", "\n\nThe man gave a slow nod. ", "His expression didn't change. ", "The eyes stayed narrowed, piercing into Ben's with a blaze of hatred.", "\n\nBen took another step closer. '", "Tell me, are you trying to uphold some kind of family tradition?' ", "he said. '", "Dying in the line of duty, to serve a nutcase like Usberti? ", "Or did you just take this job to get back at me?'", "\n\nThe man said nothing. ", "He screwed the gun muzzle harder against Anna's head. ", "A muffled whimper of pain squeaked through his black-gloved fingers. ", "She tried to bite him, but he just gripped her more tightly.", "\n\nBen took another step closer, holding the rifle steady. ", "He said, 'I'll bet you always wondered how Franco died. ", "I was there, so I'll tell you. ", "He was shot with a small-calibre pistol. ", "Not much more than an antique one, at that. ", "Once in the throat and once in the head. ", "The second shot damn near took the whole top of his skull off. ", "You should have seen it. ", "But that was nothing next to what this rifle will do. ", "At this range it'll peel you like a banana. ", "The question I'd be asking myself in your position is: is she worth it? ", "And then I'd let her go, right sharpish. ", "I'd advise you to do the same.'", "\n\nBozza still didn't speak. ", "The cold burning light in his eyes flickered downwards for a few moments and he looked at the rifle in Ben's hands. ", "Running up and down its length, taking in the detail of form and dimension as if he was digitally scanning it with his brain. ", "Then his eyes flicked back up to lock Ben's once more, and a ghost of a knowing smile twitched one corner of his lips. ", "He took his left hand away from Anna's mouth. ", "Ignoring the torrent of furious Italian that poured out of it, he kept his eyes on Ben. ", "He held up his left thumb, then his forefinger, then the other three. ", "Counting, _one, two, three, four, five_. ", "Then he pointed at the rifle and the smile spread into a twisted kind of smirk that said, 'I can count, my friend. ", "You fired five, that's a 98k you're holding there, and you're clean out of ammo.'", "\n\n'Shoot him, Ben!' ", "Anna yelled.", "\n\nBut Ben knew what Bozza knew: that if he was going to use the rifle, he'd have to cover the remaining distance between them faster than the pull of a trigger, and beat his enemy's brains out with it. ", "That steel butt plate was good for all kinds of uses. ", "If it had been just him and Bozza, he might have chanced it, even if it risked taking a bullet. ", "But the added element in this equation was Anna. ", "One move, and Bozza would kill her before Ben was even halfway there. ", "Ben could read that clearly in his eyes.", "\n\nBen looked at Anna. ", "He shook his head and saw the despair flood through her face. ", "Then he looked back at Bozza. '", "Some other time, then,' he said. ", "He let the rifle drop from his hand. ", "It clattered to the ground at his feet.", "\n\nHe might have expected his victorious enemy to offer some kind of comment at a time like this. ", "But Bozza said not a word. ", "His eyes darted up the canyon. ", "Waiting for his buddies to arrive, the ones Ben hadn't killed. ", "Ben gave Anna a reassuring wink. ", "Like saying, 'This is just a temporary setback, we'll be fine.' ", "He wished he could be so sure of that himself.", "\n\nOne by one, the others showed themselves. ", "First came the one Ben had missed with his last shot. ", "He slithered and scrambled down the rocky slope to join Bozza, keeping his submachine gun carefully pointed at Ben the whole time. ", "He was a heavy-set guy with greying hair and bulging eyes like an exophthalmic fish. ", "If he'd been one of the assault team back in Ankara, Ben didn't recognise him without his gas mask.", "\n\n'You're the luckiest man alive,' Ben said. '", "Better enjoy it while it lasts.'", "\n\nPopeye held his gun one-handed while he fetched a small walkie-talkie handset out from his jacket, turned it on with a squawk of static and said into it, 'Mission accomplished, boss. ", "We're one man down. ", "Iacono didn't make it, thanks to this piece of scum. ", "Be with you shortly.'", "\n\n'Same old Usberti,' Ben said. '", "Leading from the rear. ", "Letting the expendable grunts do the dying for him.'", "\n\n' _Stai zitto, bastardo inglese_.'", "\n\n'That would be \" _bastardo metà irlandese_ \",' Ben said. '", "Let's get this right.'", "\n\n'One more word,' Popeye warned him, 'and I'll shoot you in the balls.' ", "He put the radio away and then used his free hand to take a set of steel handcuffs from another pocket. ", "Stepped behind Ben, pressed the muzzle of the gun against the back of his neck. ", "Grabbed one arm and jerked it behind Ben's back, then the other. ", "Ben could have broken his spine in two effortless moves, three at most. ", "But Bozza's pistol was still trained on Anna. ", "Ben felt the bite of cold steel bracelets on his wrists and knew that his window of opportunity had just closed. ", "For the moment.", "\n\nThe third guy to appear was the sniper. ", "He emerged from a fissure between two big rocks on the canyon slope and ambled towards them with his scoped precision rifle slung casually over one shoulder, a bandolier of ammunition draped around the other, as though he'd come prepared to fight off a battalion. ", "Like Bozza and Popeye, he was wearing a black quilted cold-weather jacket, black high-leg combat boots, black gloves and a black beanie hat. ", "As he reached the assembled group he flashed a lurid grin at Anna. '", "Aldo Groppione, _al tuo servizio_.' ", "He ran his tongue over his lips.", "\n\n' _Vai a morire ammazzatto_ ,' she fired back at him. ", "Italian for: 'Go and die murdered.'", "\n\n' _Maledetta puttana_ ,' Groppione sneered in disgust, then turned a cocky grin on Ben. ", "He pointed at the Mauser lying on the ground. '", "Not bad shooting, from an antique musket.'", "\n\n'Not so bad yourself,' Ben said. '", "I'll bet you could hit an unarmed man in the chest from a kilometre away in high wind and snow. ", "Taken any trips to Normandy recently?'", "\n\nGroppione chuckled. '", "That was me, all right. ", "Most fun I ever had with my trousers on.'", "\n\n'Shame you got the wrong guy,' Ben said.", "\n\n'Yeah, well, you Brit pricks all look alike. ", "Stupid shit never knew what hit him.'", "\n\n'I meant shame for you,' Ben said. '", "There are consequences for that kind of mistake.'", "\n\n'Such as?'", "\n\n'Such as, first chance I get, I'm going to stretch your neck like a chicken.'", "\n\nGroppione stared at him. '", "Like a chicken?'", "\n\n'That's what I said,' Ben told him. '", "You'd better believe it.'", "\n\nGroppione laughed loudly. '", "You got some _coglioni_ on you, man. ", "I'll give you that. ", "It's almost gonna be a shame to have to plug you.' ", "Turning to Popeye he said, 'I say we do him here. ", "What do you reckon, Starace?'", "\n\nFish-eyed Starace shook his head. '", "You know the boss said to bring both of them in alive if we could.'", "\n\n'Yeah, well, what if we didn't? ", "Accidents happen, right?'", "\n\n'You want to piss him off? ", "Nor me. ", "Let's go.'", "\n\nGroppione pointed at Anna. '", "You going to cuff her too?'", "\n\n'What's the matter, Groppione? ", "You afraid of a woman?'", "\n\n'I like a bitch tied up, know what I mean?'", "\n\nPrisoners now, Ben and Anna were marched at gunpoint up the canyon, then up a winding path through the rocks that took them past the nook where Groppione had set himself up. ", "It was a well-chosen spot, Ben had to admit. ", "The ground was littered with empty cases and screwed-up Power bar wrappers. ", "A busy assassin's working lunch.", "\n\nA little way further on, the slope peaked and then dropped away into a barren plateau where the cold wind whipped up little dust devils and rustled the few hardy shrubs that could find a place to grow. ", "Snaking across the plateau's outer edge was a rough, unmade single-track road, the kind that needed passing places every few hundred yards so that on the rare occasions two vehicles met, they could squeeze by one another.", "\n\nThe nearest passing place was a short walk up the road. ", "Filling its entire length was a stationary vehicle that was an incongruous sight out here in this empty wilderness. ", "It wasn't a van, or even a lorry. ", "It was an American-made six-wheeled RV the size of a touring coach. ", "Its acres of colourful paintwork were streaked with whorls of dust and dirt from a lot of road miles. ", "It looked as though it must have been parked there for some time, long enough for whoever was inside to make themselves comfortable. ", "Hydraulic slide-out sections were extended on both sides. ", "A haze of warm air was streaming from a heating exhaust vent at the rear. ", "Pull-down blinds screened the inside of every window.", "\n\n'Cosy,' Ben said. '", "A mobile command centre fit for a king. ", "Or maybe just a dead former archbishop. ", "You boys have a hot tub in there as well?'", "\n\n'Shut your mouth,' Popeye said, and prodded him in the back with his submachine gun barrel.", "\n\nBozza led the way up to a side door and stepped up an extending metal gangway. ", "The door opened with a whoosh of hydraulics. ", "Ben and Anna were prodded and shoved after him. '", "Welcome aboard, girls,' Groppione said with a leer.", "\n\nWarm air and the soft strains of a Bach choral cantata wafted from the RV's interior as Ben climbed the steps, Anna behind. ", "The inside of the huge motor coach seemed even more cavernous than it looked from the outside. ", "It smelled of leather and new carpeting. ", "Walnut cabinets and faux marble tops reflected the light from clusters of LED ceiling spotlamps. ", "At the very front, the driving cab looked like the bridge of a starship. ", "Between it and the side entrance, a massive swivel armchair upholstered in tan cowhide was turned with its back to Ben and Anna. ", "The chair slowly rotated around to face them.", "\n\n'Major Benedict Hope,' said the familiar voice of the chair's occupant. '", "Professoressa Manzini. ", "How happy it makes me to welcome you both to my humble domain.'", "\n\n## Chapter 50\n\nMassimiliano Usberti drew himself up and stepped towards them, arms spread as though greeting long-lost friends. ", "He was dressed in an immaculate double-breasted suit tailored from white silk over a black shirt. ", "His hair was carefully slicked back and the gleam of his shoes was as dazzling as the Panerai watch on his thick wrist.", "\n\nUsberti's men spread out around him. ", "Groppione stalked over to the driving cab and lounged in an armchair not much smaller than his boss's throne. ", "The bug-eyed Starace stayed near Ben and Anna, covering them cautiously with his weapon. ", "Bozza was as motionless as a hunter-killer cyborg in standby mode, recharging itself before the next electronic data command sent it back into combat. ", "Hovering nervously in the background stood a tall, stooped, gaunt, bespectacled younger man Ben had never seen before. ", "The way he was standing hinted at some kind of severe spinal curvature. ", "He certainly didn't have the look of one of Usberti's typical foot soldiers, either, wearing a shortened version of priestly black vestments and a large silver crucifix on a neck chain.", "\n\n'I really hate being called that,' Ben said.", "\n\nUsberti affected a look of surprise. '", "It bothers you to be addressed by your former rank of major? ", "Please accept my sincerest apologies. ", "I must have forgotten what a modest fellow you are.' ", "Smiling, he turned towards Anna. '", "Likewise, I must confess it had previously slipped my notice just what a truly attractive creature the professor is. ", "No photographer's lens could accurately capture such radiant beauty. ", "I am honoured and delighted to make your acquaintance in person at last.'", "\n\nAnna said, rapid-fire, ' _Usberti, ficcati una barca in culo con i remi aparti_.' ", "Or, 'Stick a boat up your ass with the oars out.'", "\n\nBen was impressed. ", "Jeff Dekker himself couldn't have come up with a more colourful turn of phrase, or said it half as well.", "\n\n'Unfortunately, her magnificence is betrayed by the ugliness that spouts from those pretty lips,' Usberti said, his smile unbroken.", "\n\n'You're looking rather well yourself, old boy,' Ben told him. '", "I have to say, death becomes you. ", "Should try it for real sometime. ", "I could give you a hand with that. ", "In fact, I intend to, and soon.'", "\n\nUsberti gave a gracious nod. '", "I admire your bravado, Benedict. ", "Am I permitted to call you Benedict? ", "We are old friends, after all. ", "On this occasion, however, your defiant spirit is much misplaced. ", "You know as well as I do that you are outmatched, outgunned and outwitted, with no possibility of escape.'", "\n\n'Maybe I just wanted to see if it was really you,' Ben said.", "\n\n'In the flesh, as you see. ", "Rumours of my demise have been, as the saying goes, greatly exaggerated.'", "\n\n'And the poor sod they fished out of Lake Como with half his face chewed off was who, another of your old Gladius Domini cult followers? ", "You always did look after your own.'", "\n\nIf Usberti objected to the word 'cult' he didn't show it. '", "I believe the acronymic term used in the British Army is a \"Ponti\",' he said. '", "A person of no tactical importance. ", "One who had the misfortune to bear a striking physical resemblance to me.'", "\n\n'Of all the bad luck, eh?' ", "Ben replied. ", "He flexed his wrists behind his back. ", "The cuffs were tight. ", "They hurt. ", "He cast a glance at the tall, stooped priest. '", "I see you found yourself a replacement for Fabrizio Severini.'", "\n\n'This is Silvano Bellini, my new assistant,' Usberti said.", "\n\n'Let's hope for his sake that he does better than his predecessor,' Ben said. '", "Otherwise known these days as Prisoner Five-Six-One-Three-Nine.'", "\n\nUsberti's eyes narrowed. '", "Interesting that you should know that.'", "\n\n'That's me, full of useful information.'", "\n\n'May I ask how you came by it?'", "\n\n'Being your partner in crime is a bad deal all round,' Ben said. '", "They don't last long, do they? ", "Those that do, end up hating your guts. ", "Severini hated yours so much that he wrote me a letter from his prison cell, warning me that you might be up to your old tricks again. ", "Imagine my surprise that you hadn't learned the error of your ways and become a reformed character.'", "\n\n'A letter,' Usberti said, pursing his lips. '", "I wonder what could have motivated him to do such a thing?'", "\n\n'He said God told him to. ", "Seems that even the Almighty has it in for you these days. ", "Which puts the rest of us into pretty good company.'", "\n\nUsberti's tall, gaunt assistant hadn't uttered a word since Ben and Anna had arrived. ", "He was shifting nervously from foot to foot, looking ever more bent over and staring down at the floor with his brow corrugated by a deep frown. ", "Ben thought that maybe he didn't like the Lord's name brought into this. ", "Or maybe the idea of ending up in jail as a consequence of running around with crooks like these had never occurred to him before now.", "\n\nAnna hadn't taken her eyes off Usberti since they'd walked in, glaring at him as though she wanted to slit his throat. '", "Where's Ercan? ", "What have you done with him?'", "\n\nUsberti looked at her a moment before replying. '", "Oh, he is nearby. ", "And I must say we owe him a debt of gratitude for his contribution to our knowledge regarding the possible whereabouts of the idol. ", "Having seen the fruits of his research, you do not need me to tell you what a truly diligent scholar he is. ", "So diligent, in fact, that he was able to share with us a number of his most recent discoveries that you would not find in his notes. ", "Discoveries of which you are as yet unaware, but which have cast a very important new light on our little quest.'", "\n\nUsberti paused, smiling at Anna as if inviting her to say something. ", "When all she did was stare at him in hatred, he went on: 'You did not know, for instance, that within the last few days your associate, dissatisfied with the progress of his research, delved yet deeper into the Persepolis Fortification Archives to unearth fresh information. ", "He additionally made further inquiries from a contact of his, one Dr Serge Munoz of the Joint International Syrian Expedition, currently surveying the ancient city and Roman legionnaire garrison at Al-Rafina. ", "We now learn that the Babylonian renegade Ashar Muranu did not remain long in Harran, though what became of the rest of the family is unknown. ", "Hitherto-unresearched PFA records show that he fled from here to the ancient city of Karkemish, where he established a new base, attracted new followers, and attempted further acts of insurrection against the authorities. ", "It was in Karkemish that, in 515 BC, he was finally caught and executed. ", "There his story ends, while ours is only about to begin.'", "\n\n'Ercan told you all that?' ", "Anna said in disbelief.", "\n\n'Oh, and much more besides. ", "Consequently, it appears that our search must now take us towards Karkemish. ", "A place so steeped in heritage, filled with such ancient wonders. ", "But I would not presume to lecture a learned historian on the subject – perhaps you would like to share your considerable wealth of knowledge with a mere amateur such as myself?'", "\n\n'The only thing I share with you, you murdering pig, is the air inside this stinking camper van, so –' She finished in Italian. '– _", "vaffanculo a chi t'è morto!_ '", "\n\nWhich, roughly translated, was telling Usberti to go and screw the souls of his dead family members. ", "It was hard to tell which offended him more, that or calling the huge luxury RV a camper van. ", "His face purpled for a moment, but he quickly recovered his urbane demeanour.", "\n\n'Then you leave it to me to sum up what little I know of Karkemish and its ancient past. ", "Formerly a monumental capital city in north-western Mesopotamia, no more than seventy-five or eighty kilometres from where we stand, to the west and a little to the south. ", "Frequently mentioned both in scripture and in extra-Biblical texts. ", "Once upon a time, an important seat of power for Hittite and Neo-Assyrian dynasties, as well as the site of the defeat of the Egyptian Pharaoh Nacho the Second at the hands of the forces of King Nebuchadnezzar himself, six hundred and five years before our beloved Lord Christ walked this earth. ", "Surely it cannot be a coincidence that Ashar the Babylonian would have chosen such a symbolic location for his last stand against the Persian Empire? ", "And what a fitting resting place for the golden idol crafted in honour of Babylon's greatest ruler.'", "\n\nBen was barely listening to Usberti speak. ", "He was too busy picturing that mental map again. ", "And what he was seeing there wasn't good news.", "\n\nUsberti continued: 'All that remains today, of course, are scattered rubble fields where once stood proud palaces, temples and mighty ramparts. ", "Excavation attempts there have been somewhat sporadic, beginning in 1878 for only three years, then recommenced in 1911 by notable archaeologists including Britain's own T.E \"Lawrence of Arabia\". ", "Sadly, the advent of World War One interrupted these activities with no further resumption until as recently as 2011, when a joint team of Turkish and Italian scholars led by Professor Nicolò Marchetti of Bologna University resurrected the excavation project and campaigned for the ruins of Karkemish to be designated a UNESCO heritage site. ", "However, once again, such worthy efforts were to be hampered by the same endless litany of human conflict and destruction.'", "\n\nIt was the conflict and destruction that Ben had been thinking about, with a sinking heart as he began to realise where Usberti was intending to take them.", "\n\nBecause in modern times the ancient site of Karkemish was overshadowed in every sense by its near neighbour. ", "Just a mortar shot away, straddling the Turkish–Syrian border in one of the most fiercely contested territories of the ongoing Syrian civil war, was Jarabulus.", "\n\nBen had had a bellyful of military goings-on during his Army career, and followed little of what was in the news – but he knew enough to know that Jarabulus had been occupied since 2013 by forces of the Islamic State of Iraq and the Levant, better known as ISIL, who had used it as a base from which to lob rockets and shells over the border into Turkey. ", "It was only months since Turkish land forces and troops of the Free Syrian Army had responded in a military push called Operation Euphrates Shield, dropping heavy bombardment on Jarabulus and supported by air strikes from US Air Force jets, in an attempt to oust the militants. ", "The last he'd heard, FSA troops had pressed their advance far enough to storm Jarabulus, only to find the city emptied of insurgents and ISIL forces largely pulled out of the area ahead of their invasion. ", "But all kinds of battles were still being fought over the region as the two sides went back and forth in a desperate effort to take and retake the same old ground.", "\n\nNot just two sides: it was an increasingly confused nightmare welter of warring factions. ", "New Syrian Army, Free Syrian Army, Democratic Syrian Forces, Syrian Islamic Liberation Front; then there were the Russians, supporting the Assad regime, and the Americans, trying to destabilise it, having themselves a fine little replay of the Cold War. ", "The Abu Amara Brigade, the Jaysh al-Islam, the Jabhat al-Shamiya, the Mujahideen, the Kurdish YPG Militia, and probably a thousand more, all slip-sliding around in an ocean of blood and ever-shifting internal allegiances. ", "It hadn't surprised Ben to hear reports that British Special Forces units were unofficially roving about in the middle of the big ugly tinderbox that was just waiting to kick off into a third world war, if and when the politicians proved insanely stupid enough to let that happen.", "\n\nIn short, it was the last place he wanted either Anna or himself to be.", "\n\n'You talk too much, Usberti,' Anna said. '", "I asked about Ercan. ", "You said he was nearby, so let me see him. ", "Right this minute, you hear me?'", "\n\n'How can I refuse a direct request from a delightful lady?' ", "Usberti said. '", "By all means.' ", "He turned to Bozza. '", "Ugo, would you oblige the professor by reuniting her with her learned associate?'", "\n\nBozza wordlessly walked down the length of the RV and went to what Ben guessed must be the door to a bathroom or bedroom, at the tail end of the vehicle. ", "Bozza opened the door, stepped through it and closed it behind him.", "\n\nWhat Ben expected to happen next was for Bozza to re-emerge clutching Ercan Kavur, drag him up the aisle and dump him at Anna's feet. ", "Probably doped up to the eyeballs and semi-conscious, which would explain the silence from behind the door. ", "Most likely battered and bruised, too. ", "It seemed unlikely that he'd have fed so much information to his captors without being under some duress. ", "It wouldn't be a pretty sight, and an upsetting one for Anna.", "\n\nBut Ben was dead wrong.", "\n\nThe door reopened. ", "Bozza came out alone, carrying something in his hand. ", "It was a blue plastic cool box with a folding handle, the kind of insulated container people took with them to keep their beer cold on a camping trip. ", "Bozza walked back up the length of the RV. ", "Minute tremors of its suspension rocked the floor under his weight. ", "He carried the box in front of him at arm's length. ", "Set it down on a table. ", "Then he folded down the handle, unsnapped a catch at each side, lifted off the lid, and tilted the box towards them to display its contents.", "\n\nIt wasn't a chilled six-pack of beer.", "\n\nAnd that was when Ben saw how mistaken he'd been. ", "They hadn't beaten Ercan Kavur up at all. ", "Or, if they had, they hadn't touched his face, which looked perfectly unbruised as it stared at them from the blue plastic box.", "\n\nThey'd cut off his head.", "\n\n## Chapter 51\n\nThis wasn't the first time Ben had found himself in the presence of one part or another of a decapitated body. ", "But Anna had led a more sheltered life than he had. ", "Her cry of anguish and horror filled the RV. ", "Her knees folded under her and she covered her mouth with her hands.", "\n\n'Take her outside, Ugo,' Usberti said, grimacing. '", "I would rather not have the carpeting covered in vomit.'", "\n\nBozza replaced the lid on the cool box, stepped over to Anna and hauled her upright by the arm. ", "He marched her to the door, activated a switch that made it whoosh open, then shoved and dragged her down the metal gangway and let her go so she could bend double at the side of the road and throw up.", "\n\n'They don't call you Mr Charm for nothing, do they?' ", "Ben said to Usberti. '", "What did you do with the rest of the guy, feed him to your lapdog?'", "\n\nUsberti shrugged. '", "There is a limit to every man's usefulness. ", "Regrettably, we reached a stage where Signor Kavur no longer served any purpose to us. ", "Moreover, I see no need to employ the services of two expert historians, when one will do me just as well. ", "Now that she is up to date with her colleague's latest discoveries, Professor Manzini will be quite able to help us achieve our objective. ", "As for what to do with you, my dear Benedict, I have another purpose in mind. ", "One for which your particular skills qualify you better than any of my men; or should I say, my _remaining_ men. ", "Once again, you have demonstrated your perplexing habit of diminishing my human resources.'", "\n\n'They'll be diminished a lot more by the time we're done,' Ben said. ", "He couldn't point, so he jerked his chin in the direction of Aldo Groppione. '", "Starting with him there. ", "But he already knows that.'", "\n\n'Fuck you,' Groppione said. '", "Boss, I'm telling you, it's a mistake to keep this fucker alive. ", "He's tricksy. ", "You can't trust him.'", "\n\n'You can trust me,' Ben said. '", "You can set your watch by me. ", "Start counting the minutes you have left. ", "I'll save you till last, Usberti. ", "Just so I can see the look on your face when you're all alone and it's time to say bye-bye.'", "\n\n'I would expect nothing less from such a worthy opponent,' Usberti said. ", "He motioned towards Groppione and Starace without looking at them. '", "And I have no doubt that, left to your own fearsome devices, you would have little trouble disposing of these men. ", "But Ugo Bozza is another matter. ", "His lethal expertise is second to none, and he has waited a long time to avenge his elder brother.'", "\n\n'Or to join him in hell.'", "\n\n'We shall see. ", "As they say, may the best man win.'", "\n\nBozza came back inside, shoving Anna in front of him. ", "All the defiance had gone out of her and she looked waxen and utterly defeated. ", "Bozza slung her into one of the long leather sofas that lined the sides of the motor coach's opulent interior.", "\n\n'I believe we have some trash to dispose of,' Usberti said. '", "Then let us get underway. ", "There is no time to lose.'", "\n\n'How about taking off these cuffs for me?' ", "Ben said. '", "Seems a shame to be travelling in this thing and not be comfortable.'", "\n\nStarace just snorted in reply. ", "He slung his weapon over his shoulder, grabbed the cool box, carried it outside and drop-kicked it into the scrub bushes that edged the road. ", "He came back inside wiping his hands, then walked over to a digital display panel with a cluster of buttons and pressed one. ", "The door sucked shut behind him. ", "He pressed another, and there was the whirring of an electric motor as some hidden mechanism folded the extending gangway steps into a recess beneath the door. ", "The third button activated a hydraulic system that retracted the extending slide-outs on both flanks of the vehicle. ", "The walls and floor sections closed in, suddenly transforming the RV's interior back from a penthouse apartment to something resembling a luxury narrowboat.", "\n\n'Take a seat, asshole,' Starace said to Ben, unslinging his weapon and using it to motion at the sofa where Anna was sitting. ", "He leaned back in one opposite, now much closer across the narrowed centre aisle, with the gun resting on his thigh and pointing lazily at Ben.", "\n\nMeanwhile, Groppione was getting behind the wheel of the starship. ", "The diesel engine started up with a muted snort, rippling the length of the huge vehicle with faint tremors of vibration. ", "Groppione pushed the oversized chrome gear selector into drive and the motor coach shuddered against its brakes. ", "Usberti returned to his throne. ", "His assistant, Bellini, perched on a fold-down seat nearby. ", "Bozza hovered towards the stern end of the coach, his eyes never leaving Ben. ", "Ben ignored him and sat close to Anna, but she was in a world of her own.", "\n\nThere was a hiss as Groppione released the airbrakes. ", "Then they began to roll.", "\n\nThe winding track meandered downhill for several kilometres. ", "The coach had been built to cruise the glass-smooth, arrow-straight interstates of North America, not for hacking through the camel trails of south-eastern Turkey. ", "Groppione was taking it very easy, but still the suspension was rocking and bouncing, and the rear end was swaying like a pendulum through the twists and turns. ", "Ben couldn't lean back on the soft leather sofa with his hands cuffed behind him, so he sat leaning forward and watched the road.", "\n\nNobody spoke. ", "Bellini looked deep in his own worries. ", "Starace's eyes were closed, but he still had his finger on the trigger of his weapon. ", "Bozza's were wide open and fixed on Ben like a chameleon watching a fly.", "\n\nThey eventually joined a windswept highway and Groppione was able to put on some speed. ", "The road carved through the flat, wintry semi-desert landscape for an hour without meeting any traffic. ", "Usberti seemed to be enjoying the ride, a contented smile on his face as though the golden idol was already in his hands. ", "Or a treasure map with a big red X that marked the spot where all they had to do was start digging. ", "Either he was delusional, Ben thought, or he knew something they didn't. ", "Was it possible that Ercan Kavur had figured it all out? ", "Found the key to a secret that had eluded the best of the world's historians for two and a half thousand years?", "\n\n'You seem to have a very good idea of exactly where we're headed,' Ben said to him. '", "As you've press-ganged Professor Manzini into serving as your archaeology consultant, it might be appropriate at this point to fill her in on the details.'", "\n\nProfessor Manzini didn't seem to give a damn one way or the other. ", "But Ben needed to form a strategy. ", "In tactical planning, if you weren't thinking ahead, you were going backwards.", "\n\nUsberti wasn't about to be drawn, however.", "\n\n'All in good time, Benedict. ", "All in good time,' he said.", "\n\nWhich confirmed what Ben had been thinking, but didn't detract from his suspicion that Usberti was at least partly delusional. ", "Because no matter how confident he might be that he knew where the idol was, he was seriously underestimating the trouble they were going to have getting there.", "\n\nAnd the closer they got to the Syrian border, the more Ben could see the signs of trouble growing. ", "Slowly at first, then with dramatic speed, the highway around them began to crowd with traffic rumbling in both directions. ", "Most of it was military. ", "Dusty olive-green convoys of troop transports, armoured personnel carriers and heavily loaded supply trucks, giant articulated trailer lorries carrying tanks and artillery, formations of four-wheel-drive pickups crammed with men and ordnance. ", "The majority of the army traffic was Turkish, while the rest belonged to Syrian forces allied to President Erdogan's regime. ", "So far, nobody seemed to be bothering with the RV, but it was only a matter of time before they were pulled over by one lot of soldiers or another.", "\n\n'Great plan, Usberti,' Ben said. '", "This carnival float sticks out like a hot-dog stand at a Jewish wedding. ", "You think you're just going to go waltzing into the middle of a war zone?'", "\n\nUsberti said nothing.", "\n\nBen knew the border control was up ahead long before Groppione was forced to slow down for it. ", "Both lanes of the highway and a whole stretch of dusty, sandy terrain either side of it were teeming with troops and vehicles. ", "The checkpoint itself was hardly visible through the confusion, but it was clear that what little civilian traffic was attempting to pass through was being stopped and searched. ", "Several vehicles ahead, a dirty, battered Toyota farm truck loaded with goats was rolling at walking pace towards the checkpoint when a group of soldiers clustered around it with rifles pointed and a burly Turkish officer in wrinkled combat DPMs and a blue beret blocked its path with a raised hand. ", "One of the soldiers banged on the driver's window and made an exaggerated motion telling him to step out of the vehicle. ", "The guy was dressed in Arab garb, wiry and grey-bearded. ", "The soldiers yanked him out of the Toyota. ", "They weren't being particularly gentle about it. ", "They pushed and poked him around as the officer yelled something in Turkish. ", "The old Arab guy started nervously reaching around inside his garb for his papers, surrounded by threatening guns.", "\n\nGroppione turned round behind the wheel of the RV and threw a look at his boss that said, 'What do we do now?'", "\n\nUsberti still said nothing.", "\n\nAs the soldiers waited impatiently for the old goat farmer to produce his papers, Ben saw the Turkish officer glance over at the RV. ", "As if the huge gaudy bus could be missed, even in all the chaos and half-camouflaged with road dust. ", "The officer issued a brusque nod to some more of his men who were standing on the sidelines. ", "Four snapped to attention and came running over towards the RV, clutching their weapons. ", "MPT-76 battle rifles, standard issue to Turkish infantry. ", "Ben had used one in the past. ", "It was a good tool. ", "Not one that anyone wanted to have pointed at them.", "\n\nBen said, 'Let's see you talk your way out of this one, Usberti.'", "\n\nThe soldiers came closer. ", "They spread out around the front of the motor coach. ", "Three of them planted themselves right in front of it, aiming their rifles at the windscreen in a triangular formation. ", "The fourth marched up to Groppione's driver window, which was so high off the ground that he had to stand back to be seen. ", "He used his weapon to rap on the glass and started gesticulating angrily.", "\n\n'Boss?' ", "Groppione said, throwing up his hands. '", "Tell me what to do here? ", "The guy wants to see papers. ", "We don't have any.'", "\n\n'We are going through regardless,' Usberti replied calmly. ", "He turned and looked at Bozza, who had quietly stepped past Anna and Ben and was standing close to the big leather throne, looking expectantly back at Usberti.", "\n\nThe soldier was still rapping on the window.", "\n\nThe officer who had given the order was stepping away from the goat truck and walking towards them to see what the problem was.", "\n\n'We are going through,' Usberti repeated. '", "Nothing can stand in my way. ", "If God wills it, we will fight our way into Syria. ", "Ugo, shoot the soldiers.'", "\n\nBozza responded without hesitation, without the smallest flicker of doubt on his face. ", "He grabbed the submachine gun from Starace. ", "Checked it, flipped off the safety, and walked to the front of the RV.", "\n\n'Call him off, Usberti,' Ben said. '", "He's about to get us all killed.'", "\n\nBozza took aim through the window at the nearest soldier.", "\n\n## Chapter 52\n\nAll Ben could do was brace himself for the gunshot. ", "About one second after Bozza squeezed the trigger, every soldier at the checkpoint would respond with a concentration of gunfire that no one inside the RV would survive.", "\n\nWhen it came, the blast was stunning, like a massive clap of thunder. ", "Beyond any gunshot Ben had ever heard before. ", "The whole coach rocked violently on its suspension, as though a powerful percussion wave had slapped into it from outside. ", "Windows shattered and cracks appeared all over the windscreen as Groppione ducked behind the steering wheel and covered his head with his arms. ", "Bellini tumbled out of his seat and hit the floor. ", "Ben felt Anna tighten up with sudden terror next to him.", "\n\nAfter an instant's confusion, he realised what had happened. ", "Bozza hadn't fired the shot. ", "The blast had come from outside. ", "The scene he could see through the RV's now-cracked windscreen was one of total carnage. ", "The Turkish officer and a dozen of his soldiers had been laid flat by the explosion. ", "Several of them were torn apart. ", "Blood was everywhere. ", "Body parts were still falling from the sky. ", "Separated limbs were strewn across a circle fifty feet in radius. ", "Not just human ones. ", "Pieces of goat lay twitching with the fur singed and smoking. ", "Then the screaming began as dozens more injured men at the edges of the blast circle realised the horror of the damage done to them.", "\n\nAt the centre of it all, what was left of the Toyota farm truck was a black, torn shell engulfed in roiling fire. ", "Surrounding vehicles had been blown over onto their sides by the massive shockwave, flames belching from their scorched insides. ", "Nothing at all remained of the wiry little Arab guy who had been reaching inside his garb for his papers – and pulled out a remote detonator switch instead, triggering what the military called a VBIED, or vehicle-borne improvised explosive device – what everyone else called a car bomb. ", "Twenty or thirty pounds of Semtex cleverly stashed where few soldiers would think or care to search, under a pile of stinking goat bedding in the back of the truck, had done their work.", "\n\nThe result was a slaughterhouse. ", "Ben had been close to car bombs before, but never close enough to see the immediate aftermath from a ringside seat. ", "The checkpoint instantly fell into wild chaos. ", "Some soldiers tried to drag the mutilated survivors away from the flames. ", "Others simply ran, fearing secondary blasts if the fuel tanks of burning vehicles exploded. ", "Some began firing off their weapons in confusion at some unseen enemy hidden in the black smoke that was billowing up and blocking out the sunlight.", "\n\nUsberti surveyed the scene with an air of unflappable calm, then said, 'Groppione, drive on.'", "\n\nGroppione was too stunned to speak. ", "He slammed the selector back into drive, put his foot down, and the coach went lurching through the mayhem. ", "It had taken some shrapnel from the blast, but they were still in the game. ", "A soldier ran in front of them, yelling and waving his gun. ", "Groppione just accelerated towards him and he dived out of the RV's path.", "\n\n'Keep moving!' ", "Usberti commanded. '", "We do not stop for anything!' ", "The diesel engine grunted and rasped. ", "Groppione drove blindly through the smoke and flames, rolling over wreckage and crushing dead bodies and severed limbs. ", "Then the smoke cleared to reveal the path ahead, which the explosion had carved out of the busy checkpoint. ", "Groppione accelerated harder, and they were through and away, picking up speed. ", "Through the back window, Ben saw soldiers chasing them on foot, shouting, raising their rifles. ", "A crackle of shots sounded over the roar of the diesel. ", "Bullets smacked into the tail of the RV. ", "But the soldiers had more to worry about, and quickly gave up the chase to return to their shattered checkpoint.", "\n\nMassimiliano Usberti looked as proud as if God Almighty himself had come down and parted the Red Sea to let him through. '", "Faith, men. ", "Faith. ", "The Lord is with us.'", "\n\nGroppione said, 'Amen to that.' ", "Starace closed his eyes and sank his chin to his chest in a moment of reverent prayer. ", "Bozza said nothing, and neither did Ben, though for other reasons. ", "If there was a God up there, Ben was thinking, and if He had any influence at all on what happened down here below, then He truly did move in mysterious ways. ", "Or, if Usberti was just lucky, then given what plans his good fortune might allow him to carry out, that in itself could be taken as pretty good proof that there was no God up there after all.", "\n\nOr, maybe God wasn't such a good guy.", "\n\nBen and Anna sat close together on the leather sofa. ", "The cuffs were constantly chafing and biting his wrists, and there was no way he could sit that didn't hurt, but he was concerned only for her. '", "Are you okay?' ", "he mouthed silently. ", "She tried to smile. ", "She nodded. '", "I'm okay,' she mouthed back.", "\n\nSoon, all that could be seen of the border checkpoint was a tower of black smoke far behind them as they rolled onwards into Syria, due south. ", "The sun was beginning to set in the west, casting its pale rays through the Perspex window behind Ben and Anna. ", "Sand and dust were blown in ever-shifting waves across the RV's path by the wintry wind. ", "Warm air whispered through the heating vents. ", "The road went on, and on, through the arid landscape. ", "If the soldiers had radioed ahead to alert other units to the presence of a large, suspicious vehicle in the vicinity, there was no sign of it. ", "They drove past a burned-out tank that sat lopsidedly at the roadside, its armoured flanks perforated and charred black, alone in the desert like a silent monument to the men who had died there. ", "And the thousands more who would before this senseless war passed into history to join all the other senseless wars that men had fought since the dawn of time.", "\n\n'So are you going to tell us where we're going, Usberti?' ", "Ben said at last.", "\n\nUsberti was sitting on his throne with its leathery back to them, so that all they could see of him were his feet and elbows. ", "He swivelled round to face them. '", "To a place where your talents will be put to good use, Benedict,' he replied. '", "I told you I had a purpose for you. ", "That is the only reason I have chosen to keep you alive, for the moment.'", "\n\n'That's very gracious of you,' Ben said, staring at him. '", "Whatever it is, I hope I don't disappoint.'", "\n\n'I know you will not.' ", "Usberti smiled, then turned his gaze on Anna. '", "And neither shall you, my dear Professor. ", "Your own skills will soon be brought to bear, now that our quest nears its end.' ", "He rose from his chair and walked down the length of the RV towards where they sat side by side, steadying himself against the lurch and sway of the vehicle. '", "I suppose the time has come for me to reveal to you what your late associate was kind enough, shortly before his demise, to reveal to me.'", "\n\n'You could even have let him tell us himself,' Ben said. '", "It would have saved you the trouble. ", "And saved him some grief.'", "\n\n'No trouble,' Usberti said nonchalantly. ", "He waved Starace away, then lowered himself onto the sofa opposite them. '", "In the bitter winter of 1923 an expeditionary team of Austrian archaeologists led by one Hans Von Grüber came across a mysterious discovery, high on a rocky plateau. ", "It was just a few hours' horse ride across the Syrian Desert from what was then the largely abandoned excavation project at Karkemish. ", "Their find was a set of inscriptions carved into the face of a sheer sandstone cliff, near to what they believed to be the remains of an ancient fortress. ", "The location was extremely hazardous to access, so much so that two of their team fell to their deaths in their attempts to investigate the inscription. ", "Von Grüber and another of his colleagues survived, however, and despite the difficult conditions they were able to record detailed transcripts of their discovery. ", "Von Grüber later compared it to the inscriptions at Mount Behistun in Iran, discovered ninety years earlier. ", "But while the Behistun carvings were of Persian origin, celebrating the glories of the Emperor Darius, these by contrast were writings in an obscure cuneiform language. ", "Moreover, while the Behistun carving is a magnificent work of art crafted by skilled sculptors using the best quality mason's chisels, the Karkemish inscriptions were relatively crude and appeared to have been made by someone in a hurry, with an implement such as a dagger or sword point.'", "\n\nAnna was listening intently. ", "This time, she didn't interrupt Usberti to tell him he talked too much. ", "The look of hostility on her face hadn't softened, but her curiosity was getting the better of her.", "\n\n'Von Grüber returned to his home city of Graz in early 1924, severely afflicted by pneumonia contracted during his expedition, whereupon the transcript of the carvings was placed on display at a private historical and art collection in Berlin. ", "Sadly, the building that housed the collection was flattened, along with so many others, in 1945 when the British and Americans bombarded that city with over seventy thousand tons of bombs. ", "The only existing physical record of Hans Von Grüber's discovery was among the many artefacts lost forever. ", "Von Grüber himself had died twenty years earlier; having never recovered from his sickness he succumbed within months of his return from Syria. ", "But in a letter written shortly before his death to a colleague, one Professor Claude Desmoines of the Sorbonne, he described the clifftop inscriptions near Karkemish and expressed his fervent and unshakeable belief that they constituted some form of map. ", "More correctly, a set of directions which, accurately translated, could direct the seeker to unearth a great treasure. ", "Von Grüber wrote, \"Beneath every footstep in Syria may dwell the legacy of ancient civilisations, undiscovered wonders and, for the seeker who will risk all to find them, riches beyond imagining.\" ", "Like so many ancient mysteries yet to be solved, neither the nature nor the precise location of that treasure have ever been determined.'", "\n\n'It's incredible,' Anna said in a low voice. '", "It could really be true.'", "\n\nTo Ben, the idea of carving a treasure map on a cliff face seemed a little baffling. ", "But then, he wasn't an archaeologist. ", "Carving stuff on rocks and stones seemed to have been the thing in those days. ", "Plus, he supposed that if you were a desperate bandito hiding out in the hills with enemy soldiers closing in all around you, and you found yourself bereft of a convenient piece of papyrus to use as notepaper on which to scratch out your last message to your gang, you might not have any other choice.", "\n\n'There is more, my dear Professor Manzini. ", "I told you that Kavur had recently been in contact with a fellow archaeologist. ", "Dr Serge Munoz of the Joint International Syrian Expedition is a highly respected authority; he is also, like your late colleague and, I believe, you yourself, an expert on ancient cuneiform languages. ", "He claims to have seen not only a copy of Von Grüber's 1924 letter but a rare pre-war photograph of the Berlin exhibits themselves, which he was able to partially decipher. ", "Following his discussion with this Dr Munoz, Kavur became convinced that the clifftop inscriptions near Karkemish almost certainly point to the exact whereabouts of a fabulous buried secret.'", "\n\nUsberti's eyes gleamed. ", "He went on:\n\n'Thanks to you and Signor Kavur, who alone among historians have traced the path of the exiled Muranu dynasty from Babylon, there can be little doubt that we stand on the brink of finding the great lost treasure of Nebuchadnezzar.'", "\n\n## Chapter 53\n\nBen could see the internal forces splitting Anna in two. ", "She was face to face with the man who had personally sanctioned the murder of Theo Kambasis and Ercan Kavur, ordered the attack on Gianni Garrone at her villa, and who had been trying to kidnap her since Olympia. ", "Yet she'd come this far and been through so much to find the Babylon idol – and if what Usberti was saying was right, the nearness of its discovery was driving her wild. ", "She was thinking so fast that her eyes were darting.", "\n\n'Now I understand what Ercan wanted to tell me, and why he had to share the secret with me in person,' she said. '", "Ashar the Babylonian, the fort at Harran, was only the beginning of the story. ", "It all makes such sense. ", "Ashar was constantly at war with the Persians. ", "If anything had happened to him, if he was killed or captured, he knew the idol must be preserved at all cost. ", "Perhaps he left the inscription as a message to his followers when he realised he was about to be caught. ", "That would explain why the work was crude and done in a hurry, carved with whatever weapon he carried with him. ", "And also why it was so high on the cliff, to keep it hidden from enemy eyes. ", "And it must also mean—'\n\nShe hesitated, glanced at Usberti. ", "Ben read her expression of self-annoyance for letting her passion for her subject make her say more than she should have.", "\n\n'What must it mean, Professor?' ", "Usberti asked with a gloating kind of smile that Ben wanted to slice off him with a knife.", "\n\nShe paused. '", "I was going to say... it must mean that the idol is nowhere near Karkemish. ", "I mean, the Persian soldiers were all over the region.'", "\n\nUsberti went on smiling. '", "You try to deceive me, Professor. ", "On the contrary, and as I know perfectly well you were going to say before you checked yourself, the idol's guardian would have wanted to ensure that it was safe. ", "To that end, he would have visited its location frequently, in secret, and in person. ", "Which would imply that it was concealed within convenient travelling distance from his base, as too much time spent journeying back and forth would have constituted a risk of capture. ", "Say, half a day's ride, there and back, and possibly much closer. ", "In any case, the map will soon provide all the information we need.'", "\n\n'That's if you can find it,' Ben said. '", "You might not be so lucky this time.'", "\n\nUsberti waved a hand. '", "Luck will not be necessary. ", "The account in Von Grüber's letter was detailed enough for Serge Munoz to pinpoint the precise navigational position of the cliff.' ", "He took a small GPS device from his pocket and held it up. '", "Once again, Signor Kavur's assistance proved most useful in providing us with the coordinates.'", "\n\n'Isn't that handy,' Ben said.", "\n\n'Indeed it is most fortunate,' Usberti replied, smiling even more broadly now. '", "One might say, serendipitous. ", "An act of fate, even, that the wheels of discovery should have been set in motion at exactly the right moment for us – or should I say, for me. ", "It was only a matter of time before some other intrepid scholar picked up the trail and followed it to its fabulous end. ", "The idol of King Nebuchadnezzar, a magnificent statue of pure gold, sixty cubits tall, buried beneath the sand. ", "But I will get there first and stake my claim. ", "If my calculations are correct, and I am confident they are, such a quantity of gold will make me one of the richest men in the world.'", "\n\n'Now we get to it,' Ben said. '", "And there was I thinking this was all about the pursuit of theological truth.'", "\n\n'Even if you found it,' Anna said to Usberti, 'you can't know what to expect. ", "Nothing in archaeology is ever certain.'", "\n\n'But God's word is,' Usberti said. ", "His smile fell away and irritation twisted his face. '", "It is the most certain thing there is. ", "And the Bible is God's word. ", "If the Bible says the king of Babylon created a golden statue sixty cubits tall, then that is what I shall find there. ", "To doubt that is to doubt the Holy Creator Himself. ", "To question God is to be a heretic, and heretics shall be punished with death. ", "Is that not so, Ugo?'", "\n\nBozza made a single up-down motion of his head.", "\n\n'Then we mustn't doubt the Creator,' Ben said. '", "You'll be the wealthiest man in the loony bin and the world will be a happier place for it.'", "\n\n'Major Hope thinks he can provoke me with his taunts,' Usberti said to Anna. '", "His ploy is that, if he can anger me sufficiently, it may trigger some reaction on my part which he can exploit to his advantage. ", "For your own sake, Professor, and for his – as it has not escaped my notice that you have some inexplicable degree of feeling for him – please impress upon him that such an attempt would not only be quite futile but also counterproductive, in that it would produce only a worsening of the means by which he is to die, when that time arrives, as it will soon enough.'", "\n\nAnna looked at him. '", "I was right, Usberti. ", "You do talk too much.'", "\n\nThe sun was sinking lower over the desert as they slowly ground towards their destination. ", "Usberti and Groppione had worked out a route using GPS to get them there without skirting too closely by the town of Jarabulus itself. ", "So far, the plan had worked and they'd seen no sign of trouble. ", "No sign of anything at all, or any living person. ", "Just sand and rock and the increasingly difficult terrain that was becoming more challenging with every passing kilometre. ", "For most of the journey the landscape had been flat and endlessly wide and almost featureless except for undulating hills and clumps of scrubby, stunted vegetation eking out an existence in the sheltered dips and hollows. ", "A hard place to survive: seared by brutal heat for two-thirds of the year, while the winter months brought blasting winds and temperatures that could sink far below zero.", "\n\nWhich was exactly what was happening out there right now. ", "Strong gusts of icy wind rocked the RV and the darkening sky seemed to threaten snow. ", "Ben couldn't tell exactly where they were, but judging by the lie of the land, Jarabulus was somewhere to the east of their position. ", "To the west the horizon grew wilder, overshadowed with rocky escarpments that were turning to purples and blues in the fading light. ", "And it was into the high country that the GPS was directing them, tracking the same approximate route that had led Hans Von Grüber's expedition to the site of their discovery – for two, their deaths.", "\n\nThe RV had long since left behind anything resembling a road. ", "It was lurching and pitching and rocking crazily as it crawled over the impossible terrain. ", "Groppione was no kind of an expert off-road driver, but even if he had been, the size and weight and low ground clearance of the vehicle was a major handicap. ", "Three times in succession, he ploughed them into rocky hollows that had the suspension jarring against its stops, the wheels spinning for grip, and Ben almost certain that they wouldn't get out. ", "But Usberti's luck was holding.", "\n\nNow they curved due west, away from the falling sun and the flat desert panorama that dropped away behind them as they climbed into the rocky escarpment. ", "It was like navigating a ship through a frozen ocean, with lanes of open water ever-tightening into narrow fissures and icebergs looming on all sides. ", "The long, low chassis scraped and clanged and dragged painfully over ruts and boulders. ", "The way ahead became steeper, and steeper, until they were down to first gear and the engine was straining badly and sounded as though it was overheating. ", "Ben could smell diesel fumes and hot oil, and hear the whirr and whine of the cooling fan struggling to pull enough air through the radiator.", "\n\nUndeterred, Massimiliano Usberti stood behind the driver's seat, clutching his GPS device, pointing ahead and urging Groppione onwards with terse commands and threats of what would happen to anyone cowardly enough to refuse to keep going. ", "Groppione was hunched over the wheel, looking as if he hardly dared to breathe. ", "They squeezed through a pass that was almost too narrow for the RV's bulk, sheared off one of its mirrors and crumpled their flanks and left deep gouges in the Perspex windows.", "\n\nUp, and up. ", "And up some more. ", "To their left, the escarpment formed a sheer cliff face almost touching the side of the coach. ", "To their right, across the aisle from where Ben and Anna were sitting, was a vertical drop to the desert below. ", "To the front, what little track there was to follow was narrowing into a rubble-strewn mountain path where even a Syrian Awassi sheep herdsman would have hesitated to take his flock. ", "It seemed to Ben that if it narrowed any more, the coach would topple off its precarious edge and go hurtling down to its destruction. ", "And _he_ was supposed to be the crazy one. ", "Starace looked about ready to collapse from terror, darting pug-eyed glances out of the window every few seconds and pouring with sweat. ", "Bellini was sitting near the front, head bowed in grim silence, his fingertips white where they clutched the arms of his seat.", "\n\nUsberti scrutinised his GPS one last time, held up a hand and said, 'That is far enough.'", "\n\nGroppione braked to a halt and fell back in the driver's seat, as limp and pale and spent as a man running a high fever. ", "Starace let out a wheeze of a sigh and rubbed his eyes. ", "Bellini let go of the arms of his seat and looked at his employer in bewilderment. ", "Even Ugo Bozza seemed relieved.", "\n\nThey couldn't have travelled any further in any case, even if the track had gone on and on. ", "The way ahead was completely blocked by the rubble of a rock fall. ", "Just before that, there was a large craggy opening in the cliff face to their left, easily the height of the RV, deep enough for two nose-to-tail and wide enough for three, side by side. ", "Groppione's driving duties weren't over yet.", "\n\n'Turn us around,' Usberti ordered him, circling a finger in the air. ", "Groppione suppressed a groan, engaged reverse, backed up a few yards with a careful eye on the remaining mirror, then gently eased the RV inside the cave. ", "The rasp of its engine was suddenly amplified and echoey. ", "Groppione had to spend the next few minutes pulling a complicated multi-point turn to get the RV reversed out of the cave mouth without backing right over the edge and killing them all, then turned around and straightened up to point the opposite way down the track. ", "By the time he was done, the cave reeked with sickly-sweet diesel exhaust fumes.", "\n\n'Thank you, Aldo,' Usberti said. '", "You may kill the engine now. ", "Everyone, please disembark.'", "\n\nBozza activated the hydraulics to open the side door, which was now on the RV's inside flank, between it and the cliff face. ", "The gap was a tight squeeze as, one by one – Ben first, then Anna, and Usberti last – they all stepped down the gangway. ", "After so long inside the warm vehicle, the freezing, whipping wind cut like a razor. ", "Anna immediately began to shiver despite her heavy jacket. ", "Usberti seemed unaffected by the chill. ", "His men gathered round him. ", "Ben watched. ", "And listened. ", "He could hear something over the fluting note of the wind. ", "A distant sound that his ears were attuned to by virtue of oft-repeated experience.", "\n\nSomewhere beyond the horizon, there was a fight happening.", "\n\nUsberti frowned up at the sky. ", "Particles of moisture too slow and heavy to be rain were drifting diagonally on the wind. ", "The temperature was dropping perceptibly now that the sun had sunk all the way behind the broad western horizon. '", "There is not much time,' he commented.", "\n\n'Not much time for what?' ", "Ben asked. ", "Though he was afraid he already knew the answer to his question.", "\n\nUsberti turned, gazed at Ben, and a look of cruelty and triumph split his face into a crooked grin. ", "He pointed a finger straight up into the air.", "\n\n'Time for you to show your mettle, Benedict. ", "You are going to climb the cliff for me.'", "\n\n## Chapter 54\n\nBen craned his neck to peer upwards in the direction of the pointing finger. ", "The cliff loomed over them. ", "Maybe a hundred feet, maybe three times that. ", "Hard to tell. ", "The angle of the rock face was past vertical, so he couldn't see the top.", "\n\nHe normally enjoyed climbing. ", "Now and then, on a Sunday morning when the schedule at Le Val allowed, he would take the old Land Rover to a Normandy beach near a place called Étretat, with a sea kayak strapped to the roof, paddle out to the base of the famous chalk cliffs of the so-called Alabaster Coast and relish pitting himself against the challenge.", "\n\nThis was a whole other proposition. ", "Ben didn't like to use the word 'impossible'. ", "But if there were an enemy position up there on top, and orders dictated that it were imperative to capture that position, the SAS would have looked for another way.", "\n\n'Now you see my purpose in keeping you alive,' Usberti said. '", "Why should I risk the lives of my own men, when I have you? ", "Aldo, you may uncuff him. ", "No tricks, Major, I beseech you.'", "\n\n'You can't make him do this,' Anna said.", "\n\n'Of course not. ", "He will make the climb by his own will. ", "Because he can all too well imagine the harm that may come to you, my dear, if he refuses.'", "\n\n'You need me just as much as you need him,' she said. '", "More, even. ", "Unless you suddenly became an expert translator of ancient cuneiform languages.'", "\n\n'The human body is remarkably adaptive to even the most atrocious mutilation,' Usberti said. '", "I have seen double, even triple amputees capable of some amazing feats of dexterity. ", "Consider for a moment, Professor, the minimum physiological requirements necessary for translating a piece of writing from one language to another. ", "All that is really needed is a brain to think with, one eye to read with, one hand to write with, a heart and a pair of lungs to keep the abbreviated organism functioning. ", "A marvel of economy, thanks to the genius of God's design. ", "But what a pity it would be to reduce so beautiful a feminine form to such a pitiful state. ", "And how upsetting for Major Hope, knowing such an outcome could have been avoided.'", "\n\n'I'll make the climb,' Ben said. '", "But I can't do it with my bare hands. ", "Though I'm sure you already thought of that.'", "\n\n'Naturally.' ", "Usberti turned to Starace. '", "Maurizio, fetch the equipment from the vehicle.' ", "Starace walked to the rear of the RV and opened up a compartment big enough to accommodate a Smart Car. ", "A light came on inside. ", "The compartment was empty except for a black holdall. ", "Starace knelt down to unzip it, and pulled out a large coil of thin rope, climbing gloves, body harness, pick, hammer, pitons, a lightweight flashlight, and a belt pouch with the legend NIKON. ", "A small digital camera, Ben guessed, for taking pictures of the inscriptions.", "\n\n'These items were obtained at the last minute before we departed from Ankara,' Usberti said. '", "I trust they meet your requirements?'", "\n\nBen inspected the pile of equipment. ", "The rope was the kind of super-strong cord that could lift a tank but would stretch to soften the jerk on a falling climber. ", "The karabiner clips, pitons and belay device were all decent stuff, light and robust. ", "Then he looked up again at the cliff. ", "It was little wonder that two of the Von Grüber expedition hadn't survived it, back in 1923 when rock climbing gear was a lot more primitive.", "\n\n'No climbing shoes?' ", "he said.", "\n\nUsberti spread his hands. '", "Forgive me. ", "I did not know your size.'", "\n\n'Goggles?'", "\n\n'I am sure you can manage without them. ", "Whenever you are ready, Major Hope. ", "I suggest you do not tarry too long, the light is failing rapidly. ", "The rest of us will shelter in the cave and await your safe return.'", "\n\n'You don't have to do this,' Anna said.", "\n\n'You know I do,' Ben told her.", "\n\n'Please be careful.'", "\n\n'This is a walk in the park,' he said. '", "I'll be back before you know it.'", "\n\nUsberti was right about one thing. ", "He didn't have a lot of time before nightfall made climbing ten times harder, and weather conditions were worsening every minute. ", "The freezing rain was turning to snow, driving down harder on a stiffening wind that was making his hands and face numb. ", "He quickly put on the harness, strapping up the Velcro and buckles good and tight. ", "Made sure the various loops and connectors were properly fitted, clipped the camera pouch to his waist, slipped the hammer and pitons into their respective pouches, pulled on the gloves and fastened their wrist straps, and he was as ready as he'd ever be.", "\n\nAll he had to do now was scale the damn rock and get back down again alive.", "\n\nHe spent a few moments with his neck craned upwards to scan the sheer cliff face for handholds and footholds, and cracks into which to hammer his pitons. ", "Once he had a rough route figured out, he reached up and hammered in his first piton, then hooked up his rope. ", "Took a deep breath, and began his ascent.", "\n\nIt started out bad, and it got quickly worse. ", "Without proper climbing shoes his toes were slipping all over the smooth, damp cliff face. ", "And having to keep his face constantly tilted upwards with no goggles on left his eyes unprotected from the steadily thickening snow. ", "It was the frozen wastes of Ankara all over again, except then he hadn't been clinging to a past-vertical incline with a lethal drop and a bunch of gangsters holding Anna hostage below him. ", "Sometimes, you just don't realise how lucky you are.", "\n\nHe climbed. ", "One hand over the other, feet scrabbling for grip, fingers numb and raw even inside his gloves, unable to feel his toes inside his boots. ", "Pausing to grope for cracks above him, reach for his hammer, tap in another piton. ", "Clipping and unclipping ropes as he went, so that there was always a safety line to anchor him to the wall and another to haul himself up another few feet before the process had to be repeated over. ", "Ten minutes of solid, constant, muscle-ripping effort. ", "Then twenty minutes. ", "Night was falling fast. ", "His mind emptied of all the anger he felt against Usberti, Bozza and the rest. ", "Gravity was the enemy now, the deadly presence that wanted to reach up and grab him by the ankles and yank him to his death. ", "He was shivering and sweating both at once. ", "His eyes were burning and watering from the bite of the cold wind.", "\n\nAnd all through it, he could hear the sound of war growing louder. ", "It was coming from the north, the unmistakable crash and sonic boom of heavy artillery carried on the wind like rolling thunder, interspersed with ragged volleys of crackling small arms fire. ", "Pausing to catch a breath, he let the rope hold his weight and dangled freely, used his feet to rotate himself around to look to the north and saw the strobe-flashes and arcs of light on the dark horizon.", "\n\nIt was heading their way. ", "A running battle: tanks and mobile rockets and light armour, moving fast. ", "Another twenty minutes, half an hour, and they would be much closer, perhaps too close for comfort. ", "A full-scale military engagement was no thing to be a spectator to. ", "He was worried about Anna's safety down there. ", "For a few seconds he thought about abandoning his climb – but returning back down the cliff empty-handed wasn't going to do either of them much good.", "\n\nIn which case, there wasn't a moment to lose. ", "He kept on climbing, but now it was getting too dark to see, so he took the lightweight torch from his harness pouch, switched it on and clamped it between his teeth so that it pointed wherever he looked. ", "There was a ledge right above him. ", "With a huge effort he managed to drag himself over its lip. ", "He hauled his rope up and recoiled it, then knelt on the craggy rock and shone the flashlight around him. ", "The ledge was maybe twenty feet deep, and part of it had been cut away in edges and angles much too straight and regular to be the work of nature. ", "He swept the torch beam left, right, up and down over the cliff wall, hoping to find what he'd come here for.", "\n\nNo inscriptions anywhere to be seen. ", "Nothing but craggy rock and broken sections of weathered, time-smoothed block wall that he quickly realised were the remains of a millennia-old fortification of some kind.", "\n\nThe last holdout of Ashar the Babylonian. ", "It had probably been ancient even when the band of outlaws had taken up residence there, originally built by an even older civilisation back when this ledge had been part of a much bigger overhang on the cliff face. ", "Sometime in the last couple of thousand years both it and, presumably, the narrow cliff path that allowed the renegades access to their base must have been carried away in a major rock slide, perhaps as a result of an earthquake.", "\n\nBut as interesting as that might be to an archaeologist, all it meant to Ben was that he was unlikely to find the inscriptions here. ", "A bandit leader wily enough to elude the might of the Persian army for as long as Ashar had wouldn't have been foolish enough to carve the vital clues as to the whereabouts of his treasure right where his enemies could find them.", "\n\nWhich meant Ben had to keep searching, and keep climbing.", "\n\nLeaning back as far as he could over the edge of the lip, he pointed his torch beam vertically through the swirling snowflakes and saw a second, smaller overhang another fifty feet or so higher up. ", "A long, long way above the ground. ", "Whichever one of the Von Grüber party had first spotted the inscriptions from down below must have been packing a hell of a pair of binoculars. ", "Assuming the inscriptions were even there, and not eroded away to nothing or destroyed in another rock slide.", "\n\nOnly one way to find out.", "\n\nA Gauloise would have been nice about now. ", "Better still, a slug of scotch. ", "Ben hugged his sides, then clapped and rubbed his hands and kicked his feet to try to get some sensation back into his extremities. ", "He checked his harness pouch and saw he was running short on pitons: just enough left, or so he hoped, to make the final leg of the climb. ", "The wind was blowing harder. ", "The snow was gusting strongly, clinging to his hair and eyelashes, and creeping icily down his neck. ", "His body was racked with shivering. ", "He looked towards the north. ", "The flashes on the horizon had advanced a considerable distance. ", "Usberti and the others might not be able to see the faraway explosions as well as he could from so high up, but they'd be deaf if they couldn't hear the battle inching ever closer.", "\n\nTime was running short.", "\n\nBen climbed on. ", "He was getting very tired, and very cold. ", "He was beginning to make mistakes as the creeping chill got to him. ", "A couple of times, he failed to hammer a piton deeply enough into its crevice, only to see to his horror that it was working its way out when he had the full strain of his weight on the rope. ", "Only luck and speed saved him. ", "When he misjudged a foothold and his numb toes slipped and he felt himself going, it was the strong, stretchy rope that kept him from falling to his death.", "\n\nMaybe there was a God, after all. ", "Ben thanked him, just in case.", "\n\nAnd at last, the second ledge was right above him. ", "He was down to his last piton as he dragged himself up onto the narrow crawl-space. ", "His hands no longer seemed to belong to him, but he managed to anchor himself with a loop of rope around a spike of rock, then take out the torch.", "\n\nAnd that was when he saw the inscriptions carved on the cliff wall right in front of him.", "\n\n## Chapter 55\n\nThere was no mistaking what he'd found. ", "The carving was made inside a crude rectangle hacked and chipped out of the pitted surface, roughly six feet wide by three feet high. ", "Just about large enough for an observant spotter on the ground to pick out with modern optics, but much too small to be visible to the naked eye. ", "The latter being, Ben guessed, exactly Ashar's idea when he'd carved it.", "\n\nInside the rectangle was a mass of script. ", "The stone was so weathered and eroded by endless cycles of wind, rain and sun that parts of it were smoothed away almost to nothing. ", "The parts that Ben could make out were written in a language like no alphabet still used in modern times, made up of scratchy little wedge-shaped markings and crooked crosses and irregular arrows and squiggles that meant absolutely nothing to him, or to the vast majority of people alive on the planet. ", "He had only fleeting memories of seeing writing like it before, long ago in his student days. ", "Maybe if he'd paid more attention in class, he would have known whether it read from left to right, or right to left like Hebrew, or top to bottom like Chinese.", "\n\nBut he wasn't here to work out what it meant, only to record what it looked like. ", "He wiped away the dusting of snow that the wind had blown against the rock, then unzipped the small camera from its pouch on his climbing belt. ", "It was all set up for him with flash and autofocus, so all he had to do was point and shoot. ", "He zoomed out to take shots of the whole panel of inscriptions, then zoomed in again to take close-ups of the parts that were still faintly legible. ", "He snapped about fifty images, working quickly but careful to miss nothing out. ", "For the moment at least, Anna's life depended on what he brought back to Usberti.", "\n\nOnce he was satisfied, Ben zipped the camera carefully back in its pouch. ", "Job done. ", "Now it was time to get back down there, and fast. ", "The crashes and booms of the battle were growing constantly louder to the north. ", "He could see the moving shapes of tanks and smaller vehicles clearly now, silhouetted against the flash of explosions and fireballs. ", "It looked as if a whole tank company, probably Turkish Army Leopards or Sabra M60s although it was hard to tell, was pursuing a smaller enemy force across the desert. ", "Ben guessed those would be Syrian insurgents, belonging to any one of a hundred factions. ", "They were using armoured pickup trucks equipped with rockets and heavy machine guns. ", "As Ben watched, one of the trucks took a direct hit from a tank missile and went up with a bright white-and-yellow flash that lit up the desert. ", "The running battle was headed straight towards the escarpment. ", "It was several kilometres closer than it had been just ten minutes ago. ", "Not a healthy development.", "\n\nBen's one consolation was that his descent would be a hell of a lot speedier than the climb. ", "Fast-roping from helicopters and abseiling down buildings and mountains was trained into him like tying shoelaces was for normal folks. ", "As a young SAS trooper, he'd been so agile at bounding down vertical drops that his instructors could barely keep up. ", "Now he'd have to be even faster. ", "He stuck the torch back between his teeth and untied the short length of rope anchoring him to the ledge. _", "Here we go._", "\n\nTwo deep breaths, and he dropped like a stone over the side of the ledge. ", "He swung dizzily in empty space for a few instants, blinded by the driving snow, then felt the rope go taut and the soles of his boots touch the cliff face twenty feet down. ", "He kicked hard, swung out, swung back in, met the impact with bent knees, then kicked again, losing more altitude at every downward leap. ", "With gravity working in his favour, what had taken him the best part of an hour to achieve going up, was less than three minutes' work in reverse.", "\n\nAnna rushed out of the cave to meet him as he landed on the ground. ", "Bozza was just a step behind her, with a gun at her back. '", "Ben!' ", "Her cry was half drowned by another explosion. ", "The battle was now just a couple of kilometres away, and still closing.", "\n\n'Told you I'd be back soon,' Ben said. ", "He clasped her hands and kissed her gently on the forehead. ", "She pressed her face into his shoulder.", "\n\n'You feel so cold,' she said.", "\n\n'So do you.'", "\n\n'I don't think I can ever be warm again.'", "\n\n'Don't be too sure,' he said. '", "I get the feeling things are about to start hotting up around here.'", "\n\nUsberti emerged from the shadows, followed by Starace and Groppione, both pointing their weapons at Ben. '", "Pardon me for interrupting this tender scene. ", "Congratulations on a successful mission, Major Hope. ", "I trust you have something for me?'", "\n\nBen unhooked the pouch and tossed it on the ground at Usberti's feet. '", "Here you go, Your Grace. ", "Now I'd suggest getting out of here, unless you want to find yourself in the middle of a tank battle.'", "\n\nStarace picked up the pouch and passed it to his master. '", "It is their war, not ours,' Usberti said, clutching the camera as though it was a gold ingot. ", "The momentary flash of a rocket blast lit up his face, and Ben saw the crazed glint in the man's eyes. ", "He wanted to snap his neck. ", "But now wasn't the time, not with Bozza's gun an inch from Anna's back.", "\n\n'Cuff him,' Usberti said. ", "Groppione kept his weapon in Ben's face as Starace stripped away the climbing harness, dumped it on the ground and grabbed Ben's wrists behind his back. _", "Snick-snack_ , and the hardened steel bracelets were back on, tighter than before.", "\n\n'Now let us depart,' Usberti said. ", "Bozza already had the RV's side door open for him. ", "Usberti hurried aboard first, closely followed by the silent Bellini, and headed straight for his throne. ", "Ben and Anna were hustled unceremoniously in after them and shoved into their seats while Groppione dived behind the wheel and restarted the engine. ", "Starace took up his sentry position on the leather sofa across the aisle. ", "Ugo Bozza was the last one aboard, not taking his eyes or his gunsights off Ben. ", "Ben ignored him and watched through the window as the flashes of artillery fire kept creeping closer. ", "The ground was beginning to shake under the wheels of the RV with every percussive blast. '", "You'd better start praying this was all worth it, Usberti,' he said.", "\n\n'Shut your fucking mouth, English,' Starace growled, but his words were lost in another tremendous explosion that made the whole vehicle shudder. ", "Groppione slammed the RV into gear and they began to pick their bumping, lurching way back down the track.", "\n\n'Faster,' Usberti urged him.", "\n\n'Boss, if I go any faster in the darkness I'm gonna rip off a wheel or ground us on these rocks,' Groppione protested in a strained voice.", "\n\nIt took nearly fifteen minutes for the RV to bounce and grind its way off the escarpment road and get back to level ground.", "\n\nToo long, by at least five minutes. ", "Because now the whole place was a raging war zone.", "\n\n## Chapter 56\n\nJust as Ben had feared, the battle had arrived virtually on top of them. ", "A broad stretch of desert was lit up like daylight by scores of madly bouncing headlights and the strobe effect of muzzle flashes from rocket launchers and machine guns, punctuated every few seconds by the blinding glare of high-explosive blasts as heavy missiles blew craters in the ground. ", "Ben thought he could count nine tanks rolling through the chaos. ", "He could hear the harsh squeal and patter of their treads cutting through the gunfire as they scuttled like living dinosaurs over sand and rock.", "\n\nAnd now he realised he'd been wrong about them being Turkish Leopards or Sabras. ", "They were Russian T-90 main battle tanks, one of the most formidable and feared war machines ever made. ", "Russian tank companies were made up of three platoons, consisting of three tanks each plus the command tank, for a total of ten. ", "The tenth tank was the stationary blazing wreck several hundred yards back from the advancing column, hit by a lucky rocket strike from one of the fleeing rebel armoured trucks. ", "But a force of even just nine T-90s were a terrifying enough opponent to send just about any militia army into total flight mode: that was what they were witnessing, and it was all happening less than a football field's length away as Groppione pressed his foot to the floor in desperation to get them out of here.", "\n\nA tank shell hummed overhead and exploded among the rocks just fifty yards to their right. ", "The RV surged unscathed through the bursting shrapnel but the violence of the shockwave sent them into a wild skid that had Groppione yelling and wrestling the steering in a frenzy to stop them from overturning. ", "He somehow managed to right the coach and accelerated harder across the undulating sands, crunching over boulders, no longer giving a damn about tearing off half the chassis.", "\n\nFor Usberti, it was as if they were out for a Sunday drive in the countryside. ", "He was sitting calmly on his throne. ", "Or as calmly as it was possible to sit, as he too was being thrown about by the bouncing suspension. ", "He had the small Nikon camera in his lap and was wearing half-moon reading glasses, intently scrutinising the images on the camera's glowing screen.", "\n\n'Professor Manzini, your expertise is required. ", "Would you please come and look at this?'", "\n\n'Are you crazy?' ", "Anna screamed back at him. '", "Don't you know what's happening? ", "You think God can save you from tanks?'", "\n\n'Ugo, assist her.'", "\n\nBozza was only too glad to oblige. ", "He grasped Anna roughly by the upper arm and hauled her up the aisle. ", "Usberti pointed to a nearby seat, opposite where Bellini had taken up his usual position, hands clasped in his lap, eyes darting nervously behind his thick lenses. ", "Bozza dumped Anna into the seat. ", "At the same instant, another rocket blast shook the RV from stem to stern and Groppione let out a yell of 'Jesus!' ", "that drew a very disapproving look from his employer.", "\n\n'Now, Professor,' Usberti said, handing her the camera, 'our present circumstances dictate that you conduct your work with as much alacrity as possible. ", "So please, get to it, and do not compel me to bring Ugo into this. ", "Aldo, a little more haste from you would also benefit us greatly.'", "\n\n'It won't go any faster, boss. ", "Not on this surface.'", "\n\nThe RV was going so fast, it felt as though it could shake apart at any moment. ", "If a random tank shell didn't reduce them to splinters first. ", "Watching from the window, Ben sensed there was a roughly fifty per cent chance of that happening. ", "The RV was widening their distance from the battle, but only slowly. ", "It was mayhem back there. ", "The Russian gunners were very, very good. ", "Another rebel truck blew apart in a fireball that turned the snowy sky golden-red. ", "Then another, in a solid hit by the turret machine cannon of one of the T-90s that set off its target's fuel tank and blasted it into a tumbling wreck.", "\n\nBut the insurgents were fighting back hard, even as they beat their retreat. ", "Stabs of rocket fire erupted from the rearward-facing guns of the fleeing trucks. ", "The leading tank burst into flame, rolled to a halt and sat there burning as its eight remaining platoon comrades rumbled and squealed past it, keeping up their steady fire. ", "The Russians were getting more than they'd bargained for from the rebels, that was for sure.", "\n\nNot for long. ", "The sudden screeching howl from above came out of nowhere and made everyone inside the RV except Ben, Bozza, and Groppione clap their hands over their ears at the sheer massive deafening noise. ", "The Russian tank commander had called in air support. ", "The jets had come streaking in so fast out of the night that not even Ben had time to recognise them as MiG 29 fighters – they must have deployed from a carrier off the Syrian coast.", "\n\nThe air strike was over in seconds. ", "The jets were already gone when a vast curtain of fire erupted into the sky in their wake. ", "Like summoning the forces of death from the bowels of the earth to rise up and smite the enemy at a single stroke. ", "Ben felt the heat on his face through the window as he watched dozens of armoured vehicles instantly vaporised in the awesome fiery blast. ", "A hundred men blown limb from limb or reduced to a fine ash that was swept away by the desert wind. ", "Maybe two hundred. ", "Few people would ever know, fewer still would care, and a palatable version of their brutal destruction would be served up in the media soundbites, to be forgotten moments later.", "\n\nThe RV bucked and bounced away from the carnage. ", "Ben turned to see what was happening up front: Anna was being made to study the images on the camera; Bozza was standing menacingly over her, hanging on to a rail for support; Usberti had produced paper and pens for her to write her translation of the cuneiform inscriptions Ben had photographed, as if anyone could write or even read in a shaking, rattling bus hammering over unpaved wilderness at breakneck speed. ", "A patient man, that Usberti.", "\n\nThen Groppione glanced in his remaining mirror, turned the colour of parchment and announced in a quavering voice, 'Oh, no. ", "Oh, shit. ", "Boss, we g-got company.'", "\n\n## Chapter 57\n\nBen twisted back around to peer out of the rear window, and saw what Groppione had just seen. ", "Vehicle lights in their wake: two sets of headlights supplemented with grille and roof spotlamps, all bobbing and gyrating crazily like Chinese lanterns in a storm. ", "A pair of rebel trucks that had managed to escape the devastation of the MiG air strike had broken off from what was left of their fleeing column and were in pursuit.", "\n\n'What the hell do they want with us?' ", "Starace yelled.", "\n\n'Why don't we stop and ask them?' ", "Ben said. '", "Maybe they're lost and need directions. ", "Or maybe they think we're a bunch of coalition \"spies\" they can capture and do to us what you guys did to Ercan Kavur.'", "\n\n'Outrun them,' Usberti ordered Groppione.", "\n\n'Are you kidding me?' ", "Groppione yelled back, near panic.", "\n\n'Remain calm, Aldo. ", "We are in no immediate d—'\n\nBut now Usberti's luck seemed to be running out at last. ", "The flash of a grenade launcher from one of the pursuing trucks was followed almost instantly by a violent explosion right at the RV's rear. ", "Everyone went sprawling. ", "Groppione was thrown hard against the steering wheel. ", "The RV went into a weave that degenerated into another bad skid, and almost overturned before Groppione, gibbering like a lunatic and sawing at the wheel, somehow got it back under control and stamped his foot down even harder. ", "The RV surged ahead, crashing and bounding insanely over terrain it was never meant to handle even at a snail's pace.", "\n\nBen struggled upright and looked to the rear. ", "On the bright side, it looked as though the rebels had run out of rockets. ", "On the pessimistic side, the RV's massive bodyshell was made of flimsy stuff that even an air rifle could punch through. ", "The grenade blast had torn a gaping hole in their tail end. ", "The rear window was gone, along with a large section of bodywork. ", "Ben could see exposed chassis members and ripped wiring and twisted brackets where light fittings used to be. ", "Small fires were crackling everywhere and the smell of burning filled the vehicle. ", "The electrics began to flicker. ", "Bellini had been thrown out of his seat and was scrabbling around for his glasses. ", "Usberti had managed to scramble back into his throne and was shouting at Anna, on her hands and knees in a sea of scattered paper.", "\n\n'You! ", "Hurry up with that translation!'", "\n\n'Go to hell!' ", "she screamed back at him.", "\n\nThe pair of rebel trucks were gaining fast, one taking the lead, the other right behind it. ", "Their lights were glaring into the windowless back of the RV. ", "Bozza staggered up the aisle to the rear, planted himself with his feet braced against the wild swinging of the vehicle, aimed his submachine gun through the ragged hole and rattled off its whole magazine at the lead truck. ", "He couldn't have hit much, because a second later the rebels returned fire.", "\n\nAnd they were packing somewhat heavier hardware. ", "The snorting blast from the large-calibre machine gun ripped into the body of the RV, punching through it like an oversized cardboard box, shredding everything to pieces. ", "Woodwork splintered. ", "Bits of carpet and leather upholstery flew. ", "Bozza flattened himself to the floor. ", "Anna screamed. ", "Starace screamed louder. ", "Too slow to hit the deck, he caught a bullet in the throat and his blood splashed over the bullet-riddled sofa he'd been sitting on.", "\n\nNow the trucks were splitting up and overtaking the RV on both sides. ", "Ben caught a clear glimpse of the rebel gunner on his side as the guy swivelled his machine gun around on its mount behind the cab. ", "His face was covered with a cloth mask, just wild eyes and clenched teeth showing through the holes. ", "Ben saw no more, because a millisecond later he was diving for cover as the machine guns poured fire into the sides of the RV, virtually ripping it in half horizontally.", "\n\nGroppione had lost control, both of himself and of the vehicle. ", "In his panic, he let go of the controls and threw himself down under the dashboard as both side windows shattered simultaneously to his left and right, showering him with glass. ", "He got himself wedged deep in the footwell and cowered there, one hip pressing the accelerator pedal hard against its stop, neither hand on the steering wheel. ", "Ben glanced forwards. ", "He saw Anna curled up in a foetal position on the floor. ", "No blood. ", "That was good. ", "Then he saw the rocky outcrop racing towards them in the glare of the driverless RV's headlights. ", "That wasn't good.", "\n\nIt was the rebels who saved them from the head-on collision against the rocks. ", "Maybe they were used to firing on armoured vehicles that would offer a little more resistance to their bullets. ", "Or maybe they were just incredibly stupid. ", "Either way, as their two trucks sped in parallel up the flanks of the RV, pumping high-velocity machine-gun shells at point-blank range and in opposite directions at once through its flimsy skin, they hadn't reckoned on where those bullets would go next. ", "The occupants of the truck on the right soon found out. ", "Bad timing. ", "A tactical lesson in the risks of friendly fire. ", "One of the most inappropriately named phenomena in the combat manual, because there was nothing remotely amicable or heart-warming about being shredded to bloody chunks by the firepower of your own inept comrades. ", "Nor was it much of a practical lesson, if you died learning it.", "\n\nThe badly judged storm of bullets from the left-hand truck passed straight through both sides of the RV and hit the right-hand truck, killing every rebel on board instantly. ", "The truck skidded, hit a rut, flipped a somersault in the air and cannoned against the right flank of the coach with enough force to send it veering off course to the left. ", "It missed the rocky outcrop by a matter of inches. ", "It was the truck that hit it instead, with a crunch as the two dead soldiers up front went through the windscreen and the gunner in the back went sailing over the roof and his body broke on the rocks.", "\n\nBut the impact that saved the RV from a terminal head-on smash also caused it to go into a furious skid. ", "It was a very large, very heavy vehicle with comparatively undersized wheels and lot of momentum. ", "An experienced driver might have stood a small chance of correcting the skid and regaining control. ", "With nobody at the wheel at all, there was less than zero chance. ", "All six wheels lost traction in the soft sand and it began to spin on itself. ", "In what felt to Ben like a slow-motion dream, the length of the shattered RV rotated anti-clockwise until it was skidding sideways like a ship about to broach. ", "There was a tortured groaning and creaking from the twisting chassis, and then the world seemed to flip over as the thing crashed onto its side, rolled and rolled again in a tumult of self-destruction.", "\n\nIf the driver of the remaining rebel truck had reacted in time, he might have avoided the path of the crashing RV. ", "He didn't. ", "The truck's wheels locked up and its front end ploughed at high speed into the wreckage.", "\n\nThen everything went still.", "\n\n## Chapter 58\n\nBen opened his eyes to a glare of white light. ", "He looked down at the floor and realised his back was stuck to the ceiling. ", "Then he blinked, and realised that he was actually lying on his back looking up at the floor, because the floor was above him. ", "It took a moment for his brain to orient itself and remember why that was, and why his hands were pinned together under him.", "\n\nHe squirmed and elbowed himself up onto his knees and looked around him at the wreckage. ", "The source of the bright light was the remaining headlamp of the rebel truck whose crumpled front end and still-turning front wheels were buried in the overturned wreck of what used to be the luxury motor coach. ", "Most of the RV's bodywork was an unrecognisable rumpled mass of plywood and aluminium. ", "Smoke and dust drifted through the smashed interior. ", "He could smell diesel oil fumes and toilet chemicals and battery acid, all mixed together in a sour olfactory cocktail with the stink of death. ", "Starace's body was hanging, gently swinging, from the upside-down floor, arms outflung as though he'd been crucified, bug eyes staring blind, a leg trapped in the broken frame of the sofa on which he'd died, its leather upholstery smeared with his blood. ", "More was dripping down to the inverted ceiling.", "\n\n'Anna,' Ben said.", "\n\nShe was curled up among the wreckage nearby. ", "Her face and hair were grey with dust. ", "At first he thought she was dead, too; then at the sound of his voice, she pushed herself up onto one elbow, looked at him with dazed eyes, and broke into a fit of coughing.", "\n\n'Lord be praised, we are alive,' Usberti said, getting to his feet. ", "He had the camera in his hand. ", "A cut above one eye was dribbling blood down his cheekbone. ", "He wiped it with his fingers and flicked them clean. '", "Ugo, Silvano, Aldo, Maurizio... Maurizio? ", "Ah, there he is.' ", "He gazed up for a brief moment at the hanging corpse as though Starace were some dead crow stuck in a tree. '", "No matter. ", "He was of little use in any case. ", "Silvano, are you badly hurt?'", "\n\n'I don't think so, Excellency,' Bellini replied, dusting himself off. ", "His glasses were bent out of shape, perched unevenly on his nose.", "\n\n'Help the others to salvage what weapons and supplies we can. ", "We must continue on our way.'", "\n\n'You could do with an extra pair of hands to get us out of this,' Ben said to him. '", "How about letting me loose from these cuffs?'", "\n\nUsberti shook his head. '", "You do not think me that stupid, surely. ", "Now would be the perfect time for you to try one of your tricks.'", "\n\n'I'm just as invested in getting out of this situation as you are,' Ben said. '", "Especially as we won't be alone here for long. ", "See there.' ", "He couldn't point, so he nodded his head towards the smashed front end of the RV, which now faced in the opposite direction. ", "There was just a big ragged misshapen hole where the windscreen had been. ", "Through the hole, still a long way off in the distance but approaching at some speed, more vehicle lights were visible. '", "Looks like more of our friends are about to join us.'", "\n\n'Then there is not a moment to lose,' Usberti said. '", "Ugo, see how serviceable that truck is.'", "\n\nBozza seemed as unfazed by the incident as he was unhurt. ", "He waded through the wreckage to get to the half-buried Syrian rebel truck and pulled away the remains of Usberti's leather throne that was lying upended across its cracked windscreen. ", "Both the driver and the gunner were dead, but the front passenger was still alive, blood all down his front from his broken nose and smashed teeth. ", "Bozza wrenched open the door, grabbed him by the collar, hauled him out of the cab, dumped him in a heap and drew out a pistol. ", "The guy groaned and tried to move.", "\n\n'Don't kill him,' Anna pleaded, but it was to no avail. ", "She looked away, screwed her eyes shut and covered her ears as Bozza put the gun to the Syrian's head and pulled the trigger twice. ", "It was cold and brutal, but Ben reckoned it was probably a more humane end than came to most of Bozza's victims. ", "Bozza walked around to the driver's side, hauled out the dead man behind the wheel and clambered inside the truck. ", "He used his pistol to knock away the remains of the windscreen glass, then twisted the key to restart the stalled engine. ", "The front of the truck was buckled and twisted, but its heavy-duty grille bars had taken most of the brunt of the impact. ", "The engine coughed into life. ", "Bozza put it in reverse and, with some effort, managed to disentangle and back it out of the wreckage.", "\n\nUsberti turned to Bellini and tossed him a torch. '", "Silvano, go and check the other vehicle back there. ", "Six are too many to travel in one truck.'", "\n\n'How about we kill this fucker?' ", "Groppione said, pointing his gun at Ben. '", "Then there's only five of us to worry about.'", "\n\n'He may yet be of use to me,' Usberti said. '", "This is not over yet.'", "\n\nBellini reluctantly obeyed the order. ", "He limped his way out of the wreck and picked a hobbling path off through the darkness towards the rocky outcrop where the other truck had crashed. ", "Ben watched his torch beam dart around the vehicle. ", "Bellini didn't look as though he had the physical force to haul out the driver the way Bozza had, but as the guy had already exited via the windscreen, he didn't have to try. ", "Moments later, the truck fired up in a cloud of blue smoke. ", "The rattle coming from under the crumpled bonnet didn't sound too terminal. ", "Both its headlights were smashed, but the two roof-mounted spotlamps that hadn't been knocked askew by the gunner's flying body still worked fine. ", "Their light shone brightly over the slick of blood that three dead men had left all over the rumpled bonnet and the rock in front of it. ", "Bellini engaged reverse and gingerly pulled away from the mess.", "\n\nUsberti smiled. '", "Two working vehicles. ", "Professor Manzini, you will accompany me in the first. ", "Aldo, you will drive us. ", "Ugo, you drive the second with Silvano and the major. ", "Stay close behind us. ", "We will find a place to shelter for the night, where the professor can finish her translation. ", "Come morning, we will complete our quest.'", "\n\nThe approaching lights were getting gradually closer. ", "The way they were moving suggested that they belonged to a larger, slower transport, maybe a troop carrier full of Syrian rebels fleeing from the Russian tanks. ", "Ben was no more anxious to hang around and find out than the others. ", "The pickup truck's bench seat was just about wide enough for three. ", "Usberti hurried Anna to the passenger side of the first truck and pressed his bulk in after her, making her squash up in the middle as Groppione loaded bags from the wrecked RV into the pickup bed and took the wheel from Bozza. ", "Bozza pointed his pistol at Ben and walked him to the second truck where Bellini was waiting. ", "Bellini climbed out of the driver's side. ", "Bozza gave him the pistol, then got in behind the wheel.", "\n\n'After you,' Bellini said, training the gun on Ben's head.", "\n\n'Are you sure you know how to work that thing?' ", "Ben said.", "\n\n'Well enough. ", "Get in, please. ", "I don't want to have to shoot you.'", "\n\n'All the better for you,' Ben replied. ", "He squeezed in, hands painfully trapped against the seat in the small of his back, one foot either side of the transmission tunnel, his left shoulder pressed against Bozza's right. ", "It felt like granite. ", "Bellini stiffly clambered into the passenger seat to Ben's right. ", "The door mechanism had been damaged in the crash and wouldn't close, forcing Bellini into an awkward position with his arms crossed over his lap, holding the door handle shut with his left hand so he could keep the pistol pointed at Ben in his right.", "\n\nThe lead truck took off into the darkness, its single working headlight bobbing and bouncing as Groppione hustled across the desert as fast as he could. ", "Bozza followed, silent and grim as ever.", "\n\n'Talkative, isn't he?' ", "Ben said. '", "Once you get him started, you can't shut him up.'", "\n\n'Ugo doesn't speak,' Bellini said. '", "Not to me, not even to Usberti. ", "Least of all to you. ", "He's taken a vow of silence. ", "And I would advise you to follow his example. ", "Don't make this worse for yourself.'", "\n\nThey kept moving fast over the desert. ", "It was a rough ride, but Ben had had rougher. ", "A blast of freezing wind, snow and dirt kicked up by the wheels of the lead truck whistled through the broken windscreen and all around the inside of the cab. ", "The bobbing tail-lights ahead were barely visible. ", "Meanwhile the headlights behind them gradually receded to pinpoints in their wake and finally vanished altogether, leaving their little convoy alone in the vastness of the night.", "\n\nBen was picturing Anna sitting there in the lead truck next to Usberti, wondering what the bastard was saying to her, wishing he could have done something to prevent the situation getting so bad. ", "And he was thinking about all the possible ways he could disarm Bellini and kill both him and Bozza without using his hands.", "\n\nThe first part wouldn't have been too hard. ", "Speed and surprise would be half the battle. ", "Ben's upper body was already canted slightly forwards out of his seat because of his cuffed wrists in the small of his back, which potentially gave him an advantage. ", "A violent curved lunge to the right, one good solid head-butt straight to Bellini's forehead, and he could smash the guy's glasses off, break his nose, then use his elbow to knock the weapon out of his hand before he pulled the trigger, and then flip himself around to kick hard with both boots and send Bellini flying right out of the damaged door. ", "One down, maybe three seconds.", "\n\nBut taking on Bozza no-handed was a different matter. ", "It would be the most efficient form of suicide imaginable. ", "Ben closed his eyes, willed his mind and body to relax, and resolved to wait for a better opportunity.", "\n\nAfter a few more minutes he sensed that they were slowing down. ", "He opened his eyes again, expecting to see the lead truck doing the same. ", "It wasn't. ", "The gap between them was widening, Usberti leading further and further ahead. ", "For a moment Ben thought something was wrong with the engine, even though the rattle from under the bonnet hadn't got noticeably worse. ", "It wasn't fuel, either. ", "The gauge was reading a third full. ", "Then he realised that Bozza was deliberately slackening his pressure on the gas. ", "The speedometer needle dropped to forty kilometres an hour. ", "Then thirty-five. ", "The dirt spray from the lead truck would obscure most of what Groppione would be able to see in his mirrors. ", "They wouldn't know what was happening behind them.", "\n\nAnd something _was_ happening, for sure. ", "Ben could sense it almost telepathically, just like he could feel the strange energy emanating from the silent killer sitting next to him.", "\n\n'Ugo, why are we slowing down?' ", "Bellini said. ", "He was shivering so much from the cold that his voice was full of tremors. '", "What are you doing? ", "I don't understand.'", "\n\nBut Ben understood.", "\n\nHe wasn't the only one planning his moves, waiting for the right moment.", "\n\nBozza let the truck roll to a halt.", "\n\nThen he turned off the engine. ", "\n\n## Chapter 59\n\nThey were in the middle of nowhere, nothing to be seen except the twin strips of illuminated ground in the beams of the spotlamps, snow drifting gently through them to coat the desert in a sprinkling of whiteness. ", "The sound of the lead truck was so distant as to be barely audible.", "\n\nBellini repeated, 'Ugo, what are you doing? ", "Keep moving. ", "Usberti said we were to follow close behind.'", "\n\nBozza said nothing. ", "Instead, he reached for his door and opened it and stepped out of the truck. ", "He walked around its front, casting a monstrous shadow across the landscape ahead. ", "Before Bellini could say anything more, Bozza pulled the passenger door open and punched him hard in the face. ", "Bellini brought the gun around defensively to point his way, but Bozza was much faster. ", "He snatched it from Bellini's fingers, seized his collar and dragged him from the truck and punched him twice more, breaking his nose and smashing his glasses. ", "Bellini went limp on the ground.", "\n\nBozza spoke for the first time. '", "Fuck Usberti. ", "And fuck you, _priest_.'", "\n\nBy then, Ben was already out of the truck. ", "Nowhere to run.", "\n\nHe wouldn't have run, anyway. ", "Not from this man. ", "He would fight, even with his hands tied behind his back and no possible chance of winning. ", "Sometimes, it was the fight that mattered, more than the outcome.", "\n\nBozza left Bellini lying semi-conscious in the dirty snow and walked slowly back around the front of the truck towards Ben. ", "He was smiling. ", "He pointed the pistol.", "\n\n'Get on your knees.' ", "His voice was raspy and pitched an octave lower than a normal man's.", "\n\n'You know I won't do that,' Ben said.", "\n\nBozza shrugged, like saying, 'Fair enough.' ", "And shot Ben in the left leg.", "\n\nAgony lanced like a blade through Ben's thigh. ", "His left knee gave way under him and he fell hard on his side. ", "He rolled and looked up at the man's silhouette standing tall above him against the lights of the truck.", "\n\n'You going to shoot me in the head? ", "Go for it, if you've got the guts.'", "\n\nBozza laughed. '", "You want me to make this easy for you, Ben Hope. ", "But I am in no hurry. ", "I have waited for this.' ", "He held the gun up in the air and tossed it over his shoulder. ", "It hit the ground a couple of feet behind him. ", "He took a step closer to Ben, and kicked him in the stomach.", "\n\nShot in the leg with the wind knocked out of him, Ben would have loved to jump up and get in the fight. ", "Bozza laughed again, a strange raucous cackling that wasn't quite human. ", "He peeled off one glove, then the other. ", "Folded them carefully away into his jacket pocket. ", "He spat on his hands and rubbed them together. ", "Just as he'd promised, he intended to take his time.", "\n\nBen expected the knife to come out next. ", "No matter what training a person has received, no matter how skilled in combat, no matter how brave in the face of impossible odds, no sane human being yet born did not experience visceral fear at the thought of cold steel plunging into their defenceless flesh. ", "Ben knew he was about to get cut: badly, deeply, slowly, expertly, probably fatally. ", "But he also knew he would not sell his life cheaply to Ugo Bozza.", "\n\nHe was wrong about the knife. ", "And he couldn't have fully imagined what was about to happen next.", "\n\nBozza hovered over him and then, as fast as a falcon swooping on a mouse, reached down with fingers splayed like talons. ", "Still gasping from the gut-kick, Ben wasn't quick enough to ward him off. ", "Bozza's fingers gripped Ben's shoulder muscle, near the base of his neck. ", "They squeezed like no grip Ben had ever felt before. ", "The pain that exploded through him was as if red-hot wires had been inserted into every cell of his body and simultaneously hooked up to a million-volt electrical pulse generator. ", "There was no physical way to control his response to it. ", "Nothing he could do to resist what Bozza was doing to him. ", "But he wouldn't scream. ", "He wouldn't utter a sound, not if he had to bite his own tongue off.", "\n\n'I am going to make you suffer like this for hours, Ben Hope. ", "Scream. ", "You know you want to. ", "You will die screaming.'", "\n\nBozza released the nerve centre. ", "His hand drew back and his eyes darted up and down Ben's body as though he was deciding where to hurt him next. ", "Then the hand darted back in like a snake. ", "Ben felt the agony course and quake through him. ", "He was on fire, tearing apart, exploding into a thousand pieces. ", "The pain of his wounded leg felt like nothing by comparison.", "\n\nA voice from very far away shouted, 'STOP!'", "\n\nBozza released his torturous grip. ", "He turned. ", "Bellini was standing by the truck. ", "There was blood pouring from his nose. ", "The broken glasses were gone.", "\n\nBellini repeated, 'Stop. ", "You're going to kill him.'", "\n\nBozza nodded impassively. '", "Yes. ", "And you, if you stand in my way.'", "\n\n'Usberti will punish you if you don't let him go, right now.'", "\n\n'Usberti can die too,' Bozza said. '", "You think he matters to me?'", "\n\nThe two of them seemed to lock eyes for the longest moment. ", "Then Bellini's gaze flicked down at the gun on the ground. ", "It lay a couple of paces closer to his feet than it did to Bozza's. ", "Bozza could see what he was thinking, and smiled at the idea that this limping cripple, this half-blind gawky preacher, thought he could beat him – _him_ , Ugo Bozza – to the drop.", "\n\nThen Bellini went for the gun.", "\n\nExcept there was something Bozza couldn't have predicted. ", "Bellini was no longer the limping cripple, and he could see just fine without his glasses. ", "He got to the gun first and scooped it up and wheeled away just in time to duck out of the path of Bozza's fists. ", "Backing off three fast steps with the pistol thrust out in both hands, he yelled, 'On the ground! ", "You're under arrest!'", "\n\nBozza sneered at him. ", "Then attacked like a charging tiger.", "\n\nThe gunshot rang out. ", "Bozza recoiled, blood spurting from a hole in his shoulder, eyes wide more with incredulous surprise than the shock of being shot. ", "He clutched his shoulder and stood there for an instant as Bellini kept the weapon pointed at him.", "\n\n'I said, on the ground, NOW!' ", "Bellini yelled. ", "His whole manner and behaviour were suddenly completely changed.", "\n\nBozza hesitated one more second, then bolted into the darkness.", "\n\nBellini watched the man sprint away. ", "He lowered the gun and hurried over to where Ben lay clutching his injured leg. '", "You're bleeding badly.'", "\n\nBen had already assessed the damage. ", "A gunshot to the thigh can kill a man within minutes, but that wasn't going to happen to him. ", "Bozza had deliberately aimed off and only clipped the outside of the quadriceps muscle, in order to bring him down without injuring him too badly. ", "He didn't want his victim to bleed out from a ruptured femoral artery. ", "That would have been much too quick and merciful an end.", "\n\nBen looked up at Bellini. '", "Who are you?'", "\n\nBellini said, 'We'll get to that. ", "First I'll see if there's a med kit in the truck.' ", "He hurried over to the vehicle, dug under the seats and returned a moment later with a tatty olive-green plastic box that he set on the ground next to Ben and opened up. '", "Okay, we have pressure bandages, rolls of gauze, surgical tape, antiseptic, some penicillin that's about three years out of date and a bunch of morphine syrettes that look like military surplus left over from the Vietnam War.'", "\n\n'How many syrettes?'", "\n\n'Enough to kill a platoon. ", "Or turn them into hopeless addicts.'", "\n\n'That'll do. ", "First you need to help me get these damn cuffs off.'", "\n\n'I have no key.'", "\n\n'Then shoot them off me.'", "\n\n'Gun's jammed.'", "\n\n'Then unjam it.'", "\n\nBen had never seen a priest who could field-strip a pistol the way Bellini could. ", "He ejected the magazine, worked the slide back and forth to clear the jam and then released a catch to allow the slide to pull free of its rails. ", "Next he took out the barrel and spring, wiped down and blew into the mechanism and then put everything together again just as fast. '", "All right. ", "Now hold steady. ", "I'm going to blow the chain in half. ", "That's the best I can do. ", "If I try for the bracelets it's going to take your hands off.'", "\n\nBen gritted his teeth from the pain in his thigh as he rolled onto his side and kept his wrists braced as far apart as he could. ", "He felt Bellini lever the muzzle of the pistol between them, pressing against the chain. '", "The blast's going to hurt like a bastard,' Bellini warned him.", "\n\n'Do it,' Ben said. ", "Bellini fired. ", "The explosion of hot gases that burst from the muzzle in the bullet's wake seared his flesh. ", "His hands jerked free. ", "He flexed his arms. ", "The steel bracelets were still clamped too tightly around his wrists, each dangling a few links of broken chain. ", "The flesh was blackened and bloody where the hot nitrocellulose propellant gases had broken the skin, but he had worse pain elsewhere.", "\n\n'Give me one of those syrettes,' he muttered, feeling faint from the agony of his leg. ", "Bellini pulled one from the med kit. ", "Ben tore open the wrapping and jabbed the needle into his thigh, a few inches from the gunshot wound. ", "The pain relief would be rapid, in exchange for some temporary wooziness, and maybe a hallucination or two. ", "He could live with that, especially if the drug took away the lingering, burning torment of what Bozza had done to the nerves of his neck and shoulder.", "\n\n'You'd better wrap that leg,' Bellini said. '", "Not to mention start looking for a hospital.'", "\n\n'What hospital? ", "Anyway, it's just a scratch.'", "\n\n'Looks like more than a scratch to me.'", "\n\n'Why did you let Bozza run?'", "\n\n'I didn't. ", "I was going to shoot him again, but like I told you, the gun jammed. ", "Sand and grit in the slide rails. ", "Fucking Glock piece of shit. ", "Anyway, he's wounded and he can't survive long out here. ", "I hope the fucker gets beheaded by ISIL or skinned alive in a dust storm.'", "\n\n'You certainly don't talk like a priest.'", "\n\n'That's because I'm not. ", "But my father was. ", "I've spent the last six months trying to be him, basically.'", "\n\n'Then who the hell are you?' ", "Ben asked.", "\n\n'First, my name's not Bellini. ", "It's Janssens. ", "The rest is a long story.'", "\n\n'I want to hear it,' Ben said. '", "But not here.'", "\n\n'Where?'", "\n\n'In the truck. ", "We have some bad guys to catch up with.'", "\n\n## Chapter 60\n\nAfter Ben had cleaned up his leg, disinfected the wound area and taped it up with a pressure bandage to stem the bleeding, Janssens helped him back to the truck. '", "I'd better drive,' Janssens said. '", "Apart from not being able to work the clutch, that morphine's going to knock you for six.'", "\n\n'Can you follow tyre tracks over this terrain?'", "\n\n'Not when they're covered up with fresh snowfall,' Janssens admitted.", "\n\n'Then I'd better stay awake, hadn't I?'", "\n\nThey took off, chasing the faint tracks of Usberti's truck. ", "The snow was gradually easing off, but the wind was blowing harder and Ben guessed from the way Janssens started shivering again that the temperature had dropped still further. ", "He couldn't feel it, with the effects of the morphine elevating his body heat. ", "The drug was kicking in full blast now. ", "He had to keep blinking to stop himself from falling asleep. ", "The nicotine rush from a few good, strong cigarettes would have been ideal, but Janssens didn't smoke.", "\n\n'Talk to me,' Ben said.", "\n\n'You want my life story? ", "My name's Marc Janssens. ", "Son of a Belgian priest and an Italian schoolteacher. ", "Hence, the fact I could pass myself off as Italian, as well as a man of the church.'", "\n\n'You told Bozza you were arresting him. ", "You're a cop?'", "\n\n'I prefer \"undercover law enforcement agent\",' Janssens replied.", "\n\n'What agency?'", "\n\n'A leading one.'", "\n\n'INTERPOL?'", "\n\nJanssens took one hand off the wheel to make a vague gesture. '", "Whatever. ", "You know, we're all the same soup. ", "Let's just say I was sent into deep cover to infiltrate Usberti's operation.'", "\n\n'To investigate what? ", "He was cleared of all charges, years ago.'", "\n\n'Precisely,' Janssens said. '", "Elements within the agency were unhappy with the way he got off the first time. ", "There were suggestions that he used his power, money and contacts to leverage his way out of trouble, letting others take the fall for him.'", "\n\n'Like Fabrizio Severini.'", "\n\nJanssens nodded. '", "But now we've got more than enough evidence to blow the case back wide open and put that piece of shit away for the rest of his life.'", "\n\n'If he lives that long,' Ben said.", "\n\nJanssens smiled. '", "So, have you puzzled it out yet?'", "\n\nBen looked at him, confused.", "\n\n'The letter,' Janssens said.", "\n\n'It was you?'", "\n\n'No, the letter was for real. ", "But it wasn't God who gave Severini the word that Usberti was back in business. ", "It was me. ", "Personally, I thought the whole divine inspiration bit was too kooky. ", "I was afraid it would put you off. ", "But I couldn't think of any other reason why a crazy old coot in jail might have the inside track on what Usberti was doing.'", "\n\n'Why contact me at all?' ", "Ben asked.", "\n\n'Three reasons,' Janssens said. '", "First reason, you were the guy who did more than anyone else to nail him the first time round. ", "If only he hadn't managed to slip through the net in the end, it would have been all down to you.'", "\n\n'Not just me. ", "Luc Simon did his bit, too.'", "\n\n'You can play it cool if you want. ", "Second reason, as a result of the first, we knew you were Usberti's top target and about to become involved anyway. ", "Sadly, he made his moves against you and the others sooner than we anticipated.'", "\n\n'Meaning that you could have saved them,' Ben said. '", "If you people had come to me sooner, all this could have been prevented. ", "Father Pascal and Luc Simon would be alive now. ", "Jeff wouldn't have been shot.'", "\n\n'I know. ", "I'm sorry. ", "If you let me explain the third reason, you'll understand why that couldn't be helped.'", "\n\n'It had better be a good one.'", "\n\nJanssens said, 'When I said I worked for a big law enforcement agency, I was telling the truth. ", "Thing is, I work for Europol. ", "Now do you understand?'", "\n\nBen narrowed his eyes. '", "Europol are just an organising body with limited powers. ", "In effect, you're a paper tiger. ", "You don't have the authority to arrest criminals, or even to conduct criminal investigations inside Europe.'", "\n\n'You're right. ", "Technically, we're strictly an intelligence agency, and obliged to delegate those powers to INTERPOL, a whole other and totally differently-structured organisation. ", "Unless, that is, we decide to do things off our own bat.'", "\n\n'Which is what happened in this case?'", "\n\n'That would be one way of putting it,' Janssens said.", "\n\n'Meaning that this isn't any kind of official investigation,' Ben said. '", "You're off the radar and in direct contravention of your own rules, just by being here.'", "\n\n'Yeah, right. ", "Just like the CIA are technically prohibited from performing internal security functions within North America, but they say screw that and do it anyway. ", "Wake up. ", "The rule books were tossed a long time ago. ", "When it suits them, at any rate.'", "\n\n'Go on.'", "\n\n'And so, a group of Europol agents, pissed off about the way Usberti got off the hook, took it upon ourselves to reopen the case privately.'", "\n\n'How big a group?'", "\n\n'Me, and four other guys. ", "I was elected to be the undercover person, first because I can speak Italian fluently, second because I'm supposedly on medical leave, so I was free not to go into the office every day like the others.'", "\n\n'The back thing? ", "I thought you were faking it. ", "Like the glasses.'", "\n\n'Exaggerating it, as part of my cover. ", "I damaged my spine in a motorcycle crash last year. ", "But it's a lot better now than it was. ", "Thank you for asking.'", "\n\n'If you're looking for sympathy, you can look somewhere else,' Ben said.", "\n\n'Says the guy whose ass I just saved.'", "\n\n'Keep talking, Janssens.'", "\n\n'It took a long time to work my way inside his organisation and gain his trust, but I played my role well and it worked. ", "Slowly, I began to understand what the devious scumbag was up to. ", "He was planning to fake his own death, using a body double, a man called Gennaro Tucci who he found by chance in some small village in Umbria. ", "They grabbed Tucci one night from his home, brought him back, imprisoned him and then slaughtered him.'", "\n\n'The body in the lake.'", "\n\n'These people are monsters. ", "And now I really thought we had them. ", "An open-and-shut murder case that my guys and I could simply hand over to the correct authorities.' ", "Janssens shook his head bitterly. '", "How wrong I was. ", "That was when it all started falling apart. ", "It seems Usberti still has one or two sympathisers in high places. ", "The moment we filed our report, certain agency chiefs – we believe in collusion with certain EU ministers, although we can't prove anything – came down on it like a ton of _merde_ , buried the whole investigation and my team with it.'", "\n\n'Fired?'", "\n\n'Suspended indefinitely without pay pending an internal inquiry, which amounts to the same career death, whichever way you look at it. ", "At least they could go home and be with their families, go fishing, find something else to do, or whatever. ", "Not me. ", "I was suddenly left hanging. ", "I couldn't depend on my colleagues' backup any longer, and I couldn't trust the department. ", "It was like being stranded on a desert island, except this particular island was full of predators who'd torture me to death and put my head on a spike for the seagulls to peck if they suspected the slightest thing. ", "I was desperate.'", "\n\n'So you decided to call in outside help,' Ben said.", "\n\nJanssens shrugged. '", "I didn't know what else to do. ", "I looked you up, found your training centre's website and your address in France. ", "Except how could I contact you directly? ", "What if you didn't believe me? ", "It could have backfired on me, and I'd be dead. ", "I had to find another way.'", "\n\n'By working Severini.'", "\n\n'It was all I could think of. ", "When Usberti sent me on an errand to Brescia I managed to slip away long enough to drive to Milan and pay a visit to Bollati prison. ", "Severini hadn't had a visitor in years. ", "He was glad to talk to someone. ", "Even gladder when I told him we were _this_ close to nailing his former employer once and for all. ", "Nobody, and I mean nobody, hates Usberti as much as he does.'", "\n\n'I doubt that very much,' Ben said.", "\n\n'He agreed to help me in whatever way he could. ", "We composed the letter together, and it went into the prison's outgoing mailbag the same day.'", "\n\nNow it was clear why Janssens had looked so uneasy back in Turkey, when Ben had mentioned to Usberti that Severini had contacted him.", "\n\n'I was out of the country when the letter turned up at Le Val,' Ben said. '", "If I'd received it a few days sooner—'\n\n'I assumed it was either that, or you'd just torn it up. ", "Either way, it looked as though my plan had failed. ", "My only consolation was that there was no possibility of it coming back on me.'", "\n\n'And my friends paid the price instead.'", "\n\nJanssens was silent for a moment, gripping the steering wheel tightly and staring at the desert. ", "Then he nodded and turned to look at Ben.", "\n\n'It's true,' Janssens said. '", "How can I tell you enough times that I'm sorry for all that's happened? ", "And what good are words, anyway? ", "There's only one thing to do now. ", "We have to set things right. ", "For them.'", "\n\n## Chapter 61\n\nGroppione had driven quite some way through the dark desert by the time Usberti happened to glance back and realise that the second truck was no longer there.", "\n\n'Maybe they broke down,' Groppione suggested.", "\n\n'You should have been paying attention.'", "\n\n'I'm sorry, boss. ", "What do you want to do? ", "You want me to double back and go look for 'm?'", "\n\nUsberti thought about it, then shook his head. '", "No, we must keep moving. ", "Ugo is equipped with a satellite tracker device linked to mine; he knows my exact location at all times. ", "He will find us. ", "The mission must come first.'", "\n\nAnna was shaking inside, but she wouldn't let them see it. ", "Swallowing her fear, she laughed. '", "Now I know what you've been doing with yourself all these years. ", "Watching bad movies full of lines like \"the mission must come first\" and dreaming of yourself as the big hero.'", "\n\n'I would not be so brazen, if I were you, Professor. ", "Your very survival depends on my continued goodwill.'", "\n\n'You know what's happening, don't you, Usberti?' ", "she said. '", "You made a big mistake, turning your back on Ben Hope. ", "Now your little flunkies are both dead and he's coming after you and this other _idiota_ here.'", "\n\n'Shut your filthy mouth, slut,' Groppione growled at her.", "\n\n'You know it's true. ", "And there's not a damn thing you can do to stop him. ", "He took you down the last time, and this time he's going to take you down for good.'", "\n\n'We shall see about that,' Usberti said. ", "The anxiety in his voice made Anna smile to herself, despite her own terror of what might soon happen to her. ", "In the darkness he reached inside his jacket and took out a small pill bottle. ", "She watched as he unscrewed it, shook two pills into the palm of his hand and swallowed them. ", "Was that a slight tremor she noticed in his hands? ", "If it was, she was glad.", "\n\nSoon afterwards, they came to the edge of a plateau where clusters of strange rock formations and clumps of vegetation offered a break from the freezing wind. ", "Usberti ordered Groppione to halt the truck.", "\n\n'Unpack the equipment, Aldo,' Usberti said as they stopped. '", "This place will serve as a rest point while our guest makes herself useful.'", "\n\nGroppione got out and dragged the bags from the back of the truck. ", "Inside one of them was a portable paraffin stove that he set up in the lee of an overhanging rock and busied himself lighting. ", "As it hissed and ticked and popped fiercely, he went back to the bag and took out an Italian stovetop coffee percolator that he set on top. ", "The aroma of good espresso soon began to steam out of it. '", "All the comforts of home,' Anna said acidly. ", "She kept glancing at the horizon. ", "Expecting, praying, for Ben to appear at any moment, but the seconds kept passing and there was no sign of him. ", "Where was he?", "\n\nBy the light of two rechargeable lanterns, Usberti directed Anna to a sheltered spot close to the warmth of the fire, told her to sit and tossed the camera in her lap. '", "I am going to enjoy a cup of hot coffee. ", "By the time I have finished, I expect results from you. ", "And I hope for your sake that they are all I could wish for.'", "\n\n'Are you crazy?' ", "she retorted. '", "This isn't something you can work out in five minutes. ", "Cuneiform script is more than just some simple code, it's a whole system of different languages from all kinds of different cultures across thousands of years. ", "These inscriptions could take a team of experts weeks, even months, to decipher.'", "\n\n'I am not an idiot, Professor. ", "This is the very same variety of Akkadian as was used in ancient Babylon, as I know perfectly well. ", "I also happen to have it on good authority, that is to say the late Signor Kavur, that you have studied it in some depth during the course of your considerable research. ", "That said, I do not expect an eloquent translation. ", "Only the essence of what is there. ", "Aldo, how is that coffee coming along?'", "\n\nGroppione poured the bubbling espresso into a pair of tin mugs, for himself and his boss. ", "Usberti paced and sipped, then paced some more as Anna studied the various images Ben had taken of the clifftop carvings. ", "The camera allowed her to enlarge the pictures to examine detail more closely. ", "Groppione perched on the edge of a nearby rock and watched her with a glinting leer as she worked. ", "He was nursing a big black Walther pistol in his lap in case she tried to run. ", "And just in case a pistol wasn't enough hardware to shoot down an unarmed woman, a submachine gun stood propped within easy reach against the rock.", "\n\n'Your time is up,' Usberti said when he'd drained the last of his coffee.", "\n\nShe glared at him. '", "I have no idea what any of this says. ", "None. ", "It's totally illegible to me.'", "\n\n'Then it appears I have employed the wrong translator. ", "Aldo, you have my permission to dispatch the professor in whatever manner pleases you.'", "\n\nIt was just the order Groppione had been waiting for. ", "He eagerly jumped down from his rock and stepped towards her, grinning. ", "Anna backed away.", "\n\n'Unless', Usberti said, holding up a hand, 'she has changed her mind. ", "Have you changed your mind, my dear?'", "\n\n'All right, all right,' she said, relenting. '", "I can't be totally sure, but I think this first line translates something like \"Where Nimrod sleeps\".'", "\n\n'Curious, the way a little pressure can suddenly bring focus and clarity,' Usberti chuckled. '", "Now perhaps we are getting somewhere. ", "Nimrod, son of Cush, himself son of Ham, who in turn was the youngest child of the prophet Noah. ", "The Book of Genesis tells us that Nimrod was the founder of a mighty kingdom in the land called Shinar, whose capital many scholars believe was the city of Babel. ", "Babel being, of course, the name given in the Hebrew Bible to none other than Babylon itself.'", "\n\n'Then this line \"Where Nimrod sleeps\" obviously points back to Babylon,' Anna said. '", "What does that mean? ", "The idol never left the city?'", "\n\nUsberti pondered the question for a moment, then shook his head. '", "I believe there is another interpretation. ", "As their revered founder and first great ruler, Nimrod was later deified by the Babylonians as a personification of the sun god. ", "The phrase \"where Nimrod sleeps\" may be thus taken to signify the position of the setting sun. ", "In other words, a simple instruction pointing us towards due west. ", "Please carry on, Professor. ", "What does the next line say?'", "\n\nShe swallowed, controlled her pounding heart and scrutinised the camera's screen. '", "It's mostly worn away. ", "I can only read a few of the markings.'", "\n\n'After such a promising start. ", "Aldo?'", "\n\n'Okay, okay,' Anna said quickly. '", "The part that I can make out says something about, \"one and one half _beru_ \".'", "\n\n'What the fuck is a _beru_?' ", "Groppione muttered, annoyed that he'd been cheated of yet another bit of fun.", "\n\nUsberti silenced him with a hard look, then turned his gaze back on Anna. '", "The professor can explain that, I am sure.'", "\n\nAnna nodded. ", "It wasn't a request. ", "She had no choice but to cooperate. '", "In ancient Mesopotamian texts, the _beru_ was a commonly used measure of time,' she explained, keeping her voice steady. '", "The so-called double hour. ", "So, logically, one and a half _beru_ would make three Babylonian hours. ", "But how long would that be in our time measurement? ", "I have no idea.'", "\n\n'I believe you know better than that, my dear. ", "I would be most disappointed to think you were trying to trick me. ", "The _beru_ was also a measure of distance, equating to the amount of ground that a marching army could cover in that time. ", "Correct?'", "\n\nShe looked at him, beginning to realise he was a step ahead of her. '", "All right,' she conceded. '", "But how far is that? ", "We would just be guessing.'", "\n\nUsberti clicked his tongue. '", "Wrong once again, and that was your last warning not to try to deceive me. ", "You are playing a dangerous game, Professor. ", "Now, let us backtrack for a moment. ", "Having foreseen that deciphering any sort of treasure map would entail understanding the units of distance involved, I have taken the trouble to research the Babylonian system of weights and measures myself. ", "The smallest unit of distance used by their culture was one _she_ , the size of a barleycorn, approximately one-third of a modern centimetre. ", "Six _she_ was what?'", "\n\n'A _shu-si_ ,' Anna said reluctantly.", "\n\n'I tried some of that raw fishy shit once,' Groppione said. '", "I was sick for a week.'", "\n\nAnna ignored him. '", "It's about one point eight centimetres in modern measurement.'", "\n\n'Wonderful, how your memory returns,' Usberti said with a smile. '", "If mine serves me right, the length of thirty _shu-si_ was known as a _kush_.'", "\n\n'About half a modern metre,' Anna admitted.", "\n\n'And twelve _kush_ was one _mindan,_ or approximately six metres. ", "Next comes an _ush_ , equating to sixty _mindan_. ", "Are you with me?'", "\n\nAnna sighed. '", "One _ush_ would measure about three hundred and sixty metres.'", "\n\n'Which brings us full circle to the _beru_ ,' Usberti said. '", "The largest of the ancient Babylonian units of distance. ", "Which you and I both know to be the equivalent of thirty _ush_ , therefore measuring...'\n\n'A little less than eleven kilometres.'", "\n\n'Around ten point eight kilometres, to be more exact. ", "A figure that we can verify with some degree of accuracy, based on a text of the earlier Babylonian ruler Nebuchadnezzar the First, which records the distance from the Sumerian city-state of Der to the Sha'ur River as being some twenty-four _beru_. ", "Now, having checked this myself, I can confirm the distance to be exactly two hundred and fifty-seven kilometres. ", "Divide that figure by twenty-four, and what do we have?'", "\n\nAnna quickly crunched the numbers in her head. '", "Ten point seven kilometres.'", "\n\n'Your skill at mental arithmetic does you credit, Professor. ", "Close enough confirmation, do you not agree? ", "And now I believe we come to the final part of the inscription. ", "Please translate.'", "\n\nAnna knew she couldn't bluff him any more. '", "The last line says, \"There you will find the glory of the king\".'", "\n\n'\"The glory of the king\",' Usberti repeated, clasping his hands. '", "No interpretation is needed to understand such an obvious reference to the legacy of Ashar the Babylonian's revered former monarch, King Nebuchadnezzar the Second. ", "Not only his legacy, but his actual, physical treasure. ", "And at last, we can now put it all together. ", "In summary, the inscription is directing the seeker of this treasure to travel a distance of one and a half _beru_ , or just over sixteen kilometres, due west from Ashar's base.' ", "He pulled the GPS device from his pocket. '", "We can easily calculate the precise coordinates using this wonder of modern technology. ", "As we approach our target, I would expect to find there some form of landmark in the shape of a rock or other object, perhaps put there by Ashar himself to denote the exact spot.'", "\n\n'You're a very clever man,' Anna said. '", "I'll give you that.'", "\n\n'Oh yes, indeed. ", "Furthermore, I possess an unerring sense of when I am being lied to, Professor Manzini. ", "You would not by any chance have attempted to accidentally misread these markings, would you?'", "\n\n'You asked me to translate; that's what I did. ", "If there's a mistake, it's not my fault.'", "\n\n'Are you perfectly sure of that?'", "\n\n'I'm sure.'", "\n\n'Let us find out how sure you really are. ", "Aldo, be a good fellow and remove the little finger of the professor's left hand.'", "\n\n## Chapter 62\n\nEven after all these years, Anna still had horrible nightmares about Franco Bozza's attack on her. ", "The memory had never left her: that sense of dread when she'd realised an intruder was in her villa; the maniac suddenly appearing from the shadows and chasing her up the stairs; the violent blow that had stunned her; the blade of his knife slicing her. ", "She'd never forgotten the terror and the pain.", "\n\nThis was worse. ", "Much worse.", "\n\nWith her back to the rocks, there was no escape as Groppione advanced on her. ", "She struggled frantically to fight him off, but it wasn't enough. ", "He beat her to the ground, pinned her body down with his weight. ", "She smelled his foul breath in her face, heard him laugh, felt his iron grip take a hold of her left hand and prise the little finger free from her clenched fist. ", "Then screamed as she felt the sharp steel bite hard and deep into her flesh, sawing through the cartilage of her finger joint. ", "Then the awful, sickening sensation as the finger came away. ", "He climbed off her, still laughing. ", "She clutched her damaged hand to her chest, unable to look at it but feeling the hot blood jetting out of it and soaking into her jacket. ", "The pain was so stunning that she could barely breathe. ", "Tears flooded down her face. ", "She rolled and writhed, wanted to hit her head on the ground and knock herself out to ease the terrible agony.", "\n\n'I don't think she likes me, boss,' Groppione said, grinning. '", "Gave me the finger. ", "See?' ", "He waggled the severed digit in the air, then tossed it away. ", "He wiped the bloodied blade of his clasp knife against his trousers, folded it up and slipped it back in his pocket.", "\n\nUsberti said, 'Professor, I am still waiting for your assurance that you have been honest with me. ", "You have nine more fingers and thumbs before we start removing pieces elsewhere. ", "And we have all night. ", "So, I repeat: are you sure?'", "\n\nAnna mustered up every molecule of air in her body and screamed, 'I'M SURE!'", "\n\n'I believe it,' Usberti said. '", "She is telling the truth. ", "Which means I now have all the information I need. ", "Consequently, like her associate Kavur before her, Professor Manzini has now reached the end of her usefulness to me and it is time to terminate our association. ", "Over to you, Aldo.'", "\n\nGroppione lit up like a gluttonous child presented with a giant chocolate Easter egg. '", "Can I do her before I kill her?'", "\n\n'The terms of your employment', Usberti replied calmly, 'are that you do exactly as I command at all times, in return for which you receive financial recompense plus additional bonuses of a more recreational nature. ", "She is yours with which to amuse yourself as you desire. ", "But do it out of my sight. ", "I have no desire to observe the repulsive things you are capable of.'", "\n\nThat was no problem at all for Groppione, who at that moment was bursting with gratitude towards such a generous and benevolent employer. ", "While Usberti walked off to make himself another pot of coffee, Groppione snatched up one of the lanterns, grabbed Anna by the collar of her jacket and started dragging her over the rough ground towards a recess among the rocks where he could privately exercise all the urges that had been eating him up ever since they'd captured her.", "\n\nThe recess led to a triangular stone cleft, almost a shallow cave, out of the cold wind and just about high enough to stand up in. _", "Perfect_ , Groppione thought. ", "He hauled her inside, dumped her on the hard ground, set down the lantern to shine on her, and stood at the mouth of the cleft to admire her for a moment before the party began. ", "He took a grimy handkerchief from his pocket and flung it at her. '", "Bandage your hand up with this, bitch. ", "I don't want you pissing your dirty blood all over me.'", "\n\nBlinking away the tears of pain, Anna spat at him like a cornered wildcat. '", "Murdering pig. ", "You're going to die.'", "\n\n'See, no, you're getting that all back to front, babe. _", "You're_ the one going to die. ", "But not just yet. ", "First I'm gonna show you what a real man is. ", "Then I'm gonna strangle you with your own panties. ", "How's that sound?' ", "He thought it sounded incredibly funny. ", "As he started unbuckling his belt he threw back his head and roared with laughter.", "\n\nSo absolutely hilarious, in fact, that he was still cackling and chortling to himself when something thin and black dropped lightly from somewhere overhead and brushed his ear. ", "He swatted at it as though it were a fly, too preoccupied with his imminent carnal prospects to fully register it. ", "Less than a second later, when the slender rope noose jerked tight around his neck, it was already too late for Aldo Groppione to save himself. ", "He boggled upwards in horror, and then his feet left the ground.", "\n\nFrom where Anna lay sprawled on the floor of the rock crevice, it looked as though her would-be rapist was suddenly levitating in mid-air. ", "His hands went to his throat, desperately clawing, legs kicking. ", "His feet jerked another six inches higher, scrabbling like crazy and finding no purchase on the smooth rock. ", "His tongue protruded from his gaping mouth. ", "He tried to cry out, but produced only a dry, rattling croak.", "\n\nOn the ledge above him, Ben tied off the rope, then jumped down. ", "The morphine was still working nicely and he barely felt the jolt in his injured leg. ", "But his stomach twisted and he turned cold when he peered deeper into the rock crevice and saw Anna lying there in the pool of light from the lantern, her face streaked with pain, nursing her mutilated hand.", "\n\n'Ben!' ", "she cried out. ", "He shouldered past Groppione, swinging the dying man like a carcass on a slaughterman's hook, and fell to his knees next to her. '", "What did they do to you?'", "\n\nAnna was trying to reply when she saw Janssens appear at the mouth of the cave and her eyes widened in horror. '", "It's okay, he's with us,' Ben said.", "\n\nJanssens stepped past the hanging, struggling, gasping Groppione, took out Bozza's Glock and offered it to Ben. '", "I'd happily shoot this rapist scum myself, but I think you'd rather do the honours. ", "One in the balls, then one in the head.'", "\n\n'I'm not shooting him,' Ben said. '", "I'm keeping my promise to him.'", "\n\n'What promise?'", "\n\n'That I'd stretch his neck like a chicken. ", "Maybe he's taking it seriously now.'", "\n\n'He's got a strong neck on him. ", "Might take a while.'", "\n\n'Fine by me,' Ben said. '", "In the meantime, run back to the jeep and get me the med kit. ", "Hurry.'", "\n\nWhile Janssens was gone, Ben heard the wheeze and rasp of a starter motor and the sound of an engine revving wildly as a truck sped off into the night. ", "Anna heard it too, through the mist of her pain. '", "Usberti—'\n\n'Let him run. ", "He's on his own now.'", "\n\n'You're hurt,' she gasped as she saw his leg.", "\n\n'Don't you worry about me. ", "Let's get you patched up, okay? ", "Look at me. ", "Breathe. ", "You're going to be fine. ", "That's another promise.'", "\n\nJanssens came running back. '", "The other truck just took off.'", "\n\n'I know. ", "We'll catch up with him after,' Ben said.", "\n\nJanssens held up a submachine gun. '", "I found this.'", "\n\n'Keep it handy.' ", "Ben tore open the med kit and pulled out a syrette. ", "He jabbed it into Anna's arm. '", "This will dull the pain for a while. ", "It's pretty good stuff, let me tell you.' ", "Next he pulled out all the surgical dressing left over from binding his leg wound, and got to work. ", "He taped the pressure bandage into place over the bleeding stump of her finger and then looped a thick wrap of gauze round and round her hand. ", "Lastly, he helped her sit up so that he could place a makeshift sling around her neck to keep the arm supported at an upwards angle across her chest. '", "Everything will be all right now,' he assured her.", "\n\nHer eyelids began to flutter. '", "I feel strange,' she murmured.", "\n\n'That's just the morphine kicking in,' he said. '", "Go with it. ", "Close your eyes and sleep. ", "I'll take care of you. ", "You haven't a worry in the world.'", "\n\nAnna was getting faint. ", "Before she passed out, she whispered, 'Ben... I... I love you, Ben.'", "\n\nWhich Ben attributed to the effect of the drug on her brain. ", "He gazed sadly at her as she fell unconscious. '", "We need to get her to a hospital,' he said.", "\n\n'What hospital?' ", "Janssens said.", "\n\nBen stood and turned to check on Groppione.", "\n\n'Still hanging in there,' Janssens said. ", "The thin rope was cutting deeper into Groppione's neck and his eyes looked about to pop out. ", "His tongue was stretched grotesquely out from his mouth. ", "His movements were becoming less and less as his brain was starved of blood and oxygen.", "\n\n'That'll more or less do it,' Ben said. ", "He patted Groppione's pockets, found the clasp knife in one of them, and a soft-pack of Italian Nazionali cigarettes and a brass Zippo lighter in the other. '", "Well, well, look what we have here.' ", "He put the cigarettes and lighter in his own pocket and snapped the knife open. ", "It was still sticky with Anna's blood. ", "He reached up and sliced the rope, and Groppione flopped to the ground like a sack of dirty laundry.", "\n\n'That'll more or less do what?' ", "Janssens said, looking down at the crumpled heap.", "\n\nBen took out the pack of Nazionalis, drew one from the wrapper, screwed it between his lips, clanged the Zippo and took in a deep pull of sweet smoke. ", "He felt better already.", "\n\n'Cerebral hypoxia,' he said. '", "He'll lie here in a coma until his body starves to death, or something eats him. ", "Maybe someday I'll get to tell Jeff all about it.'", "\n\n'Your friend? ", "The guy he shot, right?'", "\n\n'What goes around comes around,' Ben said. '", "And he had this coming from the moment he pulled the trigger.'", "\n\n'What about Usberti?'", "\n\nBen took another long, silent drag on the cigarette.", "\n\nThen replied, 'Let's go get him.'", "\n\n## Chapter 63\n\nThe first crimson-hued streaks of dawn were breaking over the horizon behind him as Usberti sped due west with the GPS device on the seat beside him, guiding him on. ", "The snow had resumed, whirling down in gusts from the grey sky and making the flat desert appear even more featureless.", "\n\nIt had been so long since he'd driven any kind of motor vehicle, let alone a primitive militarised four-wheel-drive truck, that he'd barely remembered how to operate one. ", "Similarly – even if he'd been able to grab one as he made his hasty escape earlier – he'd never used any sort of firearm in his life and would have had no idea about its functioning. ", "Leadership and power had rendered him aloof from the realities of the world and utterly dependent on the men who had followed him, out of loyalty or out of fear.", "\n\nNow, for the first time in his life, more so even than when he'd lost everything in his fall from grace years before, he felt utterly alone, defenceless and frightened.", "\n\n_Lord, keep me safe and protected._", "\n\nHe had another cause to feel afraid, and it wasn't just the prospect of running into more Syrian troops, or even Ben Hope. ", "It was the private terror he'd harboured for months and confessed to nobody, whose existence he'd tried hard to deny even to himself. ", "The tremors were back, and they were growing worse. ", "So was the nausea that plagued him day and night, and the dull ache he could feel burning sometimes in his shoulder, spreading down his arm. ", "Feeling it now, he reached for his pills as he drove, shook one out and swallowed it dry.", "\n\nHow, how, _how_ had that pestilential man Hope been able to thwart him yet again? ", "Why had Silvano been there with him? ", "Usberti had scarcely been able to believe it when, secretly spying on Groppione in the hopes of catching an eyeful of what he was getting up to with the Manzini woman, he'd spotted Hope and Bellini suddenly appearing from nowhere, looking for all the world as though they belonged on the same team.", "\n\nHad Silvano betrayed him? ", "Had the insidious Hope somehow persuaded him to go over to his side? ", "Or paid him to do so? ", "Which would mean that Hope must be working for Them. ", "Perhaps he had been all along: an enemy agent, sent to do Their evil work. ", "Usberti knew all about Them. ", "They were the Darkness, the powers of Satan, gaining control of the world step by step. ", "Dark times indeed, if God's chosen few failed to stand and fight.", "\n\nWhere, also, was Ugo? ", "If the unthinkable had happened and Hope had managed to defeat and kill him, that was all the proof needed that he must surely be backed by devilish powers.", "\n\nAnd if his loyal, devoted Ugo was gone, now he, Massimiliano, was completely alone. ", "It was all up to him now.", "\n\n'So be it!' ", "he yelled out loud into the snow-dusted emptiness of the desert. '", "I will show them, Lord. ", "I will not let you down!'", "\n\nThe GPS on the seat by his side was his last remaining ally, and proving extremely useful. ", "Using the coordinates of Ashar the Babylonian's cliff as his starting point, Usberti had calculated fresh coordinates of his new destination lying sixteen kilometres west of that location. ", "The tank battle and chase with the rebels had driven his quest a long way off course, but he would soon make up the distance.", "\n\nHowever, when he got there not long afterwards, Usberti could see nothing but bare terrain in all directions. ", "Not a marker, scarcely a bush, in sight. ", "Something was terribly wrong; and yet the technology was insisting they were exactly sixteen kilometres west of Ashar's cliff.", "\n\nUsberti was gripped by sudden doubts. ", "Had that bitch Manzini lied to him after all? ", "Given him a false translation, so that she and Hope could make their way to the right place and steal the treasure that was rightfully his?", "\n\nThe thought made his heart thump. ", "He wiped the cold sweat from his brow. _", "Calm, Massimiliano, calm._ ", "Steadying his mind, he remembered that the measurement of one and a half _beru_ equated to a little _over_ sixteen kilometres: a margin of error allowing for the inexact distance calibrations of the day, which could add as much as two, three hundred or more metres to the figure. ", "That would take him over the crest of the rise he could see ahead, a long north–south ridge glowing crimson from the rising sun at his back.", "\n\nBolstered with renewed optimism, he gunned the truck towards the rise, reached its apex –\n\nAnd there it was. ", "Standing like a monolith in the middle of the emptiness, bathed red by the dawn, the tall solitary rock could be nothing if not some kind of manmade marker. _", "X marks the spot._ ", "He'd found it at last!", "\n\nUsberti went skidding down the slope towards it. ", "He halted the truck and scrambled out, virtually babbling with excitement. ", "The rock was more than twice his height, solidly planted in the ground. ", "He hardly dared to touch it, in case it was some strange vision dreamed up by his fevered imagination – but, no, it was real. ", "He ran his hands over its craggy face. ", "As he wiped away the snow and dirt, he realised with a shock of pure joy that it was carved with markings that – once he'd examined them more closely through his half-moon spectacles – looked just like more of the same kind of cuneiform patterns as the cliff inscription. ", "They were illegible to him, but he could imagine their meaning: ' _Here lies the fabled treasure of dear old King Nebuchadnezzar; congratulations, friend, you've hit the jackpot'._", "\n\n'Thank you, Lord!' ", "he shouted up to the sky. ", "Almost weeping with happiness now, he ran back to the jeep and dragged out the bag he'd managed to salvage in his escape. ", "He tore open the zip and pulled out the folding shovel.", "\n\nMassimiliano Usberti had never performed any kind of manual labour in life, and so it took him a while to understand how to unfold the shovel. ", "Finally, he picked a spot at the foot of the standing rock, stabbed the pointed end of the blade into the ground, and began to dig frantically. ", "He soon scraped through the thin layer of snow to expose the sand underneath. ", "It was harder work than he might have imagined, made even more frustrating by the way the sand and stones kept sliding back into the hole. ", "But he would not be deterred from this glorious moment. ", "He stabbed and dug as fast as he could, grunting like a wild man, sweating profusely despite the freezing wind.", "\n\nThe hole grew deeper and longer, until he'd excavated a trench large enough to bury the truck in. ", "He paused, gasping for air, then went back at it even more ferociously. ", "He had little sense of time, but it must have been another hour of frantic digging before the shovel blade hit something solid under the sand. ", "A larger rock? ", "No, it couldn't be. ", "It mustn't be.", "\n\n_Lord, don't let it be a rock._", "\n\nUsberti hurled away the shovel and threw himself flat on his belly at the edge of the trench, using both hands to dig like a dog. ", "As his fingers came into contact with the buried object he scraped more furiously still, expecting at any moment to see the magnificent glint of gold sparkling up at him in the dawn's red glow. ", "Gold! _", "His_ gold!", "\n\nThis was it.", "\n\nThis was the moment where everything would change for him.", "\n\nHe'd won.", "\n\nIt was a while after sunrise when they found him. ", "Ben was the first to spot the empty truck parked at the foot of the rise. ", "As they came closer they could see the trail of footprints in the thin snow, leading from the vehicle towards the tall standing rock. ", "At the foot of the rock was a large trench some thirty yards long by four wide. ", "Judging by the hills of freshly dug sand, dirt and stones that stood heaped all around its edges, it looked as though someone had been busy.", "\n\nJanssens pulled up, killed the engine and yanked on the brake. ", "He and Ben looked at each other and climbed out without a word. ", "Ben had Bozza's Glock, Janssens had Groppione's Walther, and each man was ready to open fire as they advanced cautiously.", "\n\nBen's leg wound was aching badly now that the painkiller was starting to wear off. ", "Anna remained curled up in the truck with her eyes closed. ", "Her system was still comfortably pumped with the effects of the morphine, along with the past-date antibiotics Ben had dosed her with out of the Syrian rebels' med kit. ", "She'd spent the drive drifting in and out of consciousness, making it hard to get coherent directions out of her. ", "That, combined with the fresh snow gradually obscuring the tracks of Usberti's truck, had slowed their pursuit.", "\n\nBut here they were. ", "And so was Usberti.", "\n\nHe was lying still at the edge of the enormous trench, as though asleep. ", "He didn't stir at their approach. ", "Janssens shot Ben a puzzled look as if to say, 'What the hell—?'", "\n\nAs they stepped closer, Ben noticed the military-style metal folding shovel lying in the dug-up sand nearby. ", "It looked new and relatively unworn, except for the blade which was all scuffs and paint chips. ", "There were no other tracks on the ground. ", "Usberti had clearly done all this digging himself.", "\n\nAnd he'd evidently found something down there as a result.", "\n\nBen peered into the trench and became the second living person to bear witness to the ancient, historic object that had, until now, lain buried in this remote spot through most of recorded history.", "\n\nJanssens looked down into the trench and whistled. '", "Wow. ", "I think maybe Anna would want to see this.'", "\n\n'Yes, I think she would,' Ben said.", "\n\nAnna must have read their thoughts, because she'd already clambered gingerly out of the truck and was making her unsteady way towards them, pale and fragile and clutching her bandaged hand, but her eyes filled with wonder. ", "She said, 'Is it—? ", "I mean, did he—?'", "\n\n'It is, and he did,' Ben said. ", "He put an arm round her shoulders to steady her, and led her to the edge of the trench.", "\n\n'There you have it,' he said, pointing. '", "You were right, Anna. ", "It did exist, all along. ", "The lost golden idol of King Nebuchadnezzar, lost for thousands of years and now rediscovered in all its glory.'", "\n\n## Chapter 64\n\nAll three of them gazed down at the huge, ancient object that Usberti had excavated from the sand: a wizened, blackened stump of desiccated wood, like the remains of a prehistoric oak tree that had become hardened like iron with extreme age and preserved by the dryness of the desert climate.", "\n\nNobody spoke for a long time. '", "Well, so much for that,' Janssens said at last.", "\n\nAnna shook her head. '", "And so, my theory was correct. ", "The idol was created on a modular system, out of gold plates that could be dismantled and packed away for transport. ", "That's how the Muranus were able to smuggle it away from Babylon.'", "\n\n'There's not much left, is there?' ", "Ben said.", "\n\n'Only the wooden core of the structure,' she replied sadly. '", "We'll never know what became of the gold plates. ", "Pillaged by robbers, or taken by the surviving members of Ashar's rebel group after his death, either for their personal gain or to help fight a lost cause that nobody would ever remember. ", "Maybe the plates were discovered by Persian soldiers and taken away as spoils of war. ", "Or, perhaps the family treasure was reclaimed by the Muranu descendants and minted back into coins to support themselves in their exile from their homeland.' ", "She sighed, clutching her hand to her chest. '", "Who knows? ", "Whatever happened to it, the gold is long gone. ", "All that remains is worthless, except to an archaeologist. ", "If they could prove what it was.'", "\n\n'What it is, is a big lump of firewood,' Ben said.", "\n\n'Not a bad idea. ", "We should chop it up and burn it,' Janssens said, rubbing his hands together. '", "Get some warmth happening around here.' ", "Then he glanced over at Usberti. '", "What about him?'", "\n\n'He looks dead,' Anna said.", "\n\nBen left her side and limped over to where Usberti lay. ", "After a moment he called back, 'He's not dead.'", "\n\nUsberti wasn't unconscious, either. ", "But something was wrong with him. ", "His open eyes were glazed and strangely unfocused. ", "His lips were moving as he muttered inaudibly to himself. ", "In one curled hand he was clutching a small pill bottle, from whose unscrewed top what remained of its contents had spilled on the ground.", "\n\nIt was only when Ben reached down to take the pill bottle from his limp fingers that the old man seemed to register his presence. ", "The glazed eyes rolled dolefully up at him, but nothing else moved. ", "Ben read the medical brand name printed on the label to see what the yellow pills on the ground were, and then tossed it away. ", "The patient wouldn't be needing them any more anyhow.", "\n\n'What's happened to him?' ", "Anna said.", "\n\n'He's had a heart attack,' Ben told her. '", "Or a massive stroke. ", "Either way, it's all over for him.'", "\n\n'I've seen him popping more and more of those pills lately,' Janssens said. '", "He didn't think anyone noticed. ", "Seen him clutching his heart once or twice, too. ", "All this digging must've brought on the attack. ", "He's got to have shifted three tons of sand here, at least.'", "\n\n'Or maybe it was the shock of finding what was under it,' Ben said. '", "I'm sorry. ", "It's a shame.'", "\n\nJanssens looked surprised to hear Ben say such a thing. '", "A shame that there was no gold after all, or a shame that this poor, dear, once-great leader of men is now reduced to a drooling vegetable? ", "I can't believe either would bother you that much.'", "\n\n'Neither does,' Ben said. '", "I mean, I'm sorry that I didn't get to see the look on his face when all his sick little dreams fell apart. ", "The moment he realised that hurting my friends, murder and torture, all of it, was for nothing, and that he was never going to live to find his precious gold, and that he was going to die alone and miserable.' ", "He bent closer to Usberti, saw the eyes roll up at him again. '", "Isn't that right, Archbishop? ", "You can hear everything I'm saying, can't you?'", "\n\nUsberti's lips moved and he whispered something. ", "Ben leaned closer still, so he could hear.", "\n\n' _Shoot me... Don't... don't leave me like this... Please._ '", "\n\n'I'd shoot a dog,' Ben said, 'if I thought it was suffering. ", "I'd put any innocent creature out of its misery. ", "But I'd make an exception for you. ", "You don't merit it.'", "\n\n' _I... beg... you... Finish it._ '", "\n\n'You should shoot him,' Anna said.", "\n\n'He's already in hell,' Ben said. '", "Why waste the bullet?'", "\n\n'Because it's the humane thing to do.'", "\n\n'Does he deserve humanity?'", "\n\n'Doesn't everyone?' ", "she said. '", "Give me the gun. ", "I'll do it, if you won't.'", "\n\n'Will it make you feel better?' ", "Ben asked her.", "\n\n'No. ", "It won't. ", "It will make me feel sick for the rest of my life. ", "I'll never be able to close my eyes again without remembering what it felt like to take a life. ", "Even one like his.'", "\n\n'Then I'll do it,' Ben said. '", "I'm not like you, Anna. ", "When I go to bed every night, this bastard's brains all over the ground will be the last thing I picture before I drop off to sleep with a big cheesy smile on my face.'", "\n\nHe put the Glock to Usberti's head.", "\n\n'This is for Father Pascal,' he said. '", "For Luc Simon, for Jeff Dekker. ", "For every life you ever reached out and destroyed. ", "And for all the rest of the people in the world who'll be that little bit safer once you're gone, even if they'll never know it. ", "Say hello to the Devil for me, Usberti, because you'll be with him in about one second from now.'", "\n\nThe shot rang out across the desert. ", "Its echo rolled and boomed for miles. ", "Ben stood up. ", "A jolt of pain ran through him. ", "He felt dizzy and weak, and infinitely sad. ", "Not for what he'd just done. ", "But for the fact that he hadn't done it years sooner.", "\n\n'And that's that,' Janssens said. '", "May the best man win, just like he said.'", "\n\nBen was about to reply when a triple stitch of red holes blew out of Janssens' chest and he went straight down on his back, dead before he even started toppling.", "\n\nBen seized Anna's good arm and sent her spinning over the edge of the trench, then dived in after her as Ugo Bozza loosed off another burst from the submachine gun that Janssens had left in the truck. ", "For a man with a bullet in him, he'd sneaked up on them with incredible stealth.", "\n\nBen poked the Glock over the edge of the trench and snapped back two double-taps in quick succession. ", "He saw the snow skip at Bozza's feet, heard the clank of a copper-jacketed 9mm bullet perforating the truck. ", "Bozza jumped over its side and disappeared behind it. ", "From Ben's low angle he could see the man's feet under the truck's wheelbase. ", "He took aim and fired again, and this time he heard a sharp yell as his bullet punched into the heel of Bozza's boot.", "\n\nBozza went down on one knee, but before Ben could fire again he rattled off another stream from under the truck that made the fresh sand at the edge of the trench dance and sent Ben slithering down for cover. ", "Anna had managed to crawl over to the wooden statue and was cowering behind it. '", "Stay there and don't move!' ", "he yelled at her.", "\n\n'I won't,' she yelled in reply.", "\n\nBen fired. ", "Bozza fired back. ", "Ben fired back again. ", "The gunshots boomed and rattled and echoed over the desert. ", "They could go on like this all day, except for one crucial issue. ", "Trench warfare, with both belligerents hunkered down under cover either side of no-man's land, was a war of attrition whose outcome basically came down to whichever side's ammunition supply could outlast the other's. ", "Ben had started with a near-full Glock, and a Glock was a high-capacity weapon with a thrifty one-at-a-time appetite for bullets. ", "You could load it on a Sunday and shoot all week long. ", "Whereas Bozza's submachine gun was to ammo what a supercharged V12 Chevrolet engine was to fuel, and with no spare magazine the odds were long against him.", "\n\nBozza knew that.", "\n\nAnd so, he shortened them.", "\n\nWhen Ben heard the truck engine starting up, he thought for a second that Bozza was beating an escape. ", "When he saw it racing straight towards him, he knew he couldn't have been more wrong.", "\n\nThe truck came roaring over the edge in a storm of dirt and snow. ", "Its nose tipped forwards and its spinning front wheels slammed into the loose sand and it bounced and careered down the sloping bank of the trench to slam hard into the wooden hulk at the bottom, making Anna crawl frantically out of the way to avoid being crushed to death.", "\n\nBozza came piling out of the driver's side, teeth clenched in a look of manic hatred.", "\n\nBen was there to meet him.", "\n\nThe close-quarter battle was virtually toe to toe. ", "Ben shot Bozza in the chest. ", "Bozza flinched. ", "Ben shot him again. ", "Bozza twisted. ", "The submachine gun snorted out a three-round burst. ", "Two of them missed Ben.", "\n\nThe third one did not miss.", "\n\nBen felt its impact rock him on his feet, but he didn't take his eyes off the pistol's sights or the target behind them. ", "He fired again. ", "A third eye opened up at the exact centre of Bozza's forehead. ", "He seemed to hang in mid-air for a split second, and then dropped soundlessly into the sand and was dead.", "\n\nBen stood there looking over Bozza's corpse. ", "Then he sensed the ground falling out from under him, and suddenly he was looking up at the pale sky with Anna's anguished cry echoing in his ears from somewhere far away. ", "\n\n## Chapter 65\n\nAnna came scrabbling over to him, crying out his name, shaking him. ", "Ben blinked. ", "His vision swirled, then drifted into focus. ", "He rolled his head to one side and saw Bozza lying nearby, staring lifelessly into his eyes with a thin red trickle oozing from the hole in his brow. ", "Then Ben turned his head back upwards and saw Anna kneeling over him, her long black hair dishevelled and hanging down past her tear-streaked face.", "\n\n'That guy Bozza takes a lot of killing, doesn't he?' ", "he said.", "\n\n'So do you, Ben Hope. ", "You hear me? ", "More than anyone!'", "\n\n'I don't know about that,' he replied. ", "He smiled at his feeble joke, but Anna didn't seem to find it amusing. ", "He lifted his head and peered down the length of his body, seeing it as though it belonged to someone else. ", "Then saw the blood pouring from the gunshot wound in his side, and understood why she wasn't laughing.", "\n\n'Oh, God,' she sobbed. '", "You're so badly hurt. ", "It's all because of me.'", "\n\n'Don't be daft,' he said. '", "I do this kind of thing all the time.'", "\n\n'We have to get out of here.'", "\n\n'Can't you just let me lie here a while? ", "I'm feeling a little tired.'", "\n\nShe wiped away her tears. '", "No! ", "Put your arm around my neck. ", "Let me help you. ", "We have to go.'", "\n\nAnna helped him get to his feet, but he couldn't stand properly without her support. ", "Blood seemed to be everywhere. '", "Fine. ", "But I'm driving,' he said, and collapsed again.", "\n\nWhen he woke up, he was in the truck. ", "They were tearing across the desert, bucking and bouncing crazily, Anna driving with one hand. ", "He couldn't see straight. ", "The seat under him felt wet. ", "He was so cold.", "\n\n'Don't move,' she yelled over the engine noise.", "\n\n'Where are we going?'", "\n\n'To a doctor.'", "\n\n'There are no doctors,' he said. '", "Give me some more of that morphine, and I'll be right as rain.' ", "The idea was an appealing one. ", "He could kill himself with an opiate overdose or just sit here and bleed to death. ", "An easy choice.", "\n\n'We'll find help,' she said, staring intently ahead as she hammered the truck over the rough terrain. '", "If it's the last thing I do.' ", "Then she looked down at the dash instruments and her mouth fell open. '", "No! ", "No!'", "\n\n'What is it?' ", "he asked drowsily. ", "He soon understood. ", "The truck began to judder, then to slow, then stalled and coasted to a complete halt.", "\n\n'We can't be out of fuel!' ", "Anna yelled. ", "She thumped the wheel with her good hand. '", "We _can't be_!' ", "She kicked open her door and clambered out. ", "Ben heard her cry of frustration from outside.", "\n\n'Let me guess,' he said as she ran around the truck and opened his door. '", "Some idiot shot a hole in the fuel tank. ", "It happens all the time.'", "\n\nShe nodded, ashen and distraught. '", "I don't know what to do.'", "\n\n'Not your fault,' he said. ", "He managed to haul himself out of his seat and lean against the side of the truck. ", "His legs wouldn't hold him up. ", "He slowly sank down to the cold, hard ground. ", "The desert was huge and empty and still and quiet all around.", "\n\n'There must be something,' she said. '", "I have to think of a way to help us.'", "\n\n'You can help yourself,' he said. '", "Take the pistol and start walking.'", "\n\n'I don't have the pistol,' she said.", "\n\n'Then start walking without it. ", "Someone will find you. ", "You'll be fine. ", "Go home to Italy. ", "Get that hand seen to. ", "Finish the bloody book. ", "Tell the world all about the great golden Babylon idol.'", "\n\n'And you?'", "\n\n'Who gives a damn? ", "Not me.'", "\n\nShe shook her head. '", "It doesn't work that way. ", "Do you remember what you told me?'", "\n\n'Whatever it was, it was probably wrong.'", "\n\n'You told me that you wouldn't leave my side until this was over. ", "And now I'm telling you, Ben Hope, that I won't leave yours.'", "\n\n'That's a hell of a responsibility to lay on me,' he said.", "\n\n'That's the way it is,' she replied.", "\n\n'Then we either stay here together, or we walk out of here together,' he said. '", "Yes?'", "\n\n'Yes. ", "What are you doing?'", "\n\n'What does it look like? ", "I'm getting up. ", "See? ", "I'm fine.'", "\n\nBut he wasn't fine. ", "Not remotely. ", "He wobbled on his feet for a second, then his knees buckled and he was down again. '", "Fuck it,' he muttered. ", "He battled upright again. ", "He wouldn't give up. ", "If he died, he'd die standing. ", "He put an arm around her shoulders.", "\n\n'Let's go,' he said.", "\n\nThe two of them struggled away from the dead truck. ", "Apart from the desert wind that whistled and crackled and peppered them with flurries of snow, they were the only things moving on the whole massive, barren landscape. ", "Two tiny insects crawling over a vast plateau of white nothingness.", "\n\n'That rise ahead,' Anna said. '", "If we can get to the top of it, we might be able to see a village or a town where we can get help.'", "\n\nBen would have told her there were no villages or towns for miles and miles, but he had little energy left for speaking. ", "Or for much else. ", "The dark was clawing at him, beckoning to him, whispering in his ears.", "\n\n_Come down to us_ , it said in a silky voice.", "\n\n_Come on down._", "\n\n'I'm not dead yet,' he mumbled.", "\n\nThey were halfway up the rise when the loud rumble of an engine came out of nowhere and a vehicle suddenly came roaring over the top. ", "It came lurching and bouncing their way, and pulled up. ", "Under the film of grime and slush that caked its bodywork, the jeep was painted up in desert camouflage. ", "It had spare tyres and fuel cans and weaponry slung from everywhere. ", "There were four guys inside.", "\n\nSoldiers. ", "Swathed in desert winter clothes. ", "Their eyes hidden by wraparound dark glasses that reflected the pale sunlight, faces shielded from the cold wind by bandanas. ", "All four stepped out. ", "Automatic rifles in their gloved hands.", "\n\nBen blinked. ", "His vision was hazy from blood loss, and he couldn't make them out too well. ", "Turkish soldiers, maybe, he thought. ", "Or Syrian ones. ", "Or rebel fighters. ", "Or just about anybody else. ", "Whoever they were, they didn't look friendly.", "\n\nBen said, 'Come on, you bastards. ", "If you're going to shoot us, get it over with.'", "\n\nOne of the soldiers stepped forward. ", "He lowered his weapon. ", "Peeled off his dark glasses and stripped the bandana away from his face, and peered at Ben with piercing, steely grey eyes.", "\n\n'Jesus Christ. ", "Don't I fucking know you?' ", "said the soldier. '", "Bloody hell, it's a small world.'", "\n\nBen focused on the man's grizzled, bristly, weather-beaten face. ", "Muttered, ' _Tinker?_ ' ", "Then went whirling into a black void that tunnelled through the centre of the Earth and carried him to the stars.", "\n\n## Chapter 66\n\nSAS, SBS, US Navy SEALs, French GIGN, Israeli Sayeret Maktal and a dozen others: the sphere of Special Forces meant a lot of different things to a lot of different people across the globe.", "\n\nFor some, whether they chose to pit themselves against the challenge and seriously aspire to be all they could be, or whether they just dreamed about it and stuck posters on their bedroom wall, it was the epitome of warrior cool. ", "For others of a different political bent, the shadowy military elites represented the ultimate embodiment of the dark, sinister forces that ruled the world.", "\n\nBut of all the many things that Special Forces might have been or seemed, to those chosen few within the circle it was, above all else, a family. ", "Once you were in, you were in for life. ", "Loyalty was all, the bonds of brotherhood sacred. ", "Guys would do anything, break any rule, take any risk, to protect their own. ", "It didn't matter if you were still in, or if you'd been out for decades. ", "All that mattered was to have paid your dues as part of that tight-knit community – to have lived with them, trained with them, broken bread with them, fought and bled with them, shared in the sorrow of fallen comrades or the elation of victory. ", "Together, as one.", "\n\nAnd Ben Hope had been an integral part of that family for many years. ", "Almost the same span of time had passed since he'd eventually quit and walked away; but in that period of his life he'd done things that, whether he liked it or not, had earned him the reputation of a legend in the eyes of young warriors like Tuesday Fletcher and a hundred others. ", "His name was mentioned with awe and reverence by a generation of Special Air Service soldiers who'd never met him. ", "And it was remembered with fierce pride by those who'd had the experience of serving alongside him.", "\n\nSoldiers like veteran trooper Rab 'Tinker' Taylor, currently engaged on his fourth tour of duty as a platoon commander in the savage, blood-drenched nightmare that the apparently never-ending civil war had made of the beautiful land of Syria.", "\n\nSmall world, indeed.", "\n\nThe four-man SAS unit had tended to the two injured travellers while waiting for an emergency CASEVAC chopper to whisk them to safety. ", "Ben's identity had been formally confirmed via the Ministry of Defence while he was unconscious on the operating table at the US Army Unit Base Camp's military hospital in Damascus, before being flown to the UK for further treatment. ", "The close-knit SF network had quickly cranked into action, doing what it did best. ", "Strings had been pulled, corners cut, the usual authorities neatly left out of the loop, the usual complications associated with two Western travellers found wandering and mysteriously injured with neither passports nor ID in the middle of a foreign war zone studiously avoided.", "\n\nAs for the matter of the bodies of various known members of the Italian crime fraternity, together with a now twice-dead former Vatican archbishop and an off-the-radar Europol agent, scattered in their wake, the report Ben would later submit to the SAS chiefs in Hereford would be filed away in the deepest recess of classified military records, never to be seen again.", "\n\nThat was that – and this time, it really was.", "\n\nTwelve days after leaving Syria, and two days after Ben was released from hospital, Anna Manzini was flown home to Italy. ", "Ben last saw her as she boarded the military transport plane at RAF Lakenheath.", "\n\n'Now I'll always have something to remind me of our time together,' she said, holding up her bandaged left hand.", "\n\n'How is it?' ", "he asked.", "\n\n'It doesn't hurt so much any more. ", "It feels a little strange, a little lighter. ", "Perhaps not the ideal way to lose weight. ", "But I'll get used to it. ", "What about you?'", "\n\n'Hardly much pain,' he lied. '", "Just stiffness, really. ", "I'll soon be able to ditch the walking stick.'", "\n\n'We were lucky,' she said. '", "If you can call it that. ", "I've learned my lesson. ", "No more adventures for me.'", "\n\n'I'm glad to hear you say it.'", "\n\n'Writing books is safer. ", "And I can still do that with nine fingers, from the comfort of my villa. ", "It's a good thing I didn't make my career as a concert violinist.' ", "She paused, looking at him, knowing she wouldn't see him again for a long time, if ever. '", "Are you going home too?' ", "she asked.", "\n\nHe nodded. '", "Yes, I'm going home.'", "\n\n'No more adventures for you either. ", "You have to promise.'", "\n\n'That's one promise you know I can't make,' he said.", "\n\n'I didn't think you could.' ", "She kissed him, and held him tightly for a long moment. '", "Stay safe, _caro mio_. ", "Whatever the future holds. ", "And remember—'\n\n'Remember what?'", "\n\n'If you ever find yourself in Florence, you must give me a call.'", "\n\nHe said nothing more. ", "Just smiled, then stood back and gave her a last wave as the RAF guys closed up the hatch. ", "The plane taxied into position. ", "Minutes later, Ben watched it take off into the wintry English sky.", "\n\n'And home we go,' he murmured to himself when it was gone.", "\n\nTo find what awaiting him, he didn't yet know. ", "In between trying to call Roberta Ryder to give her the all-clear, he'd left three messages on the voicemail of Dr Sandrine Lacombe, asking after Jeff's condition and telling her he'd be back in France tomorrow evening. ", "He was still waiting for Sandrine to reply. ", "And that worried him. ", "It worried him a great deal.", "\n\n## Epilogue\n\nIt was worrying him even more as he trudged up the front steps of the farmhouse at Le Val the following evening.", "\n\nIt was his intention to stop off at home for a few hours, get cleaned up a little, change his clothes and inspect his dressings, before calling another taxi to drive him up to Cherbourg. ", "He'd given up trying to call Sandrine. ", "Either she'd switched jobs, or she'd taken an unexpected holiday and left her phone at home, or she had something to tell him that could only be said face to face. ", "That could only be one thing, and it filled him with dread that made his wounds ache so badly he craved more of that Syrian rebel army morphine.", "\n\nThe farmhouse was totally dark, not a lit window in the place. ", "He found the door locked, so he took out his key and let himself in quietly. ", "The house felt dead and sombre, to match his mood. ", "He hung his jacket on the hook in the front hall, as well as the walking stick that he'd need to use for a few weeks, until his leg healed up completely. ", "He limped slowly into the dark kitchen. ", "Without turning on any lights, he opened a cupboard and took out the bottle of Laphroaig and a glass.", "\n\nThe best part about not being able to drive a car for a while was that you could drink as much as you needed to. ", "Which, in Ben's case, was going to amount to a lot of drinking. ", "That was his intention, too.", "\n\nHe was finishing his glass and about to pour another when the kitchen door opened and Tuesday walked in. '", "I saw the taxi come and go.'", "\n\n'Then you know I'm back,' Ben said.", "\n\n'How come you're sitting in the dark?'", "\n\n'Because it feels like a good place to be right now,' Ben said. '", "How come all the lights are out?'", "\n\n'I was in the back,' Tuesday said, as though that explained anything.", "\n\n'You want a drink?'", "\n\nTuesday shook his head. '", "Nah. ", "I'm okay, thanks. ", "So... what've you been up to?'", "\n\n'I had a few things to sort out.'", "\n\n'Sorted them?'", "\n\nBen nodded. '", "Pretty much.'", "\n\n'We good?'", "\n\n'We're good,' Ben said.", "\n\nTuesday nodded and made no reply. ", "Ben looked at him. ", "Tuesday could be inscrutable at times. '", "Anything you want to tell me?' ", "Ben asked him.", "\n\nTuesday gave a noncommittal shrug. '", "One bit of news. ", "Looks like we're off the hook with the cops. ", "They've reinstated our licence. ", "The armoury stuff all came back yesterday.'", "\n\n'Fancy that,' Ben said. '", "Anything else?'", "\n\n'There was one other thing,' Tuesday said morosely.", "\n\n'And what's that?'", "\n\n'You'd better come with me.'", "\n\n'What for?'", "\n\n''Cause I need to show you something,' Tuesday said.", "\n\n'Show me what?'", "\n\nTuesday said nothing.", "\n\n'Can't you just tell me?'", "\n\n'It's best you see it. ", "I can't describe it.'", "\n\nTuesday led Ben from the dark kitchen, down the dark hallway, towards the living-room door. ", "He turned the handle and pushed the door open. ", "The living room was dark, too.", "\n\nBen limped inside the room. '", "What the hell's this about?' ", "he was about to snap irritably at Tuesday, when the lights all came on at once.", "\n\n'SURPRISE!'", "\n\nBen nearly fell over. ", "Partly out of shock, and partly because Sandrine flew at him and hugged him so hard that he almost lost his balance.", "\n\nEveryone was there. ", "Boonzie McCulloch, accompanied by his wife Mirella and clasping a bottle of whisky that he'd already drunk too much of to be able to speak coherently. ", "Fry, Blackwood, McGuire and the other two ex-SAS guys Boonzie had drafted in to look after things in Ben's absence, all loud and hearty. ", "Marie-Claire, busily topping up empty glasses. ", "Chantal, smiling radiantly but still eclipsed by the terawatt grin that was suddenly splitting Tuesday's face in two. ", "Lynne Dekker and her guy Kip, the crocodile farmer, both pink-faced with mirth and booze. ", "Storm and the rest of the dogs, happily wagging their tails and lolling their tongues.", "\n\nAnd Jeff.", "\n\nHe was sitting in a wheelchair in the middle of the crowded room. ", "He'd lost weight and a couple of shades of colour. ", "But he was alive, and awake, and laughing out loud at the expression on Ben's face. '", "Look what the cat dragged in,' he hooted.", "\n\nBen didn't know what to say. ", "He managed, 'Welcome back to the land of the living, Dekker. ", "Hope you had a good sleep while the rest of us were out working.'", "\n\nSandrine clasped Ben's hand. '", "You look awful,' she said. ", "He couldn't have said the same thing about her. ", "Her hair was loose, all the way down past her waist.", "\n\n'I tried to call you,' he said.", "\n\n'I got your message that you were coming back tonight. ", "And I thought you'd like a surprise.'", "\n\n'When did he wake up?'", "\n\n'Six days ago.'", "\n\n'Six days of hell, mate,' Jeff laughed. '", "These women won't leave me alone. ", "This doctor lady, she's a slave driver, I'm telling you. ", "You never met an RSM half as tough.'", "\n\n'I like the chair,' Ben said to him. '", "It's a good look.'", "\n\n'Just for show,' Jeff replied. '", "You want to see me dance the tango?'", "\n\n'Some other time,' Ben said. ", "A twinge made him step to the nearest sofa and lower himself stiffly into it.", "\n\n'Fuck, mate, you look even more banged up than I am. ", "What happened?'", "\n\n'You want to hear a story?' ", "Ben asked him.", "\n\n'Just what I need.'", "\n\n'I have a story for you,' Ben said. '", "It's about a guy who got his neck stretched like a chicken.'", "\n\n'Sounds great.'", "\n\n'I don't think we need to hear that story now, _chéri_ ,' Chantal said, stepping behind Jeff's chair and putting her hands on his shoulders.", "\n\n'Later,' Jeff said with a wink to Ben.", "\n\nIt was too much. ", "Tears melted into Ben's eyes as he sat there, surrounded by laughter and light and warmth. ", "Sandrine looked tenderly at him and squeezed his hand. '", "Are you okay?'", "\n\n'I am now,' Ben said. '", "I am now.'", "\n\n## Read on for an **_exclusive_** extract of the new Ben Hope adventure by Scott Mariani\n\n**_The Bach Manuscript_**\n\nComing November 2017\n\n## _Prologue_\n\n_Nazi-occupied France,_\n\n_July 16_ _th_ _, 1942_\n\nAll four family members were at home when they came.", "\n\nMonsieur and Madame Silbermann, or Abel and Vidette, were in the salon, relaxing in a pair matching Louis XV armchairs after a modest but excellent lunch prepared by Eliane, the family housekeeper. ", "Vidette was immersed in one of the romantic novels into which she liked to escape, while Abel was frowning at an article in the collaborationist newspaper _Le Temps_ , reading of much more serious matters. ", "Things in France were growing worse. ", "Each day seemed to bring a fresh round of new horrors.", "\n\nSeated at the piano, framed by the bright, warm afternoon light that flooded in through the French windows, their seventeen-year-old daughter Miriam was working through the most difficult arpeggiated right-hand passage of the musical manuscript in front of her, pausing now and then to peer at the handwritten notes, some of which were hard to read on the faded paper.", "\n\nThough she played the piano with a fine touch, Miriam's particular talent lay with the violin, at which she excelled. ", "The real pianist of the family was her little brother. ", "At age twelve, Gabriel Silbermann's ability on the keys was already outstripping that of his teachers, even that of his father. ", "Abel had been a respected professor of music at the Paris Conservatoire for over twenty years, until the venerable institution's director, Henri Rabaud, had helped the Nazi regime to 'cleanse' it of all Jewish employees under the premier _Statut des Juifs_ law, which had come into effect in 1941.", "\n\nFor the last two years Abel Silbermann had managed to get by teaching privately. ", "Things were not what they had been, but he had always convinced himself that the family money, dwindling as it was, would get them through these difficult times. ", "Abel was also the proud owner of a fine collection of historically important musical instruments, some of which he'd inherited from his father, others he had picked up over the years at specialist auctions in France, Switzerland, and Germany – all before the war, of course. ", "It had nearly broken Abel's heart when, six months earlier, he'd been forced to sell the 1698 Stradivarius cello from his collection, to help make ends meet. ", "He often worried that he might have to sell others.", "\n\nBut Abel Silbermann had far worse things to fear. ", "He didn't know it yet, but they were literally just around the corner.", "\n\n' _Merde, c'est dur_ ,' Miriam muttered to herself. ", "Complaining how tough the music was to get her fingers around. ", "Gabriel could rattle through the piece with ease. ", "But then, Gabriel was Gabriel.", "\n\n'Miriam, language!' ", "her mother said sharply, jolted from her reading. ", "Miriam's father permitted himself a smile behind his newspaper.", "\n\nMiriam asked, 'Father, may I get a pencil and add some fingering notes? ", "I promise I'd do it very lightly, so they could easily be rubbed out afterwards.'", "\n\nAbel's smile fell away. '", "Are you mad, girl? ", "That's an original manuscript, signed by the composer himself. ", "Have you any idea what it would be worth?'", "\n\nMiriam reddened, realising the foolishness of her idea. '", "Sorry, father. ", "I wasn't thinking.'", "\n\n'It shouldn't even be out of its box, let alone being defaced with pencil marks. ", "Please tell your brother to put it back where he found it, in future. ", "These things are precious. ", "This one most of all.'", "\n\n'I'm sure Gabriel knows that, father. ", "He calls it our family treasure.'", "\n\n'Indeed it is,' Abel said, softening. '", "Where is Gabriel, anyway?'", "\n\n'In his cubbyhole, I think.'", "\n\nThings had been hard for Gabriel at school since the Nazis invaded. ", "He hated having to wear the yellow star when he was out of the house. ", "Some of the non-Jewish kids pushed him around and called him names. ", "As a result, he had become a rather solitary child who, when he wasn't practising his pieces and scales, liked to spend time alone doing his own things. ", "His cubbyhole was the labyrinth of nooks and crawl-spaces that existed behind the panelled walls of the large house, connecting its many rooms in ways that only Gabriel knew. ", "You could sometimes catch him spying from behind a partition through one of his various peepholes, and you'd call out, 'Oh, Gabriel, stop that nonsense!' ", "and he'd appear moments later, as if by magic, and disarm everyone with his laughter. ", "Other times he could stay hidden for hours and you'd have no idea where he was. ", "Like a tunnel rat, his father used to say jokingly. ", "Then they'd started hearing the terrible stories coming from Ukraine and Poland, from everywhere, of Jews hiding under floorboards and in sewers while their people were transported away for forced labour, or worse. ", "Abel had stopped talking about tunnel rats.", "\n\n'I do wish he'd come out of there,' Vidette Silbermann said. '", "He spends too much time hiding away like that.'", "\n\n'If he's happy,' Miriam said with a shrug. '", "What harm can it do? ", "We all need a little bit of happiness in this terrible, cruel world.'", "\n\nVidette lowered her book and started going into one of her 'In my day, children would never have been allowed to do this or that' diatribes, which they'd heard a thousand times before. ", "Miriam's standard response was to humour her mother by ignoring her. ", "She moved away from the piano and picked her violin up from its stand nearby. ", "Her bow flowed like water over the strings and the notes of the Bach piece sang out melodiously.", "\n\nThat was when they heard the growl of approaching vehicles coming up to the house. ", "Brakes grinding, tyres crunching to a halt on the gravel outside, doors slamming. ", "Voices and the trudge of heavy boots.", "\n\nMiriam stopped playing and looked with wide eyes at her father, who threw down _Le Temps_ and got to his feet just as the loud thumping knocks on the front door resonated all through the house. ", "Vidette sat as though paralysed in her chair. ", "Miriam was the first to voice what they all knew already. ' _", "Les Boches_. ", "They're here.'", "\n\nIn that moment, whatever shreds of optimism Abel Silbermann had tried to hang onto, his prayers that this day would never come, that everything would be all right, were shattered.", "\n\nFrom the window, the dusty column of vehicles seemed to fill the whole courtyard in front of the house. ", "The open-top black Mercedes staff car was flanked by motorcycle outriders, behind them three more heavily-armed Wehrmacht sidecar outfits, a pair of K _ü_ belwagens and a transporter truck. ", "Infantry soldiers were pouring from the sides of the truck, clutching rifles, as Abel hurried to the front door. ", "He took a deep breath, then opened it.", "\n\n_You can still talk your way out of this._", "\n\nThe officer in charge stepped from the Mercedes. ", "He was tall and thin, with a chiselled, severe face like a hawk's. ", "He wore an Iron Cross at his throat, another on his breast. ", "The dreaded double lightning flash insignia was on his right lapel, the sinister _Totenkopf_ death's head skull badge above the peak of his cap. ", "Just the sight of those was enough to instil terror.", "\n\n'Herr Silbermann? ", "I am SS Obersturmbannführer Horst Krebs. ", "You know why I'm here, don't you?'", "\n\nAbel tried to speak, but all that came out was a dry croak. ", "When Krebs produced a document from his pocket, a high-pitched ringing began in Abel's ears. ", "The paper was a long list of many names. ", "It was the nightmare come true. ", "Some Jewish families had fled ahead of the rumoured purges. ", "Abel, choosing to disbelieve that anything like this could happen in his dear France, had made what he was now realising with a chill was the worst mistake of his life by staying put.", "\n\n'You reside here with your wife Vidette Silbermann and your children Gabriel and Miriam Silbermann, correct? ", "I have here an order for your immediate deportation to the Drancy camp. ", "Any resistance, my men will shoot. ", "Understood?'", "\n\nDrancy was the transit camp six miles north of Paris that the Germans used as a temporary detention centre for Jews awaiting transportation to Auschwitz. ", "Abel had heard those rumours, too, and refused to believe. ", "Now it was too late. ", "What good would escape have done them, anyway? ", "All fugitives would be picked up long before they reached the Swiss border.", "\n\n'Take me. ", "I care little for my own life. ", "But please spare my family.'", "\n\n'Please. ", "Do you think I haven't heard that before?' ", "Krebs pushed past Abel and strode into the house. ", "His soldiers clustered around the entrance. ", "Abel found himself looking down the muzzles of several rifles. ", "The hallway of his genteel family home was suddenly filling with troops, their boots crashing on the parquet, the smell of their coarse tunics mixed with leather polish and gun oil, a harsh and alien presence. ", "The Obersturmbannführer turned to his second-in-command and said sharply, 'Captain Jundt, seize everyone whose name appears on the list and have them assembled here in the hall. ", "Make it quick.'", "\n\nThe captain snapped his heels. ' _", "Jawohl, mein Obersturmbannführer!_ '", "\n\nJundt relayed the command and soldiers surged into the salon to seize both Miriam and her mother, who was mute with horror and virtually fainting as they half carried, half dragged her into the hallway. ", "While his men carried out his orders, Horst Krebs strolled around the downstairs of the house and gazed around him with appreciation for the Silbermanns' good taste. ", "Krebs did not consider himself a barbarian, like some of his peers. ", "He came from Prussian aristocratic stock, spoke several languages and, before the war, had published three volumes of poetry. ", "By chance, he had studied music at the same Halle Conservatory founded by the father of Reinhard Heydrich, the SS chief whom the Czech resistance had murdered only the previous month. ", "Reprisals there had been harsh and were ongoing. ", "Krebs intended to pursue his own duties here in France with equal zest.", "\n\nNoticing the piano at the far end of the salon by the French windows, Krebs strolled over to inspect it. ", "It was a very fine instrument indeed, a Pleyel. ", "His keen musician's eye passed over it, taking in the beauty of such a magnificent object. ", "Maybe he would take it home to Germany as a trophy of war.", "\n\nThen Krebs' eye settled on the music score that lay open on the music rest. ", "He raised an eyebrow. ", "Unusual. ", "And very old. ", "He picked it up with a black-gloved hand, and peered at it.", "\n\nBehind him, the hallway echoed with the cries of Madame Silbermann and her husband's pleas as the soldiers forced them to line up at gunpoint. ", "Captain Jundt was yelling, ' _Wo is das Gör?_ _", "Où est le gamin?_ ' ", "Demanding to know the whereabouts of young Gabriel, whose name was on the list. ", "Jackboots thumped on the stairs and shook the floorboards above as more troops were dispatched to search the rest of the house.", "\n\nKrebs heard none of it. ", "His attention was completely on the manuscript in his hands as he studied it with rapt fascination. ", "The age-yellowed paper. ", "The signature on the front. ", "Could it be the genuine thing? ", "It was amazing.", "\n\nHandling it as delicately as though it were some ancient scroll that could crumble at the slightest touch, Krebs replaced the precious manuscript on the music rest, then swept back his long coat and took a seat at the piano. ", "The six flats in the manuscript's key signature showed that the piece was in the difficult key of G flat major. ", "He removed his gloves, laid his fingers on the keys and sight-read the first couple of bars.", "\n\nAmazing. ", "If this was the genuine item, he wanted it for himself.", "\n\nIn fact, on consideration, he could think of an even better use for it. ", "He and the now-deceased Heydrich were not the only high-ranking Nazis with a passion for classical music. ", "What an opportunity for Krebs to ingratiate himself at the very highest level.", "\n\n' _Entschuldigung, mein Obersturmbannführer—_ ' Jundt's voice at his ear, breaking in on his thoughts.", "\n\n'What is it, Jundt?'", "\n\n'We cannot find the boy. ", "Every room has been searched but he is missing.'", "\n\n'What do you mean, you can't find him? ", "How is that possible?' ", "Krebs was more irritated by the interruption than the news of a missing brat. '", "He must be hiding somewhere.'", "\n\n'The parents and sister refuse to say where, _mein Obersturmbannführer_.'", "\n\n'They do, do they? ", "We will see about that.' ", "Krebs rose from the piano stool and marched towards the hallway. ", "Moments like these called for a little greater authority than the likes of Jundt could sum up. ", "Krebs drew his Walther service automatic from its flap holster.", "\n\nAs Krebs reached the crowded hallway, he heard a sudden sound behind him and turned in surprise to see the young boy who seemed to have appeared from nowhere and was now racing across the salon, heading for the piano.", "\n\nJundt shouted, 'There he is!' ", "As though his commanding officer were blind.", "\n\nMiriam Silbermann screamed, 'Gabriel!'", "\n\nKrebs realised that the boy must have been hiding behind the wood panels, watching him as he sat at the piano. ", "Running to the instrument, the twelve-year-old snatched the manuscript off its rest, and clutched it tightly. ", "He yelled, 'Filthy Boches, you won't take our family treasure!'", "\n\nHis elder sister screamed, 'Run, Gabriel!' ", "One of the soldiers silenced her with a harsh blow from his rifle butt.", "\n\nAnd Gabriel ran, still grasping the precious manuscript to his chest as though nothing could persuade him to let it go. ", "He made for the French window and slipped through, dashing towards the lawned garden and the fence at the bottom.", "\n\nKrebs watched him go. ", "Then calmly, unhurriedly, he walked towards the French window. ", "Stepped through it, feeling the sun's warmth on his face.", "\n\nThe boy was running fast. ", "If Krebs let him run very much further, he would reach the fence and disappear into the trees, and it might take an entire Waffen-SS unit all day to scour the surrounding countryside in search of the brat.", "\n\nKrebs raised his Walther and took careful aim at the running child's back. ", "It was a long shot, but Krebs was an accomplished pistol marksman.", "\n\nThe gun's short, sharp report cracked out across the garden. ", "Inside the house, Vidette Silbermann howled in anguish.", "\n\nThe boy stumbled, ran on two more staggering paces, then fell on his face and lay still.", "\n\nMore screams from the house, once again cut short by the soldiers. ", "The Obersturmbannführer walked over to where Gabriel Silbermann lay dead, hooked the toe of his shiny jackboot under his body and rolled him over. ", "A trickle of blood dribbled from the child's lips. ", "He was still clutching the music manuscript as if he wouldn't give it up, even in death.", "\n\nKrebs bent down and removed it from the boy's fingers. ", "It sickened him to see that there was blood on it, but not because it was the blood of an innocent child he had just killed. ", "Rather, it was like seeing a rip in an old master painting. ", "The manuscript had survived all these years, just to be indelibly stained by the blood of a filthy Jew. ", "Disgusting. ", "Krebs carefully slipped the precious object inside his coat before more harm could come to it. ", "Then walked back towards the house to resume his duties. ", "A pretty much routine day had turned out to be a lucky one for him.", "\n\nSoon, the rest of the Silbermann family would be taken to their temporary new home at the Drancy internment facility, along with more than thirteen thousand other Jews rounded up by Nazi troops and French police in what was known as 'Opération Vent Printanier', or 'Operation Spring Breeze'. ", "From Drancy, not long afterwards, Abel, Vidette and Miriam would find themselves on the train to the death camp of Auschwitz.", "\n\nOnly one of them would ever return.", "\n\n## _Chapter_ 1\n\n_Oxfordshire_\n\n_Many years later_\n\nThe country estate covered a spread of some seventy-five acres: a fraction of the grounds it had commanded in former, grander days, but still large enough to keep it nicely secluded from neighbouring properties and the nearest village that had, over the last two or three centuries, sprawled outwards into a small town. ", "The estate was entirely surrounded by a ten-foot-high stone wall, built long ago by an army of local labourers, nowadays impossibly expensive to put up. ", "Its main entrance gates were tall and imposing, all gothic wrought-iron and gilt spikes, set into massive ivied pillars crowned with carved stone heraldic beasts of Olde England that had guarded the gateway since 1759 and bore just the right amount of weathering and moss to convey an impression of grandiosity without looking scabby and decayed.", "\n\nNeatly hidden among the ivy of the pillars were the electronic black box and mechanism for opening and shutting the gates, as well as the small intercom on which visitors had to announce themselves in order to be let in; the rest of the time, the gates were kept firmly shut. ", "Nor could you see it from the ground, but the walls themselves were topped all the way around with broken glass cemented into the stonework, to deter unwanted callers. ", "Technically illegal without a warning sign, but the property's owner was little concerned with their duty of care to protect the safety and wellbeing of potential burglars, vandals or other intruders.", "\n\nEntering the gates and following the long, winding driveway that led through a corridor of fine old oak trees and eventually opened up to reveal the clipped lawns and formal gardens, and then the house itself, few people could have failed to be impressed by the scale and majesty of one of the nobler country piles in the region. ", "The manor stood on five floors, comprising over thirty bedrooms and many more reception rooms than were ever in use at any given time. ", "Its multiple gabled roofs sloped this way and that. ", "The red and green ivy that clung thickly about its frontage was kept neatly trimmed away from its dozens upon dozens of leaded windows. ", "Clusters of chimney stacks poked like missiles into the blue Oxfordshire sky, providing a lofty perch for the crows that circled and cawed in the tranquil silence. ", "Down below, parked on the ocean of ornamental gravel surrounding the big house, were rows of Aston Martins and Bentleys and classic Porsches, nothing as vulgar as a Ferrari.", "\n\nThe place might have been the personal residence of someone extremely wealthy, a marquis or a viscount, or the ancestor of some Victorian merchant dynasty still reaping the fruits of the family empire. ", "Old money. ", "Or new money, like a dot-com multimillionaire or whizzkid software developer who had struck lucky with some new gadget that had set the world on fire. ", "Whatever the case, they would have required a live-in service staff to keep it on an even keel. ", "At least one butler, maybe two, plus the requisite contingent of housekeepers and kitchen staff and gardeners. ", "Or else it might have been open to the public, as a gallery or a museum or a National Trust heritage venue ushering crowds of visitors through its many grandiose rooms during the months of the tourist season.", "\n\nIt was none of those things. ", "Instead, it was a place of business. ", "A going concern, providing a variety of services to its clients. ", "A polished brass plaque above the doorway read, in bold gothic font, THE ATREUS CLUB. ", "Named after a king of ancient Greece, the father of Agamemnon and Menelaus, not that the name bore any connection to the nature and purpose of the establishment. ", "A nature and purpose to which, in turn, few people were ever privy.", "\n\nThe Atreus Club was strictly private, hence the locked gates, and hence the broken glass on the walls. ", "Members only. ", "Expensive to join, and only certain individuals need apply to enjoy the secluded and discreet haven it provided for its exclusive, distinguished membership.", "\n\nAnd for good reason, considering some of the activities those pillars of society enjoyed there.", "\n\nBehind a tall balcony window, up on the fourth floor, one of those activities was currently taking place. ", "The room was large but quite sparsely decorated. ", "It had been a bedroom, and sometimes still was, depending on need. ", "Today, though, it was something else. ", "At its centre stood an antiquated wooden school desk, the kind with the flip-up top and a recess for an inkwell. ", "In front of it was a larger teacher's desk, behind which stood an equally old-fashioned classroom blackboard, complete with chalk and duster. ", "Scrawled in slanting chalk script across the board were the words, ' _I must not be a naughty boy; I must not be a naughty boy_ '. ", "Over and over.", "\n\nAt the far side of the room, in the light from the tall window, stood a metal frame, seven feet high with a steel bar supported between sturdy mounts either side. ", "Attached to the overhead bar, arms raised above his head by the rubber manacles and rubber chains that bound him firmly in place, stood one of the room's two occupants.", "\n\nHe was naked apart from his socks. ", "A man in his early sixties, grey-haired, tall, slightly stooped, and not in the best of shape physically. ", "His bare buttocks were pinched and somewhat shrivelled and very white, except for where they were striped red from the whipmarks that the room's other occupant had spent the last few minutes inflicting on him.", "\n\nShe was blonde, and at least forty years younger than her client. ", "But not naked, not yet, as specified by the instructions that had to be followed to the exact letter. ", "All part of the expensive services provided by the Atreus Club. ", "And this particular client had specified, as he always specified on his many visits here, that the girl be wearing a mortarboard and one of the abbreviated black academic gowns that Oxford University tradition dubbed a commoners' gown. ", "Both items duly obtained from the official university outfitters, Shepherd and Woodward's of the High. ", "No expense spared. ", "Aside from the academic garb and the matching black fish-net stockings, garters and suspender belt, she was wearing nothing else. ", "Again, as per instructions. ", "The instrument of torture was a whippy rattan cane, the type that schoolmasters had once used to inflict corporal punishment on disobedient pupils, back in the day. ", "The client had never been caned at school, however. ", "He had always been a model pupil, set for academic glory.", "\n\n'Have you had enough, you bad, _bad_ professor, you?' ", "the blonde asked with a wicked smile on her red lips. ", "She spoke with an Eastern European accent that drove him even more crazy.", "\n\n'No! ", "Hit me again! ", "Ah!'", "\n\nThe client's cry of pain and pleasure was drowned out by the whoosh and sharp crack of the cane as she whipped it through the air and added another fresh, livid stripe to his pale rear end. ", "The velvety tassel on her mortarboard swung with the movement.", "\n\n'Again! ", "More!'", "\n\nWhoosh. _", "Crack_.", "\n\nThis could go on for quite some time. ", "As the blonde knew very well, because it usually did and she was his regular pick. ", "She had the technique down better than any of the other girls. ", "Something in the wrist action. ", "For some reason, she was a natural at it. ", "He knew her as Angelique, which, needless to say, wasn't her real name. ", "The instructions were to call him 'professor' and that was the sum total of her knowledge about him. ", "He could be a judge, for all she cared. ", "Or a cop. ", "A couple of senior Thames Valley Police officers were regulars.", "\n\nWhat 'Angelique' didn't know – what neither of them could have known – was that their supposedly private session was, in fact, anything but.", "\n\nThe fine mature oak tree on the front lawn was about as close to the house as it was possible to get without being spotted from the windows, and you could reach it easily enough by darting from hedge to bush. ", "Plenty close enough for the man who was perched high up in its branches. ", "The only challenging part of his job had been getting over the wall unscathed. ", "The rest was easy. ", "Almost fun. ", "He had an excellent view through the window in question, and at this range the telephoto lens on his camera was capable of producing crystal-clear close-ups of both the client and the girl whipping him.", "\n\nThe watcher wasn't so interested in the girl. ", "The client was another matter. ", "Just a few more snaps, and the watcher would descend unseen from his perch and make his way back out of the grounds and over the wall to his vehicle.", "\n\nThe watcher permitted himself a smile as he watched the blonde step back to give herself space, then swing the cane and whack the old perv again. ", "He could almost hear the snap of the thin rattan against soft, loose, white flesh. ", "Framed in the viewfinder the client's eyes were rolled upwards and his mouth was open with a sigh of ecstasy.", "\n\nThe shutter clicked one more time.", "\n\nA perfect shot.", "\n\nSomeone was going to be happy.", "\n\n## _Chapter_ 2\n\nBen Hope sat on the edge of the single bed with his old green canvas bag wedged between his feet and gazed around him at his strange, yet so familiar, surroundings.", "\n\nAnd wondered, _What the hell am I doing back here?_", "\n\nIn some ways he felt like much the same person who had once lived in this very room, studied at the desk by the window, slept in this very bed, done all the things that a restless nineteen-year-old with the devil inside him and too many troubles for his young mind to bear is wont to do. ", "In other ways, he was a very different person now. ", "Twenty-something years of the kind of existence he had led since leaving this place couldn't but profoundly change a man, if it didn't kill him altogether.", "\n\nBut one thing was for sure. ", "The place itself had barely changed at all during his long, long absence. ", "Old Library 7 still had the same fusty smell of a building overdue for renovation by a century or so. ", "The yellowed and chipped woodwork of the ancient bow window was maybe a little more in need of repair, at least a fresh coat of paint. ", "The carpet was still worn in all the same places as he remembered. ", "The thinly-upholstered armchairs were the same ones he'd sprawled in evening after evening, meant to be reading but usually ending up asleep with the book upturned and dog-eared on his lap. ", "Even the battered desk was original equipment, still bearing the black marks of cigarette burns and the scar from the time he'd smashed a bottle against it in some drunken fit of anger.", "\n\nHe'd been angry a lot of the time back in those days. ", "Drunk even more of the time. ", "Not the best of memories.", "\n\nThe only thing missing from the room was the old piano that had once stood over by the window, its place now taken by a saggy couch. ", "Which seemed to make more sense. ", "Quite why the college authorities had ever seen fit to put a piano in an undergraduate's room had always been a mystery to him. ", "He'd never even opened the lid, having never touched a musical instrument of any variety in his life before or since.", "\n\nBen stood up from the edge of the bed and walked past where the piano had been. ", "He undid the Victorian sash window latch, painted over so many times that it needed force to open it, and worked the stubborn window frame upwards until it was far open enough to lean out. ", "The view of the quadrangle below was exactly the same as it had been twenty-something years ago, with the rear façade of Meadow Buildings facing him. ", "The wide open space of Christ Church Meadow lay beyond. ", "Here in the middle of a hundred and sixty thousand people, the college's nearly forty acres of unspoilt fields and woodland were a tranquil haven for wildlife, and for Ben. ", "He could smell the river and hear the traffic rumble in the distance. ", "It was a crisp and sunny Easter-time morning, in the break between Hilary and Trinity terms, and the usual troop of camera-toting tourists were bustling about the quad. ", "Spanish, judging by the barking narrative of the guide who was busily ushering them around the hallowed college grounds.", "\n\nIt seemed an ironic coincidence that he should have been given his old room. ", "Or was it? ", "Maybe he had Seraphina to thank for it, looking up old records and being over-efficient. ", "Perhaps she thought he'd go all mushy and nostalgic and be forever grateful to her for the gesture. ", "In which case, she obviously didn't know enough of his history with the place, or the circumstances under which he'd left it.", "\n\nWhich in turn brought him once again to asking himself the same question that had been in his mind ever since he'd arrived in Oxford early that morning.", "\n\n_What the hell am I doing back here?_", "\n\n## The spellbinding new Ben Hope thriller...\n\nEx-SAS hero Ben Hope is back and this time it's personal.", "\n\nClick here to buy\n\n## Where Ben Hope goes, trouble always follows... ****\n\n****\n\nThe first in an explosive two-book sequence. ****", "\n\nClick here to buy now ****\n\n## Has Ben Hope finally met his match? ****", "\n\n****\n\nThe thrilling sequel to _Star of Africa_ ****\n\nClick here to buy now ****\n\n### About the Author\n\nScott Mariani is the author of the worldwide-acclaimed action-adventure thriller series featuring ex-SAS hero Ben Hope, which has sold millions of copies in Scott's native UK alone and is also translated into over 20 languages. ", "His books have been described as 'James Bond meets Jason Bourne, with a historical twist'. ", "The first Ben Hope book, _The Alchemist's Secret_ , spent six straight weeks at #1 on Amazon's Kindle chart, and all the others have been _Sunday Times_ bestsellers.", "\n\nScott was born in Scotland, studied in Oxford and now lives and writes in a remote setting in rural west Wales. ", "When not writing, he can be found bouncing about the country lanes in an ancient Land Rover, wild camping in the Brecon Beacons or engrossed in his hobbies of astronomy, photography and target shooting (no dead animals involved!).", "\n\nYou can find out more about Scott and his work, and sign up to his exclusive newsletter, on his official website:\n\n**www.scottmariani.com**\n\n### By the same author\n\n**Ben Hope series**\n\n_The Alchemist's Secret_\n\n_The Mozart Conspiracy_\n\n_The Doomsday Prophecy_\n\n_The Heretic's Treasure_\n\n_The Shadow Project_\n\n_The Lost Relic_\n\n_The Sacred Sword_\n\n_The Armada Legacy_\n\n_The Nemesis Program_\n\n_The Forgotten Holocaust_\n\n_The Martyr's Curse_\n\n_The Cassandra Sanction_\n\n_Star of Africa_\n\n_The Devil's Kingdom_\n\nTo find out more visit **www.scottmariani.com**\n\n### About the Publisher\n\n**Australia**\n\nHarperCollins Publishers (Australia) Pty. ", "Ltd.\n\nLevel 13, 201 Elizabeth Street\n\nSydney, NSW 2000, Australia\n\n<http://www.harpercollins.com.au>\n\n**Canada**\n\nHarperCollins Canada\n\n2 Bloor Street East - 20th Floor\n\nToronto, ON, M4W, 1A8, Canada\n\n<http://www.harpercollins.ca>\n\n**New Zealand**\n\nHarperCollins Publishers (New Zealand) Limited\n\nP.O. Box 1\n\nAuckland, New Zealand\n\n<http://www.harpercollins.co.nz>\n\n**United Kingdom**\n\nHarperCollins Publishers Ltd.\n\n1 London Bridge Street\n\nLondon,SE1 9GF\n\n<http://www.harpercollins.co.uk>\n\n**United States**\n\nHarperCollins Publishers Inc.\n\n195 Broadway\n\nNew York, NY 10007\n\n<http://www.harpercollins.com>\n" ]
{ "pile_set_name": "Books3" }
[ 0.005089058524173028, 0, 0, 0, 0, 0.012195121951219513, 0, 0.0030303030303030303, 0.009708737864077669, 0.012048192771084338, 0.003389830508474576, 0, 0.013888888888888888, 0, 0.006269592476489028, 0.00558659217877095, 0, 0, 0.020100502512562814, 0.021739130434782608, 0.009708737864077669, 0.006896551724137931, 0.0078125, 0.0015873015873015873, 0, 0, 0.0047169811320754715, 0, 0.004608294930875576, 0, 0.008333333333333333, 0, 0.0071174377224199285, 0.004310344827586207, 0, 0, 0, 0.00641025641025641, 0.015873015873015872, 0.011904761904761904, 0, 0, 0, 0, 0, 0, 0.0064516129032258064, 0, 0, 0, 0.010752688172043012, 0, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0, 0.04081632653061224, 0, 0.004608294930875576, 0, 0, 0, 0, 0.007246376811594203, 0.007246376811594203, 0, 0.012145748987854251, 0.00964630225080386, 0, 0, 0, 0, 0.025, 0, 0.009708737864077669, 0.0060790273556231, 0.00909090909090909, 0.011494252873563218, 0.010471204188481676, 0.009523809523809525, 0.017857142857142856, 0.03125, 0.011363636363636364, 0, 0.008, 0, 0, 0.006756756756756757, 0, 0.007633587786259542, 0.009708737864077669, 0.017543859649122806, 0, 0, 0, 0, 0.007434944237918215, 0, 0.008064516129032258, 0.0273972602739726, 0, 0, 0.015384615384615385, 0, 0.012738853503184714, 0, 0, 0, 0, 0, 0.007874015748031496, 0, 0, 0.0064516129032258064, 0, 0, 0.004484304932735426, 0, 0, 0.011235955056179775, 0, 0.014705882352941176, 0, 0, 0.02564102564102564, 0, 0, 0, 0.012048192771084338, 0, 0, 0.017543859649122806, 0, 0.003937007874015748, 0, 0.004291845493562232, 0, 0.004739336492890996, 0.0036363636363636364, 0, 0, 0, 0.00881057268722467, 0, 0, 0, 0, 0.03333333333333333, 0.009259259259259259, 0, 0, 0, 0.024691358024691357, 0, 0, 0, 0.023809523809523808, 0.019230769230769232, 0, 0.015748031496062992, 0, 0, 0.02197802197802198, 0.011627906976744186, 0.013333333333333334, 0, 0.08333333333333333, 0, 0.015625, 0.011111111111111112, 0.014285714285714285, 0, 0, 0, 0.05263157894736842, 0, 0.022988505747126436, 0, 0.017857142857142856, 0, 0, 0, 0, 0.01098901098901099, 0.008333333333333333, 0, 0, 0.011235955056179775, 0, 0, 0.020833333333333332, 0, 0.008583690987124463, 0, 0, 0, 0.02564102564102564, 0, 0.010638297872340425, 0.05555555555555555, 0, 0, 0, 0, 0.08, 0, 0, 0.012195121951219513, 0, 0.014084507042253521, 0.014285714285714285, 0.05, 0, 0.03333333333333333, 0, 0, 0, 0.004694835680751174, 0, 0.037037037037037035, 0, 0, 0.037037037037037035, 0.017241379310344827, 0, 0.023809523809523808, 0, 0, 0, 0.006993006993006993, 0.010752688172043012, 0, 0, 0.02, 0, 0, 0.012578616352201259, 0, 0, 0, 0, 0, 0, 0.011363636363636364, 0, 0, 0.0625, 0.024390243902439025, 0, 0, 0, 0.02040816326530612, 0.020202020202020204, 0.007751937984496124, 0.03333333333333333, 0.022727272727272728, 0.012195121951219513, 0.010526315789473684, 0, 0.019230769230769232, 0, 0, 0, 0, 0.010638297872340425, 0, 0, 0.008695652173913044, 0, 0, 0, 0, 0, 0, 0, 0.010101010101010102, 0.006802721088435374, 0, 0, 0, 0.03225806451612903, 0, 0, 0.006329113924050633, 0.02459016393442623, 0, 0, 0.0136986301369863, 0.02247191011235955, 0, 0.007042253521126761, 0.0072992700729927005, 0.012987012987012988, 0.004, 0, 0, 0, 0, 0, 0, 0, 0.02040816326530612, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008547008547008548, 0.002325581395348837, 0.027777777777777776, 0, 0, 0.011764705882352941, 0.029411764705882353, 0, 0.013333333333333334, 0.02631578947368421, 0, 0, 0, 0, 0.014285714285714285, 0.037037037037037035, 0, 0, 0, 0.022222222222222223, 0.010869565217391304, 0, 0.0078125, 0.007575757575757576, 0, 0.010526315789473684, 0.015873015873015872, 0.03048780487804878, 0.020833333333333332, 0.009009009009009009, 0.022727272727272728, 0, 0.017857142857142856, 0.010582010582010581, 0.03125, 0, 0, 0.019230769230769232, 0, 0.012345679012345678, 0.0273972602739726, 0.011764705882352941, 0.043478260869565216, 0.02631578947368421, 0, 0, 0, 0, 0, 0.024390243902439025, 0, 0, 0, 0.02040816326530612, 0, 0.004694835680751174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008695652173913044, 0, 0, 0, 0, 0.010869565217391304, 0, 0.0036101083032490976, 0, 0.0040650406504065045, 0, 0, 0, 0, 0.07692307692307693, 0, 0, 0, 0, 0, 0.006802721088435374, 0.030303030303030304, 0, 0, 0.009174311926605505, 0, 0, 0, 0.021739130434782608, 0, 0, 0, 0, 0, 0.005434782608695652, 0, 0, 0, 0.018518518518518517, 0, 0, 0, 0.008620689655172414, 0, 0, 0, 0.007874015748031496, 0, 0, 0, 0, 0, 0.02040816326530612, 0, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0625, 0, 0, 0.011627906976744186, 0, 0.02, 0, 0, 0.008928571428571428, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0, 0, 0, 0.027777777777777776, 0, 0, 0.029411764705882353, 0.05, 0.05555555555555555, 0, 0.01818181818181818, 0, 0.00980392156862745, 0.01652892561983471, 0.01694915254237288, 0, 0, 0, 0, 0.01639344262295082, 0, 0, 0.004464285714285714, 0, 0.011560693641618497, 0.014705882352941176, 0, 0, 0, 0.008771929824561403, 0, 0.008620689655172414, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0.02564102564102564, 0.010526315789473684, 0, 0, 0, 0, 0.011235955056179775, 0.023255813953488372, 0, 0.1, 0.01282051282051282, 0.019230769230769232, 0, 0, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.023255813953488372, 0, 0.004405286343612335, 0.05128205128205128, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0.05, 0, 0, 0, 0, 0, 0, 0, 0, 0.009900990099009901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.034482758620689655, 0, 0, 0.03225806451612903, 0, 0, 0, 0, 0, 0.00390625, 0, 0.021739130434782608, 0, 0, 0.013157894736842105, 0, 0, 0, 0, 0, 0, 0.045454545454545456, 0, 0.025, 0, 0, 0.023809523809523808, 0, 0, 0, 0.010869565217391304, 0, 0, 0, 0.030303030303030304, 0.02631578947368421, 0, 0, 0, 0, 0, 0, 0, 0.019801980198019802, 0.0034482758620689655, 0, 0, 0, 0.0625, 0, 0, 0, 0.008333333333333333, 0, 0, 0.011235955056179775, 0.012345679012345678, 0, 0, 0.0064516129032258064, 0.012658227848101266, 0, 0, 0.008771929824561403, 0, 0, 0, 0.008, 0, 0, 0, 0.00558659217877095, 0, 0.006134969325153374, 0.009433962264150943, 0.007633587786259542, 0.038461538461538464, 0.03571428571428571, 0.041666666666666664, 0, 0, 0.008658008658008658, 0.004672897196261682, 0.03125, 0, 0.02702702702702703, 0, 0, 0.022222222222222223, 0, 0, 0.00909090909090909, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0, 0.02631578947368421, 0, 0, 0.01639344262295082, 0, 0, 0, 0, 0, 0.02564102564102564, 0.004901960784313725, 0.0045871559633027525, 0.02631578947368421, 0, 0, 0.037037037037037035, 0.0072992700729927005, 0, 0.0045045045045045045, 0, 0, 0, 0, 0.016, 0, 0, 0, 0, 0, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0.01818181818181818, 0.019801980198019802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004807692307692308, 0, 0, 0, 0, 0, 0, 0, 0.014925373134328358, 0, 0, 0, 0, 0, 0, 0, 0.023809523809523808, 0.017857142857142856, 0, 0, 0.007042253521126761, 0, 0.02666666666666667, 0, 0, 0, 0.015384615384615385, 0, 0.0056179775280898875, 0, 0.043478260869565216, 0, 0, 0.03571428571428571, 0, 0.003367003367003367, 0, 0, 0, 0.0273972602739726, 0, 0.021505376344086023, 0.017241379310344827, 0, 0, 0.009174311926605505, 0, 0.00641025641025641, 0, 0, 0, 0, 0.005780346820809248, 0, 0, 0.019417475728155338, 0.022988505747126436, 0.046511627906976744, 0, 0.018518518518518517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01639344262295082, 0, 0, 0, 0.0196078431372549, 0.01834862385321101, 0, 0, 0.015384615384615385, 0, 0.015151515151515152, 0.014084507042253521, 0, 0, 0.011764705882352941, 0.027777777777777776, 0, 0, 0.012269938650306749, 0, 0.017543859649122806, 0, 0.006622516556291391, 0.004484304932735426, 0, 0, 0.057692307692307696, 0.005847953216374269, 0, 0.008547008547008548, 0.019230769230769232, 0, 0, 0.006535947712418301, 0, 0, 0, 0, 0, 0, 0, 0, 0.024390243902439025, 0, 0, 0, 0, 0, 0, 0.1, 0, 0, 0, 0.017543859649122806, 0, 0.0196078431372549, 0, 0, 0, 0, 0, 0, 0.008695652173913044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008620689655172414, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0, 0, 0, 0, 0.01818181818181818, 0, 0, 0, 0.014084507042253521, 0, 0, 0, 0, 0.015384615384615385, 0, 0.0136986301369863, 0, 0, 0.05555555555555555, 0, 0, 0, 0, 0, 0.034482758620689655, 0, 0, 0.0072992700729927005, 0.016666666666666666, 0.023255813953488372, 0, 0, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0.038461538461538464, 0.006756756756756757, 0, 0.019417475728155338, 0, 0, 0, 0.0078125, 0, 0, 0.008771929824561403, 0.03125, 0, 0.0125, 0, 0, 0, 0, 0, 0, 0.01818181818181818, 0.017543859649122806, 0, 0, 0.00847457627118644, 0.041666666666666664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012345679012345678, 0, 0, 0.015151515151515152, 0, 0, 0, 0.00510204081632653, 0, 0.014285714285714285, 0, 0, 0, 0.011235955056179775, 0, 0, 0.013513513513513514, 0, 0.034482758620689655, 0, 0.0125, 0.009009009009009009, 0.008695652173913044, 0, 0, 0.014084507042253521, 0, 0, 0, 0.0048543689320388345, 0, 0.010752688172043012, 0.004629629629629629, 0, 0, 0, 0, 0, 0, 0, 0.005813953488372093, 0, 0.0048543689320388345, 0.008849557522123894, 0, 0, 0.02702702702702703, 0, 0.009433962264150943, 0.0028089887640449437, 0, 0.015625, 0.038461538461538464, 0, 0.008130081300813009, 0.0064516129032258064, 0, 0.011111111111111112, 0.013333333333333334, 0.0106951871657754, 0.006024096385542169, 0, 0.011235955056179775, 0.005747126436781609, 0.00684931506849315, 0, 0.004032258064516129, 0, 0, 0.014814814814814815, 0.009523809523809525, 0, 0, 0.008771929824561403, 0.007936507936507936, 0.007142857142857143, 0.01694915254237288, 0.007462686567164179, 0.008849557522123894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008264462809917356, 0, 0, 0.0029154518950437317, 0, 0, 0, 0, 0, 0, 0.0058823529411764705, 0.007142857142857143, 0, 0, 0, 0.010309278350515464, 0, 0, 0, 0, 0, 0, 0, 0.009174311926605505, 0, 0, 0, 0.006134969325153374, 0, 0.010309278350515464, 0, 0.011976047904191617, 0, 0, 0.07142857142857142, 0, 0, 0.009523809523809525, 0, 0, 0, 0, 0, 0, 0.025, 0.01680672268907563, 0, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0, 0.010869565217391304, 0, 0, 0.03571428571428571, 0.010582010582010581, 0.021621621621621623, 0.0165016501650165, 0.014084507042253521, 0.016129032258064516, 0.014084507042253521, 0, 0.005952380952380952, 0.006211180124223602, 0, 0, 0.004807692307692308, 0.017857142857142856, 0, 0, 0, 0, 0.0030864197530864196, 0.021739130434782608, 0, 0.006024096385542169, 0.018604651162790697, 0.00819672131147541, 0, 0.02631578947368421, 0, 0, 0, 0.020618556701030927, 0.012345679012345678, 0, 0.0034965034965034965, 0.001876172607879925, 0.015037593984962405, 0, 0.015723270440251572, 0, 0, 0, 0, 0.022727272727272728, 0.0045045045045045045, 0.007518796992481203, 0, 0.005952380952380952, 0, 0, 0, 0, 0, 0.03333333333333333, 0.043478260869565216, 0, 0, 0.018867924528301886, 0, 0, 0.045454545454545456, 0, 0, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0, 0, 0, 0, 0, 0.006944444444444444, 0.00819672131147541, 0.017543859649122806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009433962264150943, 0, 0, 0.015384615384615385, 0, 0, 0.014084507042253521, 0.02040816326530612, 0, 0.03225806451612903, 0, 0.00980392156862745, 0.0136986301369863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02631578947368421, 0, 0.09090909090909091, 0, 0, 0.07692307692307693, 0, 0.017543859649122806, 0, 0, 0, 0, 0.04, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.045454545454545456, 0, 0, 0, 0, 0.05, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.043478260869565216, 0, 0, 0, 0, 0, 0.03225806451612903, 0, 0.04, 0, 0, 0.015384615384615385, 0, 0, 0, 0, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0, 0, 0, 0, 0.034482758620689655, 0.018867924528301886, 0, 0, 0.0058823529411764705, 0, 0.05, 0, 0.009259259259259259, 0, 0.021505376344086023, 0.004484304932735426, 0.010869565217391304, 0.006944444444444444, 0.007246376811594203, 0.005649717514124294, 0.01, 0.009009009009009009, 0.021505376344086023, 0, 0, 0, 0.007575757575757576, 0, 0.014492753623188406, 0, 0.019230769230769232, 0, 0.009478672985781991, 0, 0.022222222222222223, 0, 0.0038461538461538464, 0.008403361344537815, 0.020833333333333332, 0, 0, 0.01282051282051282, 0, 0.03333333333333333, 0, 0, 0, 0, 0.011904761904761904, 0, 0, 0, 0, 0, 0, 0.007692307692307693, 0, 0, 0.08, 0, 0, 0, 0.07142857142857142, 0, 0, 0, 0, 0, 0.02127659574468085, 0.014285714285714285, 0, 0.01020408163265306, 0, 0, 0.002976190476190476, 0.01809954751131222, 0.004739336492890996, 0, 0, 0.013245033112582781, 0.006493506493506494, 0, 0.011049723756906077, 0.017857142857142856, 0, 0.016666666666666666, 0, 0, 0.006060606060606061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008, 0, 0, 0, 0.008, 0, 0.012048192771084338, 0, 0.007692307692307693, 0, 0, 0.014492753623188406, 0, 0, 0.006172839506172839, 0, 0.016129032258064516, 0, 0, 0, 0.008130081300813009, 0.019230769230769232, 0.006097560975609756, 0, 0, 0.005747126436781609, 0, 0.041666666666666664, 0, 0.007874015748031496, 0, 0, 0, 0.06666666666666667, 0.06666666666666667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03571428571428571, 0, 0, 0, 0, 0.03571428571428571, 0, 0, 0, 0.013333333333333334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.037037037037037035, 0, 0, 0, 0, 0.006289308176100629, 0, 0, 0, 0, 0, 0, 0.019230769230769232, 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.01694915254237288, 0, 0.009433962264150943, 0.012096774193548387, 0.013513513513513514, 0.030612244897959183, 0, 0, 0.01098901098901099, 0, 0, 0, 0, 0.03125, 0.016129032258064516, 0, 0, 0, 0.03125, 0, 0.022727272727272728, 0, 0, 0, 0, 0, 0, 0.012048192771084338, 0, 0, 0, 0.0034602076124567475, 0.008928571428571428, 0, 0, 0.01, 0.013157894736842105, 0, 0, 0, 0.005025125628140704, 0.017964071856287425, 0.02, 0, 0.002178649237472767, 0.03571428571428571, 0.011976047904191617, 0.015384615384615385, 0.012320328542094456, 0.016260162601626018, 0, 0.01, 0, 0, 0.014925373134328358, 0, 0, 0, 0, 0, 0, 0, 0, 0.00411522633744856, 0.002785515320334262, 0.011904761904761904, 0.041666666666666664, 0.01818181818181818, 0.011235955056179775, 0, 0.006802721088435374, 0.007692307692307693, 0, 0, 0, 0.0078125, 0, 0.02631578947368421, 0, 0, 0.007692307692307693, 0.029411764705882353, 0.029411764705882353, 0, 0, 0.019230769230769232, 0, 0, 0, 0, 0, 0.03225806451612903, 0.06666666666666667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008928571428571428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01639344262295082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017543859649122806, 0, 0, 0, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0, 0.013157894736842105, 0.00847457627118644, 0, 0, 0, 0, 0, 0.005714285714285714, 0, 0.009708737864077669, 0, 0, 0.05, 0, 0, 0, 0.022727272727272728, 0.006944444444444444, 0.0196078431372549, 0, 0, 0, 0.018518518518518517, 0.010101010101010102, 0, 0, 0, 0, 0, 0, 0.00625, 0, 0, 0.0034602076124567475, 0, 0, 0.03571428571428571, 0, 0, 0, 0.022727272727272728, 0, 0, 0.006172839506172839, 0, 0, 0, 0.006060606060606061, 0, 0, 0, 0, 0.0058823529411764705, 0.012345679012345678, 0, 0.0029498525073746312, 0.004484304932735426, 0, 0, 0, 0, 0, 0, 0, 0.0030959752321981426, 0, 0, 0, 0, 0, 0, 0.03571428571428571, 0.07692307692307693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.015122873345935728, 0, 0.009009009009009009, 0.012121212121212121, 0.007874015748031496, 0, 0, 0, 0.00881057268722467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.002857142857142857, 0, 0.015151515151515152, 0, 0, 0, 0.01282051282051282, 0, 0, 0, 0.009009009009009009, 0.006060606060606061, 0, 0, 0, 0, 0.013513513513513514, 0, 0.021739130434782608, 0.004048582995951417, 0, 0.0038314176245210726, 0, 0, 0, 0, 0, 0, 0, 0.006329113924050633, 0, 0, 0.024390243902439025, 0, 0.011494252873563218, 0, 0.020202020202020204, 0, 0, 0.03571428571428571, 0, 0.008403361344537815, 0, 0.03225806451612903, 0.025, 0.009708737864077669, 0, 0, 0, 0, 0, 0.04, 0, 0, 0, 0, 0, 0, 0, 0.013605442176870748, 0, 0, 0.023255813953488372, 0, 0.06666666666666667, 0, 0, 0, 0.06666666666666667, 0.015151515151515152, 0.00847457627118644, 0, 0.008097165991902834, 0.0033333333333333335, 0, 0, 0.007067137809187279, 0, 0, 0.008064516129032258, 0, 0.029411764705882353, 0.014705882352941176, 0.012903225806451613, 0.006802721088435374, 0.004484304932735426, 0.005076142131979695, 0.014492753623188406, 0, 0, 0, 0, 0.011111111111111112, 0.009708737864077669, 0.011111111111111112, 0, 0, 0, 0, 0.00411522633744856, 0.003424657534246575, 0.011627906976744186, 0.009523809523809525, 0, 0.014705882352941176, 0, 0, 0, 0.03636363636363636, 0, 0, 0, 0, 0.022727272727272728, 0.011904761904761904, 0, 0.02, 0.00980392156862745, 0, 0, 0.006493506493506494, 0.010638297872340425, 0, 0.005847953216374269, 0, 0, 0, 0.06666666666666667, 0.018867924528301886, 0, 0, 0, 0.016666666666666666, 0, 0.017241379310344827, 0, 0.012658227848101266, 0, 0, 0.011494252873563218, 0, 0, 0, 0, 0, 0.007462686567164179, 0.008298755186721992, 0, 0.01098901098901099, 0, 0, 0.004166666666666667, 0, 0, 0.012195121951219513, 0.006024096385542169, 0.009708737864077669, 0.041666666666666664, 0, 0.03571428571428571, 0, 0, 0, 0, 0.06666666666666667, 0, 0.018867924528301886, 0, 0, 0.038461538461538464, 0, 0, 0, 0, 0.008264462809917356, 0, 0, 0, 0.006993006993006993, 0, 0.018018018018018018, 0, 0, 0.009615384615384616, 0.007575757575757576, 0, 0, 0, 0.028169014084507043, 0, 0.017857142857142856, 0, 0.01282051282051282, 0.015873015873015872, 0, 0.00966183574879227, 0.030303030303030304, 0.02702702702702703, 0.034482758620689655, 0, 0, 0.015151515151515152, 0, 0.020833333333333332, 0, 0, 0.09090909090909091, 0, 0, 0, 0, 0.05555555555555555, 0, 0, 0, 0.015384615384615385, 0.013157894736842105, 0, 0.02631578947368421, 0, 0, 0, 0.011111111111111112, 0, 0.004016064257028112, 0, 0, 0, 0, 0.018518518518518517, 0.01694915254237288, 0, 0.02040816326530612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.047619047619047616, 0, 0, 0.0196078431372549, 0, 0.038461538461538464, 0.01680672268907563, 0, 0.03278688524590164, 0, 0, 0.0392156862745098, 0, 0, 0, 0, 0, 0.023529411764705882, 0.019417475728155338, 0.015625, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0.02631578947368421, 0, 0, 0.02127659574468085, 0.021739130434782608, 0.03225806451612903, 0, 0, 0, 0, 0, 0, 0, 0.0196078431372549, 0, 0, 0.01639344262295082, 0.0125, 0, 0, 0.016666666666666666, 0.01639344262295082, 0, 0, 0.05263157894736842, 0.007407407407407408, 0.008264462809917356, 0.012658227848101266, 0.015873015873015872, 0.03125, 0, 0, 0.01098901098901099, 0.003787878787878788, 0.013333333333333334, 0.012987012987012988, 0.02857142857142857, 0.02, 0, 0.0056179775280898875, 0.012048192771084338, 0, 0, 0.012345679012345678, 0, 0, 0, 0.013422818791946308, 0, 0, 0.012919896640826873, 0.007246376811594203, 0.015625, 0.004629629629629629, 0, 0, 0, 0.017543859649122806, 0.006802721088435374, 0.00641025641025641, 0.011428571428571429, 0, 0, 0.0043859649122807015, 0.008264462809917356, 0.0125, 0, 0, 0, 0, 0.04, 0.017241379310344827, 0.025, 0, 0.03333333333333333, 0, 0, 0.023255813953488372, 0, 0.01818181818181818, 0, 0.006329113924050633, 0, 0.020833333333333332, 0, 0, 0.012987012987012988, 0, 0.0136986301369863, 0, 0, 0.022988505747126436, 0.022727272727272728, 0, 0, 0.04, 0, 0, 0, 0, 0, 0, 0.018518518518518517, 0.034482758620689655, 0.03571428571428571, 0.009615384615384616, 0.014285714285714285, 0, 0.008771929824561403, 0, 0, 0, 0, 0, 0, 0.015151515151515152, 0, 0, 0, 0.013513513513513514, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0.009009009009009009, 0.008264462809917356, 0.007633587786259542, 0, 0.014778325123152709, 0.02127659574468085, 0, 0, 0.014388489208633094, 0.0043859649122807015, 0.013513513513513514, 0, 0, 0, 0, 0.013157894736842105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.027777777777777776, 0, 0.02564102564102564, 0.004405286343612335, 0.022727272727272728, 0, 0.016666666666666666, 0.010638297872340425, 0.010869565217391304, 0, 0, 0.0049504950495049506, 0, 0.006711409395973154, 0, 0.006329113924050633, 0.009433962264150943, 0.005154639175257732, 0.014084507042253521, 0, 0.016129032258064516, 0, 0, 0.011494252873563218, 0, 0.011764705882352941, 0.005, 0, 0.02564102564102564, 0, 0, 0, 0.005291005291005291, 0, 0, 0, 0, 0, 0, 0.006493506493506494, 0, 0, 0, 0, 0.0072992700729927005, 0.022727272727272728, 0, 0.007194244604316547, 0.014285714285714285, 0, 0, 0, 0, 0, 0.01020408163265306, 0, 0.01680672268907563, 0, 0.031746031746031744, 0.004098360655737705, 0, 0, 0.007246376811594203, 0, 0, 0, 0.015873015873015872, 0.007246376811594203, 0, 0.012295081967213115, 0.007874015748031496, 0.0037174721189591076, 0.025, 0, 0, 0, 0.017857142857142856, 0, 0, 0.01904761904761905, 0, 0.015151515151515152, 0, 0.013888888888888888, 0, 0.00980392156862745, 0, 0, 0, 0.03125, 0.01639344262295082, 0, 0, 0.015037593984962405, 0, 0, 0, 0, 0.006756756756756757, 0, 0.012048192771084338, 0, 0, 0, 0, 0.01639344262295082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008064516129032258, 0, 0, 0.011764705882352941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007751937984496124, 0, 0, 0.016666666666666666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.002881844380403458, 0.010638297872340425, 0, 0.004524886877828055, 0.004784688995215311, 0, 0, 0.007722007722007722, 0, 0.004830917874396135, 0.004651162790697674, 0.011049723756906077, 0.021739130434782608, 0.014285714285714285, 0.009174311926605505, 0, 0, 0, 0.008403361344537815, 0, 0, 0.0044444444444444444, 0.00816326530612245, 0.009523809523809525, 0.007407407407407408, 0, 0.008849557522123894, 0.004347826086956522, 0, 0.01020408163265306, 0, 0, 0.005780346820809248, 0.0047169811320754715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.018518518518518517, 0, 0, 0, 0, 0, 0, 0.058823529411764705, 0.02857142857142857, 0, 0, 0, 0.02702702702702703, 0.1, 0.008547008547008548, 0.004273504273504274, 0, 0.005405405405405406, 0.010309278350515464, 0.018518518518518517, 0, 0, 0.00909090909090909, 0.014492753623188406, 0, 0.007042253521126761, 0.003424657534246575, 0, 0.011583011583011582, 0, 0, 0.017543859649122806, 0.0043859649122807015, 0, 0, 0, 0, 0, 0, 0, 0, 0.014285714285714285, 0, 0.0196078431372549, 0, 0.007692307692307693, 0, 0, 0, 0, 0, 0, 0.005555555555555556, 0, 0, 0, 0.01818181818181818, 0, 0.01, 0, 0, 0.023809523809523808, 0.009950248756218905, 0.045454545454545456, 0, 0, 0.004201680672268907, 0.023809523809523808, 0.012195121951219513, 0, 0, 0, 0, 0.003215434083601286, 0, 0, 0.019230769230769232, 0, 0, 0, 0, 0, 0, 0.018518518518518517, 0.0625, 0, 0.0049504950495049506, 0.013071895424836602, 0.012048192771084338, 0.009523809523809525, 0, 0, 0, 0, 0, 0, 0, 0.006172839506172839, 0, 0, 0, 0, 0, 0.012422360248447204, 0.005154639175257732, 0.017543859649122806, 0, 0, 0, 0, 0.037037037037037035, 0, 0.004694835680751174, 0, 0, 0.015151515151515152, 0.0045662100456621, 0, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0, 0.0196078431372549, 0.012987012987012988, 0.00684931506849315, 0.05, 0, 0.006493506493506494, 0, 0.010752688172043012, 0.012658227848101266, 0, 0, 0.013333333333333334, 0.007575757575757576, 0.009259259259259259, 0, 0, 0.020618556701030927, 0, 0, 0, 0.02702702702702703, 0.006097560975609756, 0.003816793893129771, 0, 0.01680672268907563, 0.007194244604316547, 0, 0.058823529411764705, 0.01, 0, 0, 0, 0, 0, 0.009174311926605505, 0, 0.01098901098901099, 0, 0, 0, 0, 0.006622516556291391, 0.013333333333333334, 0.008, 0.010526315789473684, 0.009900990099009901, 0, 0.008695652173913044, 0.01818181818181818, 0, 0, 0, 0.010752688172043012, 0.009708737864077669, 0, 0.011494252873563218, 0, 0.007692307692307693, 0.014492753623188406, 0.00390625, 0, 0.018867924528301886, 0.007575757575757576, 0, 0, 0, 0, 0, 0, 0, 0, 0.006172839506172839, 0, 0, 0, 0.007246376811594203, 0.015625, 0.014925373134328358, 0.014925373134328358, 0.0064516129032258064, 0, 0.008333333333333333, 0.005376344086021506, 0.010526315789473684, 0, 0, 0.009433962264150943, 0, 0, 0, 0, 0, 0, 0.005681818181818182, 0.016574585635359115, 0, 0.01639344262295082, 0, 0, 0.00847457627118644, 0.008130081300813009, 0.004608294930875576, 0, 0.010869565217391304, 0, 0.0036101083032490976, 0, 0, 0, 0, 0.009259259259259259, 0, 0.010752688172043012, 0, 0, 0.02702702702702703, 0.02127659574468085, 0.010101010101010102, 0.010869565217391304, 0.014705882352941176, 0.009900990099009901, 0, 0.012195121951219513, 0, 0, 0, 0.09090909090909091, 0, 0, 0, 0.0072992700729927005, 0.02702702702702703, 0, 0, 0.00909090909090909, 0.011111111111111112, 0.006756756756756757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03225806451612903, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0, 0, 0, 0.015873015873015872, 0.02, 0, 0.030303030303030304, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.015873015873015872, 0, 0.011235955056179775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017241379310344827, 0, 0, 0, 0, 0, 0.05, 0, 0.015151515151515152, 0, 0.037037037037037035, 0.05555555555555555, 0.024390243902439025, 0, 0, 0, 0, 0, 0, 0, 0, 0.016129032258064516, 0, 0, 0.008547008547008548, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0.014925373134328358, 0.02857142857142857, 0.02702702702702703, 0, 0.030303030303030304, 0, 0.009345794392523364, 0, 0, 0, 0.016129032258064516, 0.043478260869565216, 0, 0, 0.010638297872340425, 0.018518518518518517, 0.03125, 0, 0, 0.05, 0, 0, 0, 0, 0.02564102564102564, 0, 0.016260162601626018, 0.016129032258064516, 0, 0, 0.09090909090909091, 0.029411764705882353, 0, 0, 0, 0, 0.02912621359223301, 0.005747126436781609, 0.045454545454545456, 0.014492753623188406, 0.009900990099009901, 0, 0, 0, 0.022727272727272728, 0, 0.017699115044247787, 0, 0, 0.014084507042253521, 0.006802721088435374, 0, 0.005291005291005291, 0, 0.018518518518518517, 0, 0, 0.017241379310344827, 0, 0.012048192771084338, 0, 0, 0, 0, 0.02, 0, 0, 0, 0, 0.011494252873563218, 0, 0.01020408163265306, 0, 0, 0, 0.03571428571428571, 0, 0, 0, 0.005681818181818182, 0, 0, 0, 0, 0, 0.007462686567164179, 0, 0.029411764705882353, 0, 0.04, 0, 0, 0, 0, 0, 0.034482758620689655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006622516556291391, 0, 0, 0, 0, 0.012987012987012988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01098901098901099, 0, 0, 0, 0, 0, 0.010869565217391304, 0.034482758620689655, 0, 0, 0.014084507042253521, 0.007518796992481203, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0.017857142857142856, 0, 0, 0.0064516129032258064, 0, 0, 0, 0, 0.08333333333333333, 0.013333333333333334, 0, 0, 0.01694915254237288, 0.017699115044247787, 0.020833333333333332, 0.0048543689320388345, 0, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0, 0.005681818181818182, 0, 0.02197802197802198, 0, 0, 0, 0.02631578947368421, 0, 0.010752688172043012, 0, 0, 0, 0, 0.017857142857142856, 0, 0, 0.03571428571428571, 0.009900990099009901, 0.006993006993006993, 0, 0.0625, 0, 0, 0.013333333333333334, 0, 0, 0, 0, 0, 0.012048192771084338, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0.03225806451612903, 0, 0, 0, 0, 0, 0, 0.020833333333333332, 0.0136986301369863, 0, 0, 0, 0.037037037037037035, 0, 0, 0, 0, 0, 0, 0.011764705882352941, 0, 0.006802721088435374, 0.007633587786259542, 0, 0.005714285714285714, 0, 0, 0.058823529411764705, 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.010101010101010102, 0, 0, 0, 0, 0, 0, 0, 0.005405405405405406, 0.015625, 0, 0, 0.010416666666666666, 0.006622516556291391, 0.012578616352201259, 0, 0.013888888888888888, 0, 0, 0.017241379310344827, 0, 0.008130081300813009, 0, 0, 0.09090909090909091, 0, 0.030303030303030304, 0.00425531914893617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 0.05555555555555555, 0, 0, 0, 0.021739130434782608, 0, 0, 0.02127659574468085, 0, 0.03125, 0, 0, 0.041666666666666664, 0.025, 0, 0, 0, 0.01639344262295082, 0, 0, 0, 0, 0.029411764705882353, 0.0064516129032258064, 0.006666666666666667, 0, 0, 0, 0, 0, 0.005988023952095809, 0.010752688172043012, 0.011406844106463879, 0.01775147928994083, 0.0070921985815602835, 0.0125, 0.01020408163265306, 0.018518518518518517, 0.00684931506849315, 0.009174311926605505, 0.0045045045045045045, 0.03571428571428571, 0, 0.022222222222222223, 0, 0, 0.01639344262295082, 0.01818181818181818, 0.047619047619047616, 0, 0, 0, 0, 0.023255813953488372, 0.021739130434782608, 0, 0.023809523809523808, 0, 0.00546448087431694, 0, 0.02564102564102564, 0, 0.023255813953488372, 0.008620689655172414, 0, 0, 0, 0.008064516129032258, 0, 0, 0.015384615384615385, 0.007462686567164179, 0.041666666666666664, 0, 0, 0.0055248618784530384, 0, 0.010256410256410256, 0, 0.009615384615384616, 0, 0.027777777777777776, 0, 0, 0.006622516556291391, 0, 0.01639344262295082, 0.014285714285714285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007194244604316547, 0.016, 0, 0.038461538461538464, 0, 0, 0.0043859649122807015, 0.006666666666666667, 0.009433962264150943, 0, 0.007518796992481203, 0, 0.045454545454545456, 0.027777777777777776, 0.008583690987124463, 0.0070921985815602835, 0, 0.03278688524590164, 0.02857142857142857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009259259259259259, 0, 0, 0, 0, 0, 0, 0, 0, 0.02857142857142857, 0, 0, 0.005025125628140704, 0, 0.0036900369003690036, 0.029411764705882353, 0.0036231884057971015, 0.0072992700729927005, 0, 0, 0.024390243902439025, 0, 0.008771929824561403, 0, 0, 0.01639344262295082, 0.05555555555555555, 0, 0, 0, 0, 0.017857142857142856, 0, 0.013071895424836602, 0, 0, 0.013157894736842105, 0, 0, 0, 0, 0.01639344262295082, 0, 0.015037593984962405, 0.020833333333333332, 0.013333333333333334, 0, 0, 0, 0, 0.007518796992481203, 0.013054830287206266, 0, 0.029411764705882353, 0, 0.04, 0.016666666666666666, 0, 0, 0, 0, 0, 0, 0, 0, 0.04, 0, 0, 0.011764705882352941, 0, 0, 0.007042253521126761, 0, 0.0196078431372549, 0, 0, 0, 0.008241758241758242, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0, 0.004405286343612335, 0.012096774193548387, 0, 0, 0, 0.005780346820809248, 0.017964071856287425, 0.045454545454545456, 0.005780346820809248, 0, 0, 0.012048192771084338, 0, 0.011494252873563218, 0, 0.005128205128205128, 0.01282051282051282, 0.030303030303030304, 0, 0.018867924528301886, 0.011764705882352941, 0.02702702702702703, 0.01276595744680851, 0, 0.02040816326530612, 0, 0.0625, 0, 0.007407407407407408, 0.007462686567164179, 0, 0, 0, 0.007751937984496124, 0.01694915254237288, 0, 0, 0.015037593984962405, 0, 0, 0.010416666666666666, 0, 0, 0.0196078431372549, 0, 0, 0, 0, 0, 0.009523809523809525, 0.05555555555555555, 0, 0.0056179775280898875, 0.008695652173913044, 0, 0.015384615384615385, 0.029850746268656716, 0, 0, 0, 0, 0, 0, 0, 0.01282051282051282, 0, 0.012578616352201259, 0.008403361344537815, 0, 0.012552301255230125, 0, 0, 0, 0.02564102564102564, 0, 0.008, 0.03225806451612903, 0.02702702702702703, 0, 0, 0, 0.016129032258064516, 0, 0.003816793893129771, 0.005291005291005291, 0, 0, 0, 0, 0.011363636363636364, 0, 0.015384615384615385, 0, 0.0038910505836575876, 0.006211180124223602, 0, 0.016129032258064516, 0.038461538461538464, 0.00398406374501992, 0, 0.01020408163265306, 0.003194888178913738, 0, 0.016666666666666666, 0, 0.043478260869565216, 0, 0, 0, 0.021739130434782608, 0, 0, 0, 0.015151515151515152, 0, 0, 0, 0, 0, 0.04, 0.021739130434782608, 0, 0, 0.02857142857142857, 0, 0.004878048780487805, 0.009708737864077669, 0.006134969325153374, 0, 0, 0.02127659574468085, 0.010101010101010102, 0.020833333333333332, 0.0196078431372549, 0, 0, 0.01282051282051282, 0.006944444444444444, 0.05555555555555555, 0.030303030303030304, 0.041666666666666664, 0.047619047619047616, 0, 0.009523809523809525, 0, 0.014285714285714285, 0, 0, 0, 0, 0, 0.006711409395973154, 0.0037735849056603774, 0, 0.01744186046511628, 0, 0, 0, 0.005847953216374269, 0.01, 0, 0, 0, 0, 0.04, 0, 0.125, 0, 0, 0, 0.045454545454545456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.027777777777777776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.04, 0.02702702702702703, 0, 0, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006622516556291391, 0, 0, 0.00980392156862745, 0.018518518518518517, 0, 0, 0, 0, 0, 0.006993006993006993, 0, 0, 0, 0.008130081300813009, 0, 0, 0.05555555555555555, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0.030303030303030304, 0, 0, 0, 0, 0, 0, 0, 0.0070921985815602835, 0, 0, 0.023809523809523808, 0.04, 0.021739130434782608, 0, 0.014492753623188406, 0, 0, 0, 0, 0, 0, 0, 0.012048192771084338, 0.018518518518518517, 0.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.05263157894736842, 0, 0, 0.02564102564102564, 0, 0, 0.012195121951219513, 0, 0, 0, 0, 0.011494252873563218, 0, 0.004329004329004329, 0.006060606060606061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.024390243902439025, 0, 0.01639344262295082, 0, 0, 0, 0, 0.04, 0.007462686567164179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.041666666666666664, 0.017543859649122806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011235955056179775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009852216748768473, 0.0038461538461538464, 0, 0, 0.02127659574468085, 0.008658008658008658, 0, 0, 0, 0, 0, 0, 0.041666666666666664, 0.02727272727272727, 0, 0, 0, 0, 0, 0.0196078431372549, 0, 0, 0.018518518518518517, 0, 0, 0, 0, 0, 0.01639344262295082, 0.038461538461538464, 0, 0.02631578947368421, 0, 0, 0, 0, 0, 0, 0.014925373134328358, 0, 0, 0, 0, 0, 0.05263157894736842, 0, 0.030303030303030304, 0.038461538461538464, 0, 0.009009009009009009, 0, 0.03571428571428571, 0, 0, 0, 0, 0.017857142857142856, 0.03125, 0, 0.01680672268907563, 0.006134969325153374, 0.009433962264150943, 0, 0, 0, 0.024691358024691357, 0, 0, 0.014925373134328358, 0, 0, 0, 0.02564102564102564, 0.005988023952095809, 0, 0, 0.034482758620689655, 0, 0.01020408163265306, 0.009259259259259259, 0.0136986301369863, 0, 0, 0.010752688172043012, 0.018867924528301886, 0, 0.010638297872340425, 0, 0, 0.031746031746031744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.022222222222222223, 0, 0, 0, 0.009900990099009901, 0, 0, 0, 0, 0, 0, 0, 0, 0.01834862385321101, 0.027777777777777776, 0.010638297872340425, 0, 0, 0, 0.006493506493506494, 0.013793103448275862, 0, 0, 0.006557377049180328, 0.013157894736842105, 0, 0, 0, 0, 0, 0, 0, 0, 0.0040650406504065045, 0.005376344086021506, 0.010101010101010102, 0, 0, 0, 0.09090909090909091, 0, 0.058823529411764705, 0, 0, 0.027777777777777776, 0, 0, 0, 0.012345679012345678, 0, 0.03225806451612903, 0.02564102564102564, 0.025, 0, 0.05128205128205128, 0.041666666666666664, 0.02127659574468085, 0.02564102564102564, 0, 0, 0.02564102564102564, 0, 0, 0, 0, 0, 0.022222222222222223, 0.022727272727272728, 0, 0, 0, 0.012987012987012988, 0, 0.016129032258064516, 0.011627906976744186, 0.09090909090909091, 0, 0, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0.014084507042253521, 0, 0, 0, 0, 0, 0.017543859649122806, 0.012987012987012988, 0.020202020202020204, 0, 0, 0, 0.06666666666666667, 0, 0, 0, 0, 0, 0, 0, 0, 0.02040816326530612, 0, 0.02666666666666667, 0, 0, 0, 0, 0.015151515151515152, 0, 0, 0.02, 0, 0.034482758620689655, 0, 0, 0, 0, 0.02631578947368421, 0, 0, 0, 0.005847953216374269, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0.02702702702702703, 0.045454545454545456, 0, 0.014285714285714285, 0.034482758620689655, 0, 0, 0, 0.06666666666666667, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.024390243902439025, 0, 0, 0.007874015748031496, 0.017543859649122806, 0, 0, 0.016666666666666666, 0.013986013986013986, 0, 0.023809523809523808, 0.0196078431372549, 0, 0, 0, 0, 0, 0.005988023952095809, 0, 0.03333333333333333, 0, 0, 0, 0, 0.006097560975609756, 0, 0, 0, 0, 0, 0, 0, 0.004201680672268907, 0.020833333333333332, 0, 0, 0.029411764705882353, 0, 0, 0.011904761904761904, 0.003125, 0.014084507042253521, 0, 0, 0, 0.0070921985815602835, 0, 0, 0, 0, 0, 0, 0, 0.017857142857142856, 0, 0, 0, 0, 0, 0.02040816326530612, 0, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0.016129032258064516, 0, 0, 0.020202020202020204, 0, 0, 0, 0.012987012987012988, 0.021739130434782608, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0.018867924528301886, 0, 0.021739130434782608, 0, 0.009009009009009009, 0, 0, 0, 0, 0.008849557522123894, 0, 0.012422360248447204, 0.004016064257028112, 0.008771929824561403, 0, 0, 0, 0.011111111111111112, 0, 0, 0.009009009009009009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.05128205128205128, 0.010416666666666666, 0, 0, 0.012987012987012988, 0.011235955056179775, 0, 0, 0, 0, 0.020833333333333332, 0.015873015873015872, 0, 0, 0.02564102564102564, 0, 0, 0.009615384615384616, 0, 0.01020408163265306, 0, 0, 0, 0, 0.006896551724137931, 0.03278688524590164, 0, 0, 0.038461538461538464, 0.02564102564102564, 0, 0.011111111111111112, 0.011235955056179775, 0.025, 0, 0, 0, 0, 0, 0.013513513513513514, 0, 0, 0, 0, 0, 0, 0.019230769230769232, 0.018018018018018018, 0.003105590062111801, 0, 0, 0, 0, 0.013333333333333334, 0, 0.008368200836820083, 0, 0.006802721088435374, 0.0038461538461538464, 0, 0, 0, 0.007575757575757576, 0.004608294930875576, 0.007407407407407408, 0.009009009009009009, 0, 0, 0, 0.019230769230769232, 0, 0, 0, 0.006369426751592357, 0.010309278350515464, 0, 0, 0, 0, 0.015384615384615385, 0, 0, 0, 0.08333333333333333, 0, 0.010526315789473684, 0, 0.019230769230769232, 0, 0.022727272727272728, 0, 0.02702702702702703, 0, 0, 0, 0.09090909090909091, 0, 0, 0, 0, 0, 0, 0.013333333333333334, 0, 0, 0, 0, 0, 0, 0.019230769230769232, 0.03571428571428571, 0, 0, 0.01639344262295082, 0, 0, 0.012048192771084338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0625, 0, 0, 0, 0, 0, 0.021052631578947368, 0, 0, 0, 0, 0, 0.018518518518518517, 0, 0, 0, 0, 0.017543859649122806, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0.006666666666666667, 0, 0.008771929824561403, 0.014084507042253521, 0.022727272727272728, 0, 0, 0, 0, 0.024390243902439025, 0, 0, 0, 0.05263157894736842, 0, 0, 0, 0.011627906976744186, 0, 0.045454545454545456, 0, 0, 0, 0, 0, 0, 0, 0, 0.015151515151515152, 0, 0, 0, 0, 0, 0, 0.02247191011235955, 0, 0, 0.009523809523809525, 0.02127659574468085, 0, 0, 0, 0, 0.005263157894736842, 0.011494252873563218, 0, 0, 0.016666666666666666, 0, 0.0136986301369863, 0, 0.008130081300813009, 0.005154639175257732, 0.020833333333333332, 0, 0.008264462809917356, 0.010101010101010102, 0, 0.011494252873563218, 0, 0, 0.022727272727272728, 0, 0, 0.02857142857142857, 0, 0.0078125, 0, 0.009615384615384616, 0.0625, 0.012658227848101266, 0.014285714285714285, 0.004424778761061947, 0.006172839506172839, 0, 0, 0, 0, 0, 0, 0, 0, 0.011363636363636364, 0, 0.006944444444444444, 0.007662835249042145, 0.014423076923076924, 0.004098360655737705, 0.015151515151515152, 0.02, 0, 0, 0, 0, 0, 0.02040816326530612, 0, 0, 0, 0.0072992700729927005, 0.02, 0, 0.012195121951219513, 0, 0, 0.010256410256410256, 0.003484320557491289, 0.023255813953488372, 0, 0.012345679012345678, 0, 0, 0, 0, 0, 0, 0.01, 0.009259259259259259, 0.011627906976744186, 0, 0, 0.010309278350515464, 0, 0, 0, 0.012658227848101266, 0.01639344262295082, 0, 0, 0, 0, 0.014598540145985401, 0.018867924528301886, 0, 0.019230769230769232, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0, 0, 0, 0.022727272727272728, 0.022727272727272728, 0.017241379310344827, 0, 0.02631578947368421, 0.012987012987012988, 0, 0.02127659574468085, 0, 0, 0.011235955056179775, 0, 0, 0, 0, 0.005050505050505051, 0, 0.010869565217391304, 0, 0.006493506493506494, 0, 0, 0, 0.014925373134328358, 0, 0, 0.024390243902439025, 0, 0, 0, 0.0034602076124567475, 0, 0.007142857142857143, 0, 0, 0.02, 0, 0, 0.0136986301369863, 0.02, 0, 0, 0, 0, 0.03076923076923077, 0, 0.017241379310344827, 0, 0.011764705882352941, 0.011235955056179775, 0, 0, 0.006688963210702341, 0.020618556701030927, 0, 0, 0.01675977653631285, 0, 0.004784688995215311, 0, 0.009900990099009901, 0, 0, 0, 0, 0, 0.034482758620689655, 0.009615384615384616, 0, 0, 0, 0, 0, 0.008, 0, 0.012121212121212121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005063291139240506, 0, 0.05, 0, 0, 0, 0, 0.005263157894736842, 0, 0.01327433628318584, 0, 0, 0, 0.019230769230769232, 0, 0.023255813953488372, 0.05555555555555555, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0.008064516129032258, 0, 0.045454545454545456, 0, 0, 0, 0.023255813953488372, 0.021739130434782608, 0.012048192771084338, 0, 0.04878048780487805, 0, 0, 0.011363636363636364, 0, 0, 0, 0, 0.015151515151515152, 0, 0.012987012987012988, 0, 0, 0.0196078431372549, 0.02040816326530612, 0, 0, 0, 0, 0.011363636363636364, 0, 0, 0, 0.006666666666666667, 0.020202020202020204, 0.03508771929824561, 0, 0.012048192771084338, 0.022058823529411766, 0, 0, 0, 0, 0, 0, 0, 0, 0.014084507042253521, 0.009009009009009009, 0, 0.05405405405405406, 0, 0, 0, 0, 0, 0.01020408163265306, 0.0234375, 0, 0, 0.038461538461538464, 0.01639344262295082, 0, 0, 0.023255813953488372, 0.013888888888888888, 0.012658227848101266, 0, 0.02, 0, 0.06666666666666667, 0.010309278350515464, 0.0072992700729927005, 0.01092896174863388, 0.010309278350515464, 0, 0.0196078431372549, 0.0043859649122807015, 0.011904761904761904, 0, 0, 0, 0.007352941176470588, 0, 0, 0, 0.007751937984496124, 0.010869565217391304, 0.016, 0, 0.019230769230769232, 0, 0.022222222222222223, 0, 0.010752688172043012, 0.02459016393442623, 0, 0, 0.0036101083032490976, 0.005434782608695652, 0, 0.006666666666666667, 0, 0, 0, 0.0021598272138228943, 0, 0.03571428571428571, 0, 0.05263157894736842, 0, 0, 0, 0.016129032258064516, 0, 0, 0.014705882352941176, 0, 0, 0, 0.014084507042253521, 0, 0, 0, 0, 0, 0.009708737864077669, 0, 0, 0.00425531914893617, 0, 0, 0.009433962264150943, 0.0106951871657754, 0.012578616352201259, 0, 0, 0.010526315789473684, 0, 0, 0.0044444444444444444, 0.014492753623188406, 0.025, 0, 0, 0.005376344086021506, 0, 0.014492753623188406, 0.03333333333333333, 0, 0.006578947368421052, 0, 0, 0, 0, 0, 0.005681818181818182, 0.007518796992481203, 0, 0, 0, 0, 0.007692307692307693, 0, 0, 0, 0, 0.0091324200913242, 0.008849557522123894, 0.011904761904761904, 0.020833333333333332, 0, 0.013888888888888888, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0.025, 0, 0, 0, 0, 0.0070921985815602835, 0, 0, 0, 0.025, 0.03571428571428571, 0, 0.012195121951219513, 0.01818181818181818, 0, 0, 0, 0, 0.02, 0, 0.002369668246445498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011560693641618497, 0, 0, 0, 0.010101010101010102, 0, 0, 0, 0, 0.045454545454545456, 0, 0.008403361344537815, 0.008547008547008548, 0.007936507936507936, 0.011627906976744186, 0, 0, 0, 0, 0.0392156862745098, 0, 0, 0, 0, 0.016129032258064516, 0, 0.010416666666666666, 0, 0, 0, 0, 0, 0.024691358024691357, 0, 0, 0, 0, 0, 0.04, 0.045454545454545456, 0, 0.010416666666666666, 0, 0, 0, 0.020833333333333332, 0, 0.010309278350515464, 0, 0, 0, 0.005263157894736842, 0.00909090909090909, 0, 0, 0, 0.031746031746031744, 0, 0, 0, 0.11764705882352941, 0.016666666666666666, 0, 0, 0, 0.011627906976744186, 0.00909090909090909, 0, 0, 0, 0, 0.009708737864077669, 0, 0, 0, 0, 0.0078125, 0, 0, 0.009345794392523364, 0, 0, 0.015384615384615385, 0, 0, 0, 0, 0, 0, 0.012987012987012988, 0.012195121951219513, 0.00684931506849315, 0, 0.014705882352941176, 0, 0.015151515151515152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017543859649122806, 0, 0, 0.0064516129032258064, 0, 0, 0, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0.007633587786259542, 0, 0, 0, 0, 0.05, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009433962264150943, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007633587786259542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008333333333333333, 0, 0, 0, 0, 0.009345794392523364, 0, 0, 0, 0, 0, 0, 0, 0, 0.0070921985815602835, 0, 0.009345794392523364, 0, 0, 0, 0.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0.021739130434782608, 0, 0, 0.009708737864077669, 0, 0, 0.010638297872340425, 0.016666666666666666, 0, 0, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0.015384615384615385, 0.017241379310344827, 0, 0, 0, 0, 0, 0, 0, 0, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.013157894736842105, 0, 0, 0, 0, 0, 0, 0.0273972602739726, 0, 0, 0, 0, 0.00980392156862745, 0, 0, 0, 0, 0, 0.011764705882352941, 0, 0, 0, 0, 0, 0, 0, 0.006211180124223602, 0, 0, 0.03571428571428571, 0, 0.025, 0, 0.034482758620689655, 0, 0, 0, 0.038461538461538464, 0, 0, 0, 0, 0, 0, 0.014705882352941176, 0, 0.007246376811594203, 0, 0, 0.038461538461538464, 0, 0, 0, 0, 0.029411764705882353, 0.027777777777777776, 0, 0, 0, 0, 0, 0, 0.034482758620689655, 0.01282051282051282, 0, 0.043478260869565216, 0, 0.007874015748031496, 0, 0, 0, 0, 0.0196078431372549, 0, 0, 0, 0, 0, 0.008130081300813009, 0.009900990099009901, 0, 0, 0, 0, 0, 0, 0.043478260869565216, 0, 0.014705882352941176, 0, 0.013513513513513514, 0, 0.0033783783783783786, 0, 0, 0.034482758620689655, 0, 0, 0, 0, 0, 0, 0, 0, 0.00980392156862745, 0, 0.019230769230769232, 0, 0, 0, 0, 0.018867924528301886, 0, 0.011363636363636364, 0, 0.017543859649122806, 0, 0, 0, 0, 0, 0.014492753623188406, 0.017241379310344827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03571428571428571, 0, 0, 0, 0, 0.006944444444444444, 0, 0.0125, 0.03125, 0.07142857142857142, 0, 0, 0.0035842293906810036, 0, 0.015873015873015872, 0, 0.010638297872340425, 0, 0, 0, 0, 0.00819672131147541, 0, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004672897196261682, 0.005050505050505051, 0, 0, 0.02127659574468085, 0, 0, 0, 0.006097560975609756, 0, 0.011235955056179775, 0, 0, 0.024096385542168676, 0, 0.06666666666666667, 0, 0, 0, 0, 0, 0.006369426751592357, 0.00909090909090909, 0.038461538461538464, 0.014925373134328358, 0, 0.007518796992481203, 0, 0, 0.009009009009009009, 0, 0, 0.02857142857142857, 0.0125, 0, 0, 0, 0.05555555555555555, 0, 0.015384615384615385, 0, 0, 0.008928571428571428, 0, 0, 0, 0.08333333333333333, 0, 0, 0, 0, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0, 0, 0.019230769230769232, 0, 0.034482758620689655, 0, 0, 0.01818181818181818, 0, 0.009900990099009901, 0, 0, 0, 0, 0, 0, 0, 0.028169014084507043, 0, 0, 0.009009009009009009, 0, 0, 0.006024096385542169, 0, 0, 0, 0, 0.021739130434782608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01818181818181818, 0.006369426751592357, 0, 0.014084507042253521, 0.0078125, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0, 0.008064516129032258, 0, 0, 0, 0, 0.0625, 0, 0.006578947368421052, 0, 0, 0.022727272727272728, 0.004878048780487805, 0, 0, 0.006711409395973154, 0, 0, 0, 0, 0, 0, 0, 0.008064516129032258, 0, 0, 0, 0, 0, 0.008547008547008548, 0.005780346820809248, 0.005714285714285714, 0.004672897196261682, 0, 0, 0, 0, 0, 0.005555555555555556, 0.007352941176470588, 0, 0, 0.004694835680751174, 0, 0, 0, 0, 0.012345679012345678, 0, 0.017241379310344827, 0, 0, 0, 0.03125, 0, 0, 0, 0, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0, 0.004694835680751174, 0, 0, 0.009900990099009901, 0.05405405405405406, 0, 0, 0, 0, 0, 0, 0, 0, 0.0038314176245210726, 0, 0, 0, 0.0027397260273972603, 0.007246376811594203, 0.01639344262295082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011764705882352941, 0.011111111111111112, 0, 0, 0.05263157894736842, 0.024390243902439025, 0, 0.023255813953488372, 0, 0, 0, 0, 0, 0, 0, 0, 0.047619047619047616, 0, 0, 0.027777777777777776, 0, 0, 0, 0, 0, 0.03571428571428571, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0.013333333333333334, 0, 0, 0, 0, 0, 0, 0.005988023952095809, 0, 0.004166666666666667, 0, 0.024691358024691357, 0.007352941176470588, 0, 0, 0.005681818181818182, 0, 0, 0, 0.01818181818181818, 0, 0.0058823529411764705, 0, 0.010638297872340425, 0.015789473684210527, 0, 0, 0, 0.03225806451612903, 0, 0.005154639175257732, 0, 0.015625, 0, 0, 0, 0.00558659217877095, 0, 0.008333333333333333, 0, 0, 0, 0, 0.018518518518518517, 0, 0, 0, 0.013793103448275862, 0, 0, 0, 0.00684931506849315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017543859649122806, 0, 0, 0, 0.04838709677419355, 0, 0, 0, 0, 0, 0.03278688524590164, 0.01639344262295082, 0, 0, 0.005208333333333333, 0, 0.008620689655172414, 0, 0, 0, 0, 0, 0, 0.008620689655172414, 0, 0.013636363636363636, 0, 0, 0, 0.0625, 0.02857142857142857, 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.022222222222222223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.020833333333333332, 0, 0.012345679012345678, 0, 0, 0, 0.006535947712418301, 0.038461538461538464, 0, 0, 0, 0, 0, 0, 0, 0, 0.045454545454545456, 0, 0.011494252873563218, 0, 0, 0.014285714285714285, 0, 0, 0, 0, 0, 0, 0, 0, 0.07142857142857142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.05, 0, 0, 0.01282051282051282, 0, 0, 0.011235955056179775, 0.010416666666666666, 0.011235955056179775, 0.015384615384615385, 0, 0.01, 0, 0, 0.025, 0, 0, 0, 0.005025125628140704, 0, 0, 0, 0, 0, 0, 0, 0.010810810810810811, 0, 0.008849557522123894, 0.012658227848101266, 0, 0, 0.014285714285714285, 0.017857142857142856, 0, 0.004672897196261682, 0.03333333333333333, 0.010101010101010102, 0, 0.09090909090909091, 0.006756756756756757, 0, 0, 0, 0.043478260869565216, 0, 0, 0, 0.010638297872340425, 0, 0, 0, 0, 0, 0, 0, 0, 0.005376344086021506, 0.009708737864077669, 0, 0, 0.1111111111111111, 0, 0, 0.02857142857142857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0196078431372549, 0, 0.006369426751592357, 0.007407407407407408, 0, 0, 0.00909090909090909, 0, 0.06666666666666667, 0.008620689655172414, 0.024390243902439025, 0.006578947368421052, 0.008264462809917356, 0.006535947712418301, 0, 0, 0, 0, 0, 0, 0, 0, 0.023255813953488372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.024390243902439025, 0, 0, 0, 0, 0, 0, 0.014492753623188406, 0.058823529411764705, 0, 0, 0, 0.01818181818181818, 0, 0, 0.019230769230769232, 0.025, 0, 0, 0.045454545454545456, 0, 0, 0.009259259259259259, 0, 0, 0, 0.015151515151515152, 0, 0, 0, 0, 0, 0, 0.023255813953488372, 0, 0, 0, 0, 0.008746355685131196, 0.017857142857142856, 0, 0, 0, 0, 0, 0.010526315789473684, 0, 0.02857142857142857, 0, 0.034482758620689655, 0, 0, 0, 0.037037037037037035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007575757575757576, 0.004273504273504274, 0.008928571428571428, 0.009900990099009901, 0, 0, 0, 0, 0.017094017094017096, 0, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02, 0, 0, 0.01, 0, 0, 0.03125, 0, 0, 0.013333333333333334, 0.08695652173913043, 0, 0, 0.009345794392523364, 0.046511627906976744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.037037037037037035, 0, 0.043478260869565216, 0, 0, 0, 0, 0.023809523809523808, 0, 0.02040816326530612, 0.03571428571428571, 0, 0.02040816326530612, 0, 0.038461538461538464, 0.02040816326530612, 0, 0, 0.01020408163265306, 0, 0.01020408163265306, 0.004329004329004329, 0, 0.008733624454148471, 0, 0.02040816326530612, 0.02127659574468085, 0, 0.047619047619047616, 0, 0.008695652173913044, 0.007142857142857143, 0, 0, 0, 0, 0.037037037037037035, 0.03225806451612903, 0, 0.015384615384615385, 0.008620689655172414, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0.005555555555555556, 0, 0, 0.022222222222222223, 0, 0, 0, 0, 0.09090909090909091, 0, 0, 0, 0.023809523809523808, 0.023809523809523808, 0.014598540145985401, 0, 0, 0, 0.041666666666666664, 0, 0, 0, 0.038461538461538464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.04, 0.04, 0.045454545454545456, 0, 0, 0, 0, 0.009615384615384616, 0, 0, 0.009009009009009009, 0, 0, 0, 0, 0, 0.023809523809523808, 0.03225806451612903, 0, 0, 0, 0.022222222222222223, 0, 0.006802721088435374, 0.011494252873563218, 0, 0.023809523809523808, 0.008064516129032258, 0.009433962264150943, 0, 0, 0, 0, 0, 0, 0, 0.012195121951219513, 0.02127659574468085, 0, 0.014084507042253521, 0.012195121951219513, 0, 0, 0, 0, 0, 0.011904761904761904, 0, 0, 0.037037037037037035, 0.01818181818181818, 0, 0.02197802197802198, 0, 0.010309278350515464, 0, 0, 0, 0, 0.022222222222222223, 0, 0, 0.047619047619047616, 0, 0, 0, 0.010309278350515464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01282051282051282, 0.004, 0, 0.04081632653061224, 0, 0, 0, 0, 0, 0, 0.07692307692307693, 0, 0, 0, 0.07407407407407407, 0.023809523809523808, 0, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0.1, 0.03333333333333333, 0, 0, 0, 0.05, 0, 0, 0.030303030303030304, 0, 0, 0.012048192771084338, 0.08333333333333333, 0, 0, 0.01639344262295082, 0, 0, 0, 0, 0, 0.125, 0, 0.016666666666666666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017241379310344827, 0, 0.011235955056179775, 0, 0, 0, 0.045454545454545456, 0.019230769230769232, 0, 0.012658227848101266, 0, 0.045454545454545456, 0, 0, 0, 0, 0, 0, 0.003236245954692557, 0, 0, 0, 0.005847953216374269, 0, 0.030303030303030304, 0, 0, 0, 0, 0, 0.017699115044247787, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0.012048192771084338, 0, 0, 0.014084507042253521, 0.010752688172043012, 0, 0, 0.015151515151515152, 0.09090909090909091, 0, 0, 0, 0.007246376811594203, 0.017857142857142856, 0.012987012987012988, 0, 0, 0.022727272727272728, 0, 0, 0, 0.00819672131147541, 0, 0, 0.07142857142857142, 0.017241379310344827, 0, 0, 0, 0, 0.02040816326530612, 0, 0, 0.03896103896103896, 0, 0, 0.005494505494505495, 0.013333333333333334, 0, 0.038461538461538464, 0.02702702702702703, 0, 0, 0.014492753623188406, 0.030303030303030304, 0, 0, 0.016666666666666666, 0, 0, 0.018518518518518517, 0, 0, 0.017241379310344827, 0.017857142857142856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008620689655172414, 0, 0.008403361344537815, 0.021739130434782608, 0.011363636363636364, 0, 0, 0, 0, 0.05, 0.08333333333333333, 0.009900990099009901, 0, 0.010416666666666666, 0.02040816326530612, 0.02857142857142857, 0.025, 0.09090909090909091, 0, 0.03225806451612903, 0, 0, 0, 0, 0.037037037037037035, 0, 0.015873015873015872, 0.06060606060606061, 0, 0, 0, 0.018518518518518517, 0.015267175572519083, 0, 0.010101010101010102, 0.021739130434782608, 0, 0, 0, 0.018867924528301886, 0, 0.06060606060606061, 0, 0, 0.05555555555555555, 0.016666666666666666, 0, 0, 0, 0.0125, 0.03076923076923077, 0.027777777777777776, 0.021739130434782608, 0.008849557522123894, 0, 0, 0, 0.0070921985815602835, 0.014705882352941176, 0.05555555555555555, 0, 0.03571428571428571, 0, 0.022222222222222223, 0.02127659574468085, 0, 0.027777777777777776, 0, 0.02631578947368421, 0, 0, 0, 0.023809523809523808, 0.02127659574468085, 0, 0.02631578947368421, 0, 0, 0, 0.03571428571428571, 0, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03333333333333333, 0, 0.030303030303030304, 0, 0, 0.017045454545454544, 0.022222222222222223, 0, 0.03125, 0, 0, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0.04081632653061224, 0, 0.031746031746031744, 0, 0, 0, 0, 0.015503875968992248, 0, 0.013333333333333334, 0, 0, 0, 0, 0, 0, 0, 0.02247191011235955, 0.006622516556291391, 0.01680672268907563, 0, 0, 0.021739130434782608, 0, 0, 0, 0, 0.029411764705882353, 0, 0, 0.0136986301369863, 0.011904761904761904, 0, 0.047619047619047616, 0.009615384615384616, 0.007518796992481203, 0.015384615384615385, 0, 0, 0, 0, 0, 0.030303030303030304, 0.02702702702702703, 0, 0, 0, 0.016129032258064516, 0, 0, 0, 0, 0, 0.012658227848101266, 0, 0, 0, 0.07692307692307693, 0, 0, 0, 0, 0.016129032258064516, 0.03333333333333333, 0.012345679012345678, 0, 0, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0, 0, 0.03409090909090909, 0, 0.0136986301369863, 0, 0.00819672131147541, 0, 0, 0, 0, 0, 0, 0, 0, 0.014084507042253521, 0.0036363636363636364, 0.014354066985645933, 0.006993006993006993, 0.009009009009009009, 0, 0, 0, 0.043478260869565216, 0, 0, 0, 0, 0, 0, 0, 0.010638297872340425, 0, 0, 0.005813953488372093, 0, 0.013513513513513514, 0, 0.01, 0.022222222222222223, 0, 0, 0, 0.00510204081632653, 0.008771929824561403, 0, 0.006369426751592357, 0, 0, 0.014005602240896359, 0.01079136690647482, 0.004878048780487805, 0, 0, 0.015748031496062992, 0.02252252252252252, 0.007142857142857143, 0.0136986301369863, 0.022727272727272728, 0, 0, 0, 0, 0, 0, 0.047619047619047616, 0.012345679012345678, 0.00641025641025641, 0.014925373134328358, 0.022058823529411766, 0, 0, 0, 0, 0.04, 0, 0, 0, 0.023255813953488372, 0, 0, 0, 0, 0, 0.019230769230769232, 0.047619047619047616, 0, 0, 0.0078125, 0.019230769230769232, 0, 0, 0.03773584905660377, 0, 0.01020408163265306, 0, 0.01818181818181818, 0.045454545454545456, 0, 0, 0, 0.011494252873563218, 0, 0.007194244604316547, 0.01282051282051282, 0, 0, 0.014084507042253521, 0.01282051282051282, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0, 0, 0, 0.013333333333333334, 0.029411764705882353, 0, 0.030303030303030304, 0, 0, 0, 0, 0.017857142857142856, 0, 0.00909090909090909, 0.015873015873015872, 0, 0, 0, 0.09090909090909091, 0, 0, 0, 0, 0, 0, 0, 0.00641025641025641, 0.0234375, 0.006993006993006993, 0, 0, 0, 0, 0, 0.02564102564102564, 0.0273972602739726, 0, 0, 0, 0, 0, 0.007751937984496124, 0, 0, 0, 0.027777777777777776, 0, 0, 0, 0, 0.0136986301369863, 0.017543859649122806, 0, 0.011494252873563218, 0.0064516129032258064, 0.014492753623188406, 0.02857142857142857, 0, 0, 0.03225806451612903, 0, 0.007751937984496124, 0, 0.009900990099009901, 0, 0, 0.00411522633744856, 0.008, 0.006802721088435374, 0.05555555555555555, 0, 0, 0, 0.010309278350515464, 0, 0, 0.0033333333333333335, 0, 0, 0.023255813953488372, 0, 0, 0, 0, 0, 0.007407407407407408, 0, 0, 0.011235955056179775, 0, 0.03333333333333333, 0, 0.0196078431372549, 0.014925373134328358, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0, 0.025157232704402517, 0, 0, 0, 0, 0, 0.04, 0, 0, 0, 0.02631578947368421, 0, 0, 0, 0.005917159763313609, 0, 0.021739130434782608, 0, 0, 0, 0.03571428571428571, 0, 0.034482758620689655, 0, 0.011235955056179775, 0, 0, 0, 0, 0, 0, 0, 0, 0.008620689655172414, 0, 0.003484320557491289, 0, 0, 0.008620689655172414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0, 0, 0.010416666666666666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.029850746268656716, 0.006289308176100629, 0.005208333333333333, 0, 0.03636363636363636, 0, 0, 0, 0, 0, 0, 0, 0.017857142857142856, 0.011235955056179775, 0, 0, 0, 0, 0, 0, 0.11764705882352941, 0, 0, 0.012658227848101266, 0, 0, 0.03333333333333333, 0, 0, 0.02127659574468085, 0, 0, 0, 0, 0.016666666666666666, 0, 0, 0, 0, 0.006024096385542169, 0.007407407407407408, 0, 0, 0, 0, 0.005917159763313609, 0.0034602076124567475, 0.03225806451612903, 0, 0, 0, 0, 0.009259259259259259, 0, 0.00390625, 0, 0, 0, 0.020833333333333332, 0, 0.011494252873563218, 0, 0, 0, 0.022222222222222223, 0.0125, 0.009900990099009901, 0.005780346820809248, 0.005235602094240838, 0, 0.012295081967213115, 0.02702702702702703, 0.018779342723004695, 0.0058823529411764705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.016666666666666666, 0.008264462809917356, 0, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.023809523809523808, 0, 0, 0, 0.015151515151515152, 0.016666666666666666, 0.010526315789473684, 0.03225806451612903, 0.012195121951219513, 0, 0, 0, 0.008928571428571428, 0, 0, 0.030303030303030304, 0, 0.0125, 0, 0.02702702702702703, 0, 0, 0, 0, 0.019230769230769232, 0.012658227848101266, 0.047619047619047616, 0, 0.02, 0, 0.025, 0, 0, 0.08695652173913043, 0, 0, 0, 0.007407407407407408, 0, 0, 0, 0, 0, 0, 0, 0.007462686567164179, 0, 0.010050251256281407, 0.015625, 0, 0, 0.005128205128205128, 0.03225806451612903, 0, 0, 0, 0, 0.0070921985815602835, 0.008298755186721992, 0, 0.005681818181818182, 0, 0, 0, 0.017857142857142856, 0, 0.007407407407407408, 0, 0, 0, 0.01098901098901099, 0, 0, 0, 0.03225806451612903, 0, 0, 0.0053475935828877, 0, 0, 0, 0, 0, 0, 0.05555555555555555, 0, 0, 0.007874015748031496, 0.01652892561983471, 0, 0.01694915254237288, 0, 0, 0.07692307692307693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.09090909090909091, 0, 0.00980392156862745, 0, 0.02127659574468085, 0, 0.010638297872340425, 0, 0, 0, 0, 0, 0, 0, 0.021739130434782608, 0.006060606060606061, 0.015625, 0, 0, 0, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0.010416666666666666, 0, 0, 0, 0, 0, 0.012048192771084338, 0.027777777777777776, 0, 0, 0, 0, 0.02040816326530612, 0, 0, 0, 0.010362694300518135, 0.012987012987012988, 0.010416666666666666, 0, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.027777777777777776, 0, 0, 0.024390243902439025, 0.03125, 0, 0, 0, 0, 0, 0, 0.012048192771084338, 0, 0, 0, 0, 0, 0, 0, 0, 0.005263157894736842, 0, 0, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 0, 0.022727272727272728, 0, 0, 0, 0, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007407407407407408, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0.022222222222222223, 0, 0.007575757575757576, 0, 0, 0, 0, 0, 0, 0, 0, 0.05555555555555555, 0, 0, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0, 0, 0, 0.013888888888888888, 0, 0, 0.0033003300330033004, 0, 0, 0, 0, 0, 0, 0, 0.012345679012345678, 0.013157894736842105, 0, 0, 0, 0, 0.011976047904191617, 0.011111111111111112, 0, 0.006896551724137931, 0, 0, 0, 0.010526315789473684, 0, 0.00847457627118644, 0, 0, 0, 0, 0, 0, 0, 0.014285714285714285, 0.01694915254237288, 0.16666666666666666, 0, 0, 0.024390243902439025, 0, 0, 0, 0, 0, 0, 0, 0.018518518518518517, 0, 0.018867924528301886, 0, 0.0136986301369863, 0, 0, 0, 0.010638297872340425, 0.009708737864077669, 0, 0.028169014084507043, 0.03571428571428571, 0.01948051948051948, 0, 0.02702702702702703, 0.0392156862745098, 0, 0.013422818791946308, 0, 0.024691358024691357, 0.00980392156862745, 0, 0, 0.006756756756756757, 0, 0.03333333333333333, 0, 0, 0, 0, 0.011111111111111112, 0, 0.015384615384615385, 0, 0, 0, 0, 0, 0, 0, 0.0047169811320754715, 0, 0.012345679012345678, 0, 0, 0.006756756756756757, 0.02, 0, 0, 0.07142857142857142, 0, 0, 0.05, 0, 0.014285714285714285, 0, 0.06060606060606061, 0, 0, 0.0064516129032258064, 0.014925373134328358, 0, 0, 0, 0.012195121951219513, 0, 0.01020408163265306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005154639175257732, 0, 0.005494505494505495, 0, 0, 0, 0.007194244604316547, 0, 0, 0, 0.0196078431372549, 0.009615384615384616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.09090909090909091, 0, 0.008403361344537815, 0, 0, 0, 0, 0.011764705882352941, 0.0070921985815602835, 0, 0, 0.0043859649122807015, 0.008547008547008548, 0.020833333333333332, 0, 0.008264462809917356, 0, 0, 0.00909090909090909, 0, 0, 0, 0, 0, 0, 0, 0.04, 0, 0, 0.004464285714285714, 0, 0, 0.005847953216374269, 0, 0, 0.02631578947368421, 0.06666666666666667, 0, 0, 0, 0.007575757575757576, 0, 0.011834319526627219, 0, 0, 0, 0.045454545454545456, 0.017543859649122806, 0, 0, 0.01020408163265306, 0, 0, 0, 0, 0.00392156862745098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00625, 0, 0, 0, 0, 0, 0.015625, 0, 0, 0, 0, 0, 0.011494252873563218, 0, 0, 0, 0, 0.05263157894736842, 0, 0, 0, 0.014285714285714285, 0, 0, 0, 0.07142857142857142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011627906976744186, 0, 0, 0, 0, 0.012345679012345678, 0, 0, 0.008, 0, 0, 0, 0.01818181818181818, 0.025, 0, 0.005405405405405406, 0, 0, 0, 0.017241379310344827, 0.007575757575757576, 0.017699115044247787, 0.008695652173913044, 0, 0, 0, 0, 0, 0, 0, 0, 0.023809523809523808, 0, 0, 0, 0, 0, 0.019230769230769232, 0.005714285714285714, 0, 0, 0, 0, 0, 0, 0, 0.01818181818181818, 0, 0.037037037037037035, 0, 0, 0, 0, 0, 0.014492753623188406, 0, 0.008771929824561403, 0.02127659574468085, 0, 0, 0.016666666666666666, 0, 0.1111111111111111, 0, 0, 0, 0.024390243902439025, 0.0055248618784530384, 0, 0.015151515151515152, 0.004, 0, 0.025, 0, 0.09090909090909091, 0, 0.02631578947368421, 0, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0, 0, 0.010101010101010102, 0.008064516129032258, 0, 0, 0.006024096385542169, 0.002857142857142857, 0, 0.017857142857142856, 0, 0.00980392156862745, 0, 0, 0, 0, 0.007352941176470588, 0, 0, 0.012345679012345678, 0, 0, 0, 0, 0, 0.007246376811594203, 0.029411764705882353, 0, 0, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0, 0, 0, 0, 0.009009009009009009, 0.011363636363636364, 0.00625, 0, 0, 0, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0.007936507936507936, 0, 0, 0, 0.014705882352941176, 0.02564102564102564, 0, 0.034482758620689655, 0.02040816326530612, 0, 0, 0, 0, 0, 0.02040816326530612, 0, 0, 0, 0, 0.016666666666666666, 0.009433962264150943, 0, 0, 0, 0, 0, 0.023255813953488372, 0, 0.011764705882352941, 0.015384615384615385, 0, 0, 0, 0.013513513513513514, 0.02702702702702703, 0.018867924528301886, 0, 0, 0.01694915254237288, 0, 0, 0.015625, 0, 0, 0, 0, 0.008928571428571428, 0, 0.02040816326530612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02631578947368421, 0, 0, 0.01694915254237288, 0.014705882352941176, 0.011111111111111112, 0, 0.016666666666666666, 0, 0.008771929824561403, 0, 0, 0.041666666666666664, 0, 0, 0.007633587786259542, 0.01020408163265306, 0.03125, 0, 0, 0, 0, 0.012345679012345678, 0, 0.02564102564102564, 0, 0.006802721088435374, 0, 0, 0.06896551724137931, 0, 0, 0, 0.005847953216374269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011904761904761904, 0, 0, 0, 0, 0, 0, 0, 0.007633587786259542, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0, 0, 0.00980392156862745, 0, 0.006622516556291391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.1, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0, 0.005555555555555556, 0, 0, 0, 0.014084507042253521, 0, 0.016129032258064516, 0.005649717514124294, 0, 0, 0, 0, 0.04, 0, 0.04, 0, 0, 0.023809523809523808, 0, 0.015151515151515152, 0, 0, 0.07692307692307693, 0, 0, 0, 0.012987012987012988, 0, 0, 0.03225806451612903, 0, 0, 0, 0, 0, 0.027777777777777776, 0.05, 0, 0.03333333333333333, 0.03333333333333333, 0, 0, 0, 0, 0, 0, 0.008, 0, 0.1, 0.02857142857142857, 0, 0, 0, 0, 0, 0.008620689655172414, 0, 0.01818181818181818, 0, 0.020833333333333332, 0.03333333333333333, 0, 0, 0, 0, 0, 0.03333333333333333, 0, 0.038461538461538464, 0, 0, 0, 0, 0.006060606060606061, 0, 0, 0.01818181818181818, 0.013333333333333334, 0, 0, 0.006535947712418301, 0, 0, 0, 0, 0.007042253521126761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.013513513513513514, 0, 0, 0, 0, 0.006993006993006993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004273504273504274, 0, 0.0072992700729927005, 0, 0, 0, 0, 0, 0, 0.018867924528301886, 0.045454545454545456, 0, 0, 0, 0, 0, 0, 0, 0, 0.007518796992481203, 0, 0, 0, 0, 0.02702702702702703, 0, 0, 0.007407407407407408, 0.012987012987012988, 0, 0, 0, 0, 0, 0.024390243902439025, 0.03225806451612903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009523809523809525, 0, 0, 0.01639344262295082, 0, 0, 0, 0, 0, 0.0196078431372549, 0, 0.01818181818181818, 0, 0.01694915254237288, 0, 0, 0, 0, 0.00909090909090909, 0, 0, 0, 0, 0, 0, 0.031746031746031744, 0, 0, 0, 0, 0, 0.022222222222222223, 0, 0.008928571428571428, 0, 0.005847953216374269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01, 0.0058823529411764705, 0, 0, 0, 0, 0.01639344262295082, 0, 0, 0, 0, 0.013333333333333334, 0.045454545454545456, 0, 0, 0, 0, 0, 0, 0, 0.058823529411764705, 0.013888888888888888, 0, 0, 0.00980392156862745, 0.010416666666666666, 0, 0.010309278350515464, 0.012269938650306749, 0.010638297872340425, 0.034482758620689655, 0, 0, 0, 0, 0.007751937984496124, 0.010526315789473684, 0, 0, 0, 0, 0, 0, 0, 0, 0.027777777777777776, 0, 0, 0, 0.012987012987012988, 0, 0.06666666666666667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0, 0.047619047619047616, 0, 0.014705882352941176, 0, 0.022222222222222223, 0, 0, 0, 0.0625, 0, 0, 0, 0, 0, 0.008032128514056224, 0, 0, 0.02, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0.014705882352941176, 0.006097560975609756, 0, 0, 0, 0.023255813953488372, 0, 0, 0.023809523809523808, 0, 0, 0.011363636363636364, 0, 0, 0, 0, 0, 0, 0, 0.017241379310344827, 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.01282051282051282, 0.030303030303030304, 0, 0, 0.012345679012345678, 0.05263157894736842, 0.011235955056179775, 0, 0, 0, 0, 0, 0, 0.0029850746268656717, 0, 0, 0, 0.014925373134328358, 0, 0, 0.01282051282051282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006944444444444444, 0, 0.0070921985815602835, 0, 0, 0, 0, 0.014925373134328358, 0, 0.004830917874396135, 0.1111111111111111, 0, 0, 0, 0.008771929824561403, 0.02857142857142857, 0.034782608695652174, 0, 0, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0.037037037037037035, 0, 0, 0.006493506493506494, 0.02, 0, 0, 0, 0, 0, 0.08333333333333333, 0, 0, 0, 0.03225806451612903, 0, 0, 0.024390243902439025, 0, 0, 0, 0.019230769230769232, 0.03225806451612903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.038461538461538464, 0.029411764705882353, 0.015873015873015872, 0, 0, 0, 0, 0.044444444444444446, 0.023255813953488372, 0.010752688172043012, 0, 0, 0.023809523809523808, 0.0189873417721519, 0, 0, 0.02564102564102564, 0, 0, 0, 0.0196078431372549, 0, 0, 0, 0.02, 0, 0, 0.021739130434782608, 0, 0, 0.018518518518518517, 0, 0.00546448087431694, 0, 0, 0, 0, 0, 0, 0.008, 0, 0, 0, 0, 0, 0.02702702702702703, 0.003355704697986577, 0, 0, 0, 0, 0, 0, 0.011363636363636364, 0, 0.041666666666666664, 0, 0.023255813953488372, 0, 0, 0, 0, 0, 0.010752688172043012, 0, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0, 0, 0.037037037037037035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005555555555555556, 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.013513513513513514, 0, 0, 0, 0, 0.015625, 0.024793388429752067, 0.011764705882352941, 0.01694915254237288, 0.005917159763313609, 0, 0.009009009009009009, 0, 0, 0, 0, 0.015625, 0.009009009009009009, 0, 0, 0, 0, 0.005025125628140704, 0, 0, 0.023255813953488372, 0.02702702702702703, 0.0044444444444444444, 0, 0, 0.030303030303030304, 0, 0, 0.045454545454545456, 0, 0.008928571428571428, 0, 0, 0.0425531914893617, 0.041666666666666664, 0, 0, 0.015151515151515152, 0, 0.1111111111111111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.019230769230769232, 0, 0.012658227848101266, 0, 0.029411764705882353, 0, 0.034482758620689655, 0.017241379310344827, 0, 0, 0, 0, 0, 0, 0.007575757575757576, 0, 0.007874015748031496, 0, 0, 0.1, 0.022727272727272728, 0, 0, 0, 0, 0, 0, 0, 0.014084507042253521, 0, 0, 0.01694915254237288, 0, 0, 0.034482758620689655, 0, 0, 0, 0.03333333333333333, 0, 0, 0.023809523809523808, 0, 0.015873015873015872, 0, 0, 0, 0, 0.027777777777777776, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0, 0, 0.07142857142857142, 0, 0, 0, 0, 0, 0.03125, 0.041666666666666664, 0, 0, 0.024390243902439025, 0.03125, 0, 0, 0.010309278350515464, 0, 0, 0.07142857142857142, 0, 0, 0, 0, 0.02702702702702703, 0, 0.006134969325153374, 0.014778325123152709, 0, 0.019230769230769232, 0.009174311926605505, 0.018518518518518517, 0.01282051282051282, 0.008547008547008548, 0.009478672985781991, 0.012345679012345678, 0, 0.058823529411764705, 0, 0.07692307692307693, 0.05555555555555555, 0.045454545454545456, 0, 0, 0, 0.023076923076923078, 0, 0.012903225806451613, 0, 0, 0.01904761904761905, 0, 0, 0.003663003663003663, 0, 0.03571428571428571, 0, 0.06896551724137931, 0.0625, 0.05, 0.06666666666666667, 0, 0.043478260869565216, 0, 0.008130081300813009, 0, 0.015873015873015872, 0, 0.0425531914893617, 0.005813953488372093, 0.011764705882352941, 0.07692307692307693, 0, 0.006666666666666667, 0.013605442176870748, 0.01818181818181818, 0, 0.041666666666666664, 0, 0, 0, 0.014084507042253521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011494252873563218, 0, 0, 0, 0, 0.010526315789473684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.07692307692307693, 0, 0, 0, 0.021739130434782608, 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.01639344262295082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06666666666666667, 0, 0, 0, 0, 0, 0, 0.027777777777777776, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0.014925373134328358, 0.041666666666666664, 0, 0.014634146341463415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.013888888888888888, 0, 0.008695652173913044, 0, 0.004098360655737705, 0, 0.014598540145985401, 0.017094017094017096, 0, 0, 0.008086253369272238, 0, 0.016129032258064516, 0.02531645569620253, 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.014925373134328358, 0, 0.01098901098901099, 0, 0.014925373134328358, 0, 0, 0.013636363636363636, 0.022727272727272728, 0, 0, 0, 0, 0, 0, 0.006944444444444444, 0, 0, 0, 0, 0, 0.009900990099009901, 0, 0.015625, 0, 0, 0, 0.02702702702702703, 0, 0.014925373134328358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06666666666666667, 0, 0, 0.04, 0, 0.10526315789473684, 0.025, 0, 0.07142857142857142, 0, 0, 0, 0, 0, 0.037037037037037035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010638297872340425, 0, 0, 0.03225806451612903, 0, 0.012658227848101266, 0, 0.041666666666666664, 0.008620689655172414, 0, 0.013245033112582781, 0.021897810218978103, 0.02127659574468085, 0.00847457627118644, 0.022222222222222223, 0, 0.09090909090909091, 0, 0, 0.011764705882352941, 0, 0.03225806451612903, 0.01639344262295082, 0, 0.03125, 0, 0, 0, 0, 0, 0, 0, 0, 0.023255813953488372, 0, 0, 0, 0.025, 0, 0.029411764705882353, 0, 0.03225806451612903, 0, 0, 0, 0, 0.07142857142857142, 0, 0.02564102564102564, 0, 0, 0.014084507042253521, 0.05, 0, 0.01098901098901099, 0, 0, 0.04, 0, 0.011627906976744186, 0.015, 0.0048543689320388345, 0, 0, 0.002702702702702703, 0.008333333333333333, 0, 0.0078125, 0.006734006734006734, 0.012048192771084338, 0, 0, 0.006329113924050633, 0, 0.019230769230769232, 0, 0.037037037037037035, 0, 0.02, 0.06666666666666667, 0, 0, 0.015873015873015872, 0.013513513513513514, 0, 0, 0, 0, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0, 0.025, 0, 0.024390243902439025, 0.038461538461538464, 0, 0.014285714285714285, 0, 0, 0, 0.005714285714285714, 0.006493506493506494, 0, 0, 0, 0, 0.023255813953488372, 0.015625, 0, 0.021739130434782608, 0, 0, 0, 0.014492753623188406, 0, 0.010416666666666666, 0, 0.012195121951219513, 0, 0.00510204081632653, 0, 0.01639344262295082, 0.07692307692307693, 0, 0.0055248618784530384, 0, 0.010526315789473684, 0.008849557522123894, 0, 0, 0.0196078431372549, 0, 0.016666666666666666, 0.006896551724137931, 0, 0.05, 0.024390243902439025, 0, 0, 0.021505376344086023, 0, 0, 0, 0, 0.02702702702702703, 0.013888888888888888, 0, 0, 0.00641025641025641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02, 0, 0.015873015873015872, 0, 0.0056179775280898875, 0, 0, 0.05555555555555555, 0.004878048780487805, 0.012048192771084338, 0.014705882352941176, 0, 0.010869565217391304, 0, 0.014084507042253521, 0.009345794392523364, 0, 0, 0, 0.01282051282051282, 0, 0, 0, 0.01694915254237288, 0.013793103448275862, 0.06382978723404255, 0, 0.0125, 0, 0.038461538461538464, 0, 0, 0, 0, 0, 0.004405286343612335, 0, 0, 0, 0, 0, 0.009433962264150943, 0.01282051282051282, 0.028846153846153848, 0.045454545454545456, 0, 0, 0, 0, 0.012658227848101266, 0, 0.013333333333333334, 0, 0, 0.015384615384615385, 0, 0.015873015873015872, 0.0045662100456621, 0, 0, 0.05, 0.008849557522123894, 0, 0.015873015873015872, 0.022222222222222223, 0, 0.00819672131147541, 0, 0.041666666666666664, 0, 0, 0, 0.00975609756097561, 0.012987012987012988, 0.015151515151515152, 0, 0.01818181818181818, 0, 0, 0.006802721088435374, 0, 0, 0.017543859649122806, 0, 0, 0, 0, 0.010526315789473684, 0, 0, 0.003401360544217687, 0.024, 0, 0, 0, 0.002890173410404624, 0, 0, 0, 0, 0, 0, 0, 0.006097560975609756, 0.011560693641618497, 0, 0, 0, 0, 0, 0.004807692307692308, 0, 0, 0, 0.011627906976744186, 0.006172839506172839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.015625, 0.00423728813559322, 0.019417475728155338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0.012195121951219513, 0, 0, 0, 0.005780346820809248, 0, 0.011834319526627219, 0, 0, 0, 0, 0, 0, 0, 0, 0.01904761904761905, 0.007575757575757576, 0, 0.009009009009009009, 0.02197802197802198, 0.01818181818181818, 0, 0.008695652173913044, 0.015600624024960999, 0.013201320132013201 ]
0.006173
5
[ { "analysis_explanation": null, "end": 217, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204 }, { "analysis_explanation": null, "end": 266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253 }, { "analysis_explanation": null, "end": 271, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267 }, { "analysis_explanation": null, "end": 302, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288 }, { "analysis_explanation": null, "end": 307, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303 }, { "analysis_explanation": null, "end": 322, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309 }, { "analysis_explanation": null, "end": 1309, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1301 }, { "analysis_explanation": null, "end": 1350, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1340 }, { "analysis_explanation": null, "end": 1405, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1390 }, { "analysis_explanation": null, "end": 1414, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1406 }, { "analysis_explanation": null, "end": 1522, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1509 }, { "analysis_explanation": null, "end": 1558, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1544 }, { "analysis_explanation": null, "end": 1715, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1702 }, { "analysis_explanation": null, "end": 1765, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1756 }, { "analysis_explanation": null, "end": 1778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1767 }, { "analysis_explanation": null, "end": 1840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1825 }, { "analysis_explanation": null, "end": 1946, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1935 }, { "analysis_explanation": null, "end": 2038, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2031 }, { "analysis_explanation": null, "end": 2486, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2477 }, { "analysis_explanation": null, "end": 2523, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2508 }, { "analysis_explanation": null, "end": 2938, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2930 }, { "analysis_explanation": null, "end": 3005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2998 }, { "analysis_explanation": null, "end": 3220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3209 }, { "analysis_explanation": null, "end": 3325, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3317 }, { "analysis_explanation": null, "end": 3419, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3406 }, { "analysis_explanation": null, "end": 3488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3475 }, { "analysis_explanation": null, "end": 3598, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3591 }, { "analysis_explanation": null, "end": 3910, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3897 }, { "analysis_explanation": null, "end": 3948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3934 }, { "analysis_explanation": null, "end": 4205, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4190 }, { "analysis_explanation": null, "end": 5124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5105 }, { "analysis_explanation": null, "end": 5241, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5224 }, { "analysis_explanation": null, "end": 5255, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5242 }, { "analysis_explanation": null, "end": 5339, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5333 }, { "analysis_explanation": null, "end": 5684, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5678 }, { "analysis_explanation": null, "end": 5692, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5685 }, { "analysis_explanation": null, "end": 5701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5694 }, { "analysis_explanation": null, "end": 5983, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5974 }, { "analysis_explanation": null, "end": 6006, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6000 }, { "analysis_explanation": null, "end": 6014, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6007 }, { "analysis_explanation": null, "end": 6066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6059 }, { "analysis_explanation": null, "end": 6394, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6387 }, { "analysis_explanation": null, "end": 6425, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6418 }, { "analysis_explanation": null, "end": 6845, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6838 }, { "analysis_explanation": null, "end": 6866, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6851 }, { "analysis_explanation": null, "end": 7097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7090 }, { "analysis_explanation": null, "end": 7208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7201 }, { "analysis_explanation": null, "end": 7369, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7362 }, { "analysis_explanation": null, "end": 7406, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7393 }, { "analysis_explanation": null, "end": 7445, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7433 }, { "analysis_explanation": null, "end": 7520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7499 }, { "analysis_explanation": null, "end": 7540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7533 }, { "analysis_explanation": null, "end": 7746, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7738 }, { "analysis_explanation": null, "end": 7809, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7802 }, { "analysis_explanation": null, "end": 7995, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7980 }, { "analysis_explanation": null, "end": 8064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8057 }, { "analysis_explanation": null, "end": 8368, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8359 }, { "analysis_explanation": null, "end": 8442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8435 }, { "analysis_explanation": null, "end": 8571, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8564 }, { "analysis_explanation": null, "end": 8785, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8778 }, { "analysis_explanation": null, "end": 8813, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8807 }, { "analysis_explanation": null, "end": 9128, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9121 }, { "analysis_explanation": null, "end": 9247, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9240 }, { "analysis_explanation": null, "end": 9416, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9407 }, { "analysis_explanation": null, "end": 9434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9427 }, { "analysis_explanation": null, "end": 9452, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9446 }, { "analysis_explanation": null, "end": 9462, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9455 }, { "analysis_explanation": null, "end": 9574, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9566 }, { "analysis_explanation": null, "end": 9617, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9603 }, { "analysis_explanation": null, "end": 10274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10263 }, { "analysis_explanation": null, "end": 10356, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10353 }, { "analysis_explanation": null, "end": 10534, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10527 }, { "analysis_explanation": null, "end": 10625, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10621 }, { "analysis_explanation": null, "end": 10656, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10653 }, { "analysis_explanation": null, "end": 10840, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10831 }, { "analysis_explanation": null, "end": 10868, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10861 }, { "analysis_explanation": null, "end": 11004, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10996 }, { "analysis_explanation": null, "end": 11122, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11119 }, { "analysis_explanation": null, "end": 11131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11127 }, { "analysis_explanation": null, "end": 11181, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11160 }, { "analysis_explanation": null, "end": 11312, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11303 }, { "analysis_explanation": null, "end": 11605, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11599 }, { "analysis_explanation": null, "end": 11697, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11691 }, { "analysis_explanation": null, "end": 11746, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11743 }, { "analysis_explanation": null, "end": 11930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11927 }, { "analysis_explanation": null, "end": 12205, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12197 }, { "analysis_explanation": null, "end": 12369, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12366 }, { "analysis_explanation": null, "end": 12453, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12447 }, { "analysis_explanation": null, "end": 12477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12466 }, { "analysis_explanation": null, "end": 12583, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12568 }, { "analysis_explanation": null, "end": 12618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12604 }, { "analysis_explanation": null, "end": 12702, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12687 }, { "analysis_explanation": null, "end": 12758, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12745 }, { "analysis_explanation": null, "end": 12762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12759 }, { "analysis_explanation": null, "end": 12777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12773 }, { "analysis_explanation": null, "end": 12989, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12985 }, { "analysis_explanation": null, "end": 13017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13013 }, { "analysis_explanation": null, "end": 13026, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13020 }, { "analysis_explanation": null, "end": 13059, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13052 }, { "analysis_explanation": null, "end": 13100, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13096 }, { "analysis_explanation": null, "end": 13132, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13126 }, { "analysis_explanation": null, "end": 13158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13153 }, { "analysis_explanation": null, "end": 13213, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13206 }, { "analysis_explanation": null, "end": 13222, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13215 }, { "analysis_explanation": null, "end": 13321, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13316 }, { "analysis_explanation": null, "end": 13326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13323 }, { "analysis_explanation": null, "end": 13531, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13524 }, { "analysis_explanation": null, "end": 13548, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13533 }, { "analysis_explanation": null, "end": 13915, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13912 }, { "analysis_explanation": null, "end": 14075, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14068 }, { "analysis_explanation": null, "end": 14241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14238 }, { "analysis_explanation": null, "end": 14353, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14347 }, { "analysis_explanation": null, "end": 14518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14515 }, { "analysis_explanation": null, "end": 14728, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14722 }, { "analysis_explanation": null, "end": 14842, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14837 }, { "analysis_explanation": null, "end": 14867, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14860 }, { "analysis_explanation": null, "end": 15109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15106 }, { "analysis_explanation": null, "end": 15143, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15135 }, { "analysis_explanation": null, "end": 15166, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15152 }, { "analysis_explanation": null, "end": 15517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15512 }, { "analysis_explanation": null, "end": 15528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15522 }, { "analysis_explanation": null, "end": 15685, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15674 }, { "analysis_explanation": null, "end": 15690, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15687 }, { "analysis_explanation": null, "end": 15881, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15864 }, { "analysis_explanation": null, "end": 16124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16121 }, { "analysis_explanation": null, "end": 16165, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16157 }, { "analysis_explanation": null, "end": 16197, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16189 }, { "analysis_explanation": null, "end": 16267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16264 }, { "analysis_explanation": null, "end": 16303, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16298 }, { "analysis_explanation": null, "end": 16714, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16707 }, { "analysis_explanation": null, "end": 16728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16725 }, { "analysis_explanation": null, "end": 16845, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16838 }, { "analysis_explanation": null, "end": 16877, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16872 }, { "analysis_explanation": null, "end": 17195, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17190 }, { "analysis_explanation": null, "end": 17205, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17202 }, { "analysis_explanation": null, "end": 17268, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17263 }, { "analysis_explanation": null, "end": 17428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17425 }, { "analysis_explanation": null, "end": 17890, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17886 }, { "analysis_explanation": null, "end": 18080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18068 }, { "analysis_explanation": null, "end": 18200, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18197 }, { "analysis_explanation": null, "end": 18547, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18537 }, { "analysis_explanation": null, "end": 18552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18549 }, { "analysis_explanation": null, "end": 18819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18816 }, { "analysis_explanation": null, "end": 19361, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19354 }, { "analysis_explanation": null, "end": 19519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19516 }, { "analysis_explanation": null, "end": 19587, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19582 }, { "analysis_explanation": null, "end": 19601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19589 }, { "analysis_explanation": null, "end": 19647, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19640 }, { "analysis_explanation": null, "end": 19894, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19890 }, { "analysis_explanation": null, "end": 20073, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20065 }, { "analysis_explanation": null, "end": 20218, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20214 }, { "analysis_explanation": null, "end": 20226, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20222 }, { "analysis_explanation": null, "end": 20258, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20252 }, { "analysis_explanation": null, "end": 20353, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20350 }, { "analysis_explanation": null, "end": 20434, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20428 }, { "analysis_explanation": null, "end": 20495, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20477 }, { "analysis_explanation": null, "end": 20906, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20903 }, { "analysis_explanation": null, "end": 20942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20938 }, { "analysis_explanation": null, "end": 20956, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20945 }, { "analysis_explanation": null, "end": 20997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20993 }, { "analysis_explanation": null, "end": 21312, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21304 }, { "analysis_explanation": null, "end": 21354, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21350 }, { "analysis_explanation": null, "end": 21395, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21392 }, { "analysis_explanation": null, "end": 21488, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21481 }, { "analysis_explanation": null, "end": 21576, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21573 }, { "analysis_explanation": null, "end": 21784, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21781 }, { "analysis_explanation": null, "end": 21848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21844 }, { "analysis_explanation": null, "end": 22145, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22142 }, { "analysis_explanation": null, "end": 22154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22150 }, { "analysis_explanation": null, "end": 22236, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22233 }, { "analysis_explanation": null, "end": 22348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22344 }, { "analysis_explanation": null, "end": 22451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22448 }, { "analysis_explanation": null, "end": 22551, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22537 }, { "analysis_explanation": null, "end": 22605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22601 }, { "analysis_explanation": null, "end": 22831, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22828 }, { "analysis_explanation": null, "end": 22899, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22892 }, { "analysis_explanation": null, "end": 22913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22910 }, { "analysis_explanation": null, "end": 22997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22993 }, { "analysis_explanation": null, "end": 23146, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23143 }, { "analysis_explanation": null, "end": 23314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23311 }, { "analysis_explanation": null, "end": 23499, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23495 }, { "analysis_explanation": null, "end": 23645, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23635 }, { "analysis_explanation": null, "end": 23731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23728 }, { "analysis_explanation": null, "end": 23804, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23801 }, { "analysis_explanation": null, "end": 23889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23885 }, { "analysis_explanation": null, "end": 24003, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23986 }, { "analysis_explanation": null, "end": 24045, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24034 }, { "analysis_explanation": null, "end": 24138, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24127 }, { "analysis_explanation": null, "end": 24334, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24331 }, { "analysis_explanation": null, "end": 24345, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24341 }, { "analysis_explanation": null, "end": 24506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24502 }, { "analysis_explanation": null, "end": 24540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24536 }, { "analysis_explanation": null, "end": 24688, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24685 }, { "analysis_explanation": null, "end": 24701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24697 }, { "analysis_explanation": null, "end": 24837, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24834 }, { "analysis_explanation": null, "end": 24926, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24922 }, { "analysis_explanation": null, "end": 25038, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25035 }, { "analysis_explanation": null, "end": 25127, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25123 }, { "analysis_explanation": null, "end": 25148, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25144 }, { "analysis_explanation": null, "end": 25224, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25221 }, { "analysis_explanation": null, "end": 25405, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25402 }, { "analysis_explanation": null, "end": 25540, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25532 }, { "analysis_explanation": null, "end": 25615, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25611 }, { "analysis_explanation": null, "end": 25622, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25618 }, { "analysis_explanation": null, "end": 25754, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25751 }, { "analysis_explanation": null, "end": 25826, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25822 }, { "analysis_explanation": null, "end": 26002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25999 }, { "analysis_explanation": null, "end": 26172, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26169 }, { "analysis_explanation": null, "end": 26395, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26391 }, { "analysis_explanation": null, "end": 26559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26555 }, { "analysis_explanation": null, "end": 26629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26626 }, { "analysis_explanation": null, "end": 26756, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26752 }, { "analysis_explanation": null, "end": 27002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26999 }, { "analysis_explanation": null, "end": 27045, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27041 }, { "analysis_explanation": null, "end": 27220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27216 }, { "analysis_explanation": null, "end": 27238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27235 }, { "analysis_explanation": null, "end": 27430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27426 }, { "analysis_explanation": null, "end": 27494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27491 }, { "analysis_explanation": null, "end": 27558, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27554 }, { "analysis_explanation": null, "end": 27592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27589 }, { "analysis_explanation": null, "end": 27735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27732 }, { "analysis_explanation": null, "end": 27780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27776 }, { "analysis_explanation": null, "end": 27882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27879 }, { "analysis_explanation": null, "end": 28006, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28003 }, { "analysis_explanation": null, "end": 28062, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28055 }, { "analysis_explanation": null, "end": 28181, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28174 }, { "analysis_explanation": null, "end": 28234, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28230 }, { "analysis_explanation": null, "end": 28456, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28444 }, { "analysis_explanation": null, "end": 28899, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28896 }, { "analysis_explanation": null, "end": 28925, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28921 }, { "analysis_explanation": null, "end": 29097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29094 }, { "analysis_explanation": null, "end": 29460, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29453 }, { "analysis_explanation": null, "end": 29466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29463 }, { "analysis_explanation": null, "end": 29482, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29476 }, { "analysis_explanation": null, "end": 29647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29644 }, { "analysis_explanation": null, "end": 29786, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29782 }, { "analysis_explanation": null, "end": 29791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29788 }, { "analysis_explanation": null, "end": 30020, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30012 }, { "analysis_explanation": null, "end": 30034, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30025 }, { "analysis_explanation": null, "end": 30057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30053 }, { "analysis_explanation": null, "end": 30090, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30087 }, { "analysis_explanation": null, "end": 30285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30282 }, { "analysis_explanation": null, "end": 30441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30437 }, { "analysis_explanation": null, "end": 30466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30463 }, { "analysis_explanation": null, "end": 30560, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30556 }, { "analysis_explanation": null, "end": 30891, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30869 }, { "analysis_explanation": null, "end": 31107, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31100 }, { "analysis_explanation": null, "end": 31278, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31271 }, { "analysis_explanation": null, "end": 31343, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31336 }, { "analysis_explanation": null, "end": 31387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31384 }, { "analysis_explanation": null, "end": 31407, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31403 }, { "analysis_explanation": null, "end": 31456, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31453 }, { "analysis_explanation": null, "end": 31674, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31660 }, { "analysis_explanation": null, "end": 31719, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31712 }, { "analysis_explanation": null, "end": 31880, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31877 }, { "analysis_explanation": null, "end": 32278, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32275 }, { "analysis_explanation": null, "end": 32365, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32358 }, { "analysis_explanation": null, "end": 32435, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32426 }, { "analysis_explanation": null, "end": 32454, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32443 }, { "analysis_explanation": null, "end": 32712, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32709 }, { "analysis_explanation": null, "end": 32798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32794 }, { "analysis_explanation": null, "end": 32947, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32940 }, { "analysis_explanation": null, "end": 32958, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32955 }, { "analysis_explanation": null, "end": 32968, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32964 }, { "analysis_explanation": null, "end": 33086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33083 }, { "analysis_explanation": null, "end": 33140, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33136 }, { "analysis_explanation": null, "end": 33501, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33494 }, { "analysis_explanation": null, "end": 33521, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33518 }, { "analysis_explanation": null, "end": 33530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33526 }, { "analysis_explanation": null, "end": 33655, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33651 }, { "analysis_explanation": null, "end": 33661, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33658 }, { "analysis_explanation": null, "end": 33790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33786 }, { "analysis_explanation": null, "end": 33844, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33834 }, { "analysis_explanation": null, "end": 33849, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33846 }, { "analysis_explanation": null, "end": 33980, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33977 }, { "analysis_explanation": null, "end": 34314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34311 }, { "analysis_explanation": null, "end": 34386, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34379 }, { "analysis_explanation": null, "end": 34392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34388 }, { "analysis_explanation": null, "end": 34438, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34435 }, { "analysis_explanation": null, "end": 34515, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34511 }, { "analysis_explanation": null, "end": 34570, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34567 }, { "analysis_explanation": null, "end": 34597, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34585 }, { "analysis_explanation": null, "end": 34603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34599 }, { "analysis_explanation": null, "end": 34645, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34640 }, { "analysis_explanation": null, "end": 34663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34658 }, { "analysis_explanation": null, "end": 34689, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34687 }, { "analysis_explanation": null, "end": 34702, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34693 }, { "analysis_explanation": null, "end": 34723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34705 }, { "analysis_explanation": null, "end": 34740, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34724 }, { "analysis_explanation": null, "end": 34799, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34789 }, { "analysis_explanation": null, "end": 34872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34869 }, { "analysis_explanation": null, "end": 35120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35117 }, { "analysis_explanation": null, "end": 35202, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35198 }, { "analysis_explanation": null, "end": 35295, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35286 }, { "analysis_explanation": null, "end": 35363, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35360 }, { "analysis_explanation": null, "end": 35425, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35418 }, { "analysis_explanation": null, "end": 35575, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35564 }, { "analysis_explanation": null, "end": 35640, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35631 }, { "analysis_explanation": null, "end": 35695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35692 }, { "analysis_explanation": null, "end": 35799, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35790 }, { "analysis_explanation": null, "end": 35815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35812 }, { "analysis_explanation": null, "end": 35835, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35831 }, { "analysis_explanation": null, "end": 35892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35889 }, { "analysis_explanation": null, "end": 35934, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35931 }, { "analysis_explanation": null, "end": 36007, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35994 }, { "analysis_explanation": null, "end": 36209, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36202 }, { "analysis_explanation": null, "end": 36315, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36307 }, { "analysis_explanation": null, "end": 36332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36329 }, { "analysis_explanation": null, "end": 36600, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36593 }, { "analysis_explanation": null, "end": 36607, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36602 }, { "analysis_explanation": null, "end": 36697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36694 }, { "analysis_explanation": null, "end": 36765, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36741 }, { "analysis_explanation": null, "end": 37036, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37033 }, { "analysis_explanation": null, "end": 38285, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38266 }, { "analysis_explanation": null, "end": 38882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38879 }, { "analysis_explanation": null, "end": 39497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39486 }, { "analysis_explanation": null, "end": 39555, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39534 }, { "analysis_explanation": null, "end": 39767, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39752 }, { "analysis_explanation": null, "end": 39826, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39823 }, { "analysis_explanation": null, "end": 39858, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39851 }, { "analysis_explanation": null, "end": 39900, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39896 }, { "analysis_explanation": null, "end": 40105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40102 }, { "analysis_explanation": null, "end": 40368, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40351 }, { "analysis_explanation": null, "end": 40581, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40577 }, { "analysis_explanation": null, "end": 40865, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40856 }, { "analysis_explanation": null, "end": 41062, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41055 }, { "analysis_explanation": null, "end": 41091, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41074 }, { "analysis_explanation": null, "end": 41140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41133 }, { "analysis_explanation": null, "end": 41284, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41281 }, { "analysis_explanation": null, "end": 41372, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41365 }, { "analysis_explanation": null, "end": 41395, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41389 }, { "analysis_explanation": null, "end": 41433, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41430 }, { "analysis_explanation": null, "end": 41562, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41555 }, { "analysis_explanation": null, "end": 41625, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41620 }, { "analysis_explanation": null, "end": 41740, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41732 }, { "analysis_explanation": null, "end": 41824, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41813 }, { "analysis_explanation": null, "end": 42049, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42043 }, { "analysis_explanation": null, "end": 42200, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42197 }, { "analysis_explanation": null, "end": 42373, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42367 }, { "analysis_explanation": null, "end": 42497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42492 }, { "analysis_explanation": null, "end": 42559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42553 }, { "analysis_explanation": null, "end": 42588, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42585 }, { "analysis_explanation": null, "end": 42598, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42591 }, { "analysis_explanation": null, "end": 43336, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43333 }, { "analysis_explanation": null, "end": 43395, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43388 }, { "analysis_explanation": null, "end": 43458, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43450 }, { "analysis_explanation": null, "end": 43481, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43477 }, { "analysis_explanation": null, "end": 43528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43524 }, { "analysis_explanation": null, "end": 43644, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43635 }, { "analysis_explanation": null, "end": 43664, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43655 }, { "analysis_explanation": null, "end": 43693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43690 }, { "analysis_explanation": null, "end": 43922, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43915 }, { "analysis_explanation": null, "end": 44088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44085 }, { "analysis_explanation": null, "end": 44119, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44112 }, { "analysis_explanation": null, "end": 44463, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44447 }, { "analysis_explanation": null, "end": 44502, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44496 }, { "analysis_explanation": null, "end": 44541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44533 }, { "analysis_explanation": null, "end": 44559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44555 }, { "analysis_explanation": null, "end": 44651, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44636 }, { "analysis_explanation": null, "end": 44772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44769 }, { "analysis_explanation": null, "end": 44864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44857 }, { "analysis_explanation": null, "end": 44967, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44963 }, { "analysis_explanation": null, "end": 44981, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44978 }, { "analysis_explanation": null, "end": 45164, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45153 }, { "analysis_explanation": null, "end": 45193, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45182 }, { "analysis_explanation": null, "end": 45322, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45316 }, { "analysis_explanation": null, "end": 45464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45461 }, { "analysis_explanation": null, "end": 45598, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45591 }, { "analysis_explanation": null, "end": 45788, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45782 }, { "analysis_explanation": null, "end": 45907, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45898 }, { "analysis_explanation": null, "end": 45961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45958 }, { "analysis_explanation": null, "end": 46022, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46001 }, { "analysis_explanation": null, "end": 46093, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46089 }, { "analysis_explanation": null, "end": 46149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46133 }, { "analysis_explanation": null, "end": 46200, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46197 }, { "analysis_explanation": null, "end": 46444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46441 }, { "analysis_explanation": null, "end": 46596, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46592 }, { "analysis_explanation": null, "end": 46917, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46907 }, { "analysis_explanation": null, "end": 47073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47066 }, { "analysis_explanation": null, "end": 47248, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47245 }, { "analysis_explanation": null, "end": 47272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47265 }, { "analysis_explanation": null, "end": 47377, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47356 }, { "analysis_explanation": null, "end": 47741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47738 }, { "analysis_explanation": null, "end": 47826, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47818 }, { "analysis_explanation": null, "end": 47903, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47894 }, { "analysis_explanation": null, "end": 47908, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47905 }, { "analysis_explanation": null, "end": 48787, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48770 }, { "analysis_explanation": null, "end": 48793, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48790 }, { "analysis_explanation": null, "end": 49015, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49009 }, { "analysis_explanation": null, "end": 49021, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49017 }, { "analysis_explanation": null, "end": 49108, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49102 }, { "analysis_explanation": null, "end": 49161, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49152 }, { "analysis_explanation": null, "end": 49430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49423 }, { "analysis_explanation": null, "end": 49922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49919 }, { "analysis_explanation": null, "end": 50540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50537 }, { "analysis_explanation": null, "end": 50628, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50625 }, { "analysis_explanation": null, "end": 51097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51090 }, { "analysis_explanation": null, "end": 51331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51328 }, { "analysis_explanation": null, "end": 51501, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51498 }, { "analysis_explanation": null, "end": 51795, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51792 }, { "analysis_explanation": null, "end": 51886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51883 }, { "analysis_explanation": null, "end": 52030, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52027 }, { "analysis_explanation": null, "end": 52257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52241 }, { "analysis_explanation": null, "end": 52546, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52530 }, { "analysis_explanation": null, "end": 52592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52589 }, { "analysis_explanation": null, "end": 52658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52654 }, { "analysis_explanation": null, "end": 52697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52694 }, { "analysis_explanation": null, "end": 53271, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53268 }, { "analysis_explanation": null, "end": 53526, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53506 }, { "analysis_explanation": null, "end": 53677, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53673 }, { "analysis_explanation": null, "end": 53948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53944 }, { "analysis_explanation": null, "end": 54097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54093 }, { "analysis_explanation": null, "end": 54129, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54125 }, { "analysis_explanation": null, "end": 54228, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54225 }, { "analysis_explanation": null, "end": 54447, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54431 }, { "analysis_explanation": null, "end": 54539, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54536 }, { "analysis_explanation": null, "end": 54710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54707 }, { "analysis_explanation": null, "end": 55205, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55196 }, { "analysis_explanation": null, "end": 55250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55247 }, { "analysis_explanation": null, "end": 55613, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55610 }, { "analysis_explanation": null, "end": 55741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55724 }, { "analysis_explanation": null, "end": 55858, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55852 }, { "analysis_explanation": null, "end": 55941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55938 }, { "analysis_explanation": null, "end": 55971, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55960 }, { "analysis_explanation": null, "end": 56116, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56113 }, { "analysis_explanation": null, "end": 56146, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56139 }, { "analysis_explanation": null, "end": 56158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56155 }, { "analysis_explanation": null, "end": 56170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56167 }, { "analysis_explanation": null, "end": 56417, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56409 }, { "analysis_explanation": null, "end": 56437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56426 }, { "analysis_explanation": null, "end": 56461, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56454 }, { "analysis_explanation": null, "end": 56625, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56618 }, { "analysis_explanation": null, "end": 56681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56678 }, { "analysis_explanation": null, "end": 56845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56842 }, { "analysis_explanation": null, "end": 56914, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56907 }, { "analysis_explanation": null, "end": 56947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56944 }, { "analysis_explanation": null, "end": 57147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57144 }, { "analysis_explanation": null, "end": 57326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57323 }, { "analysis_explanation": null, "end": 58124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58117 }, { "analysis_explanation": null, "end": 58220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58217 }, { "analysis_explanation": null, "end": 58451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58448 }, { "analysis_explanation": null, "end": 58473, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58467 }, { "analysis_explanation": null, "end": 58526, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58515 }, { "analysis_explanation": null, "end": 58750, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58743 }, { "analysis_explanation": null, "end": 58765, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58758 }, { "analysis_explanation": null, "end": 58834, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58831 }, { "analysis_explanation": null, "end": 58953, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58947 }, { "analysis_explanation": null, "end": 59045, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59029 }, { "analysis_explanation": null, "end": 59242, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59236 }, { "analysis_explanation": null, "end": 59410, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59407 }, { "analysis_explanation": null, "end": 59487, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59476 }, { "analysis_explanation": null, "end": 59663, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59656 }, { "analysis_explanation": null, "end": 59783, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59772 }, { "analysis_explanation": null, "end": 60114, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60111 }, { "analysis_explanation": null, "end": 60780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60777 }, { "analysis_explanation": null, "end": 61187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61184 }, { "analysis_explanation": null, "end": 61202, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61195 }, { "analysis_explanation": null, "end": 61230, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61226 }, { "analysis_explanation": null, "end": 61286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61283 }, { "analysis_explanation": null, "end": 61331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61324 }, { "analysis_explanation": null, "end": 61891, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61888 }, { "analysis_explanation": null, "end": 62257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62254 }, { "analysis_explanation": null, "end": 62592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62589 }, { "analysis_explanation": null, "end": 62615, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62599 }, { "analysis_explanation": null, "end": 62754, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62736 }, { "analysis_explanation": null, "end": 62802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62789 }, { "analysis_explanation": null, "end": 62918, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62915 }, { "analysis_explanation": null, "end": 62985, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62981 }, { "analysis_explanation": null, "end": 63117, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63110 }, { "analysis_explanation": null, "end": 63188, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63180 }, { "analysis_explanation": null, "end": 63261, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63258 }, { "analysis_explanation": null, "end": 63523, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63507 }, { "analysis_explanation": null, "end": 63535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63532 }, { "analysis_explanation": null, "end": 63592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63585 }, { "analysis_explanation": null, "end": 63666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63663 }, { "analysis_explanation": null, "end": 64080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64064 }, { "analysis_explanation": null, "end": 64113, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64110 }, { "analysis_explanation": null, "end": 64141, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64130 }, { "analysis_explanation": null, "end": 64172, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64169 }, { "analysis_explanation": null, "end": 64239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64235 }, { "analysis_explanation": null, "end": 64541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64538 }, { "analysis_explanation": null, "end": 64638, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64634 }, { "analysis_explanation": null, "end": 64997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64993 }, { "analysis_explanation": null, "end": 65181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65165 }, { "analysis_explanation": null, "end": 65195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65192 }, { "analysis_explanation": null, "end": 65257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65250 }, { "analysis_explanation": null, "end": 65289, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65285 }, { "analysis_explanation": null, "end": 65390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65379 }, { "analysis_explanation": null, "end": 65431, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65415 }, { "analysis_explanation": null, "end": 65828, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65821 }, { "analysis_explanation": null, "end": 65953, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65950 }, { "analysis_explanation": null, "end": 66070, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66063 }, { "analysis_explanation": null, "end": 66170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66163 }, { "analysis_explanation": null, "end": 66289, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66273 }, { "analysis_explanation": null, "end": 66320, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66313 }, { "analysis_explanation": null, "end": 66614, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66611 }, { "analysis_explanation": null, "end": 66765, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66755 }, { "analysis_explanation": null, "end": 66914, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66907 }, { "analysis_explanation": null, "end": 67003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67000 }, { "analysis_explanation": null, "end": 67081, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67062 }, { "analysis_explanation": null, "end": 67474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67469 }, { "analysis_explanation": null, "end": 67485, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67479 }, { "analysis_explanation": null, "end": 67664, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67661 }, { "analysis_explanation": null, "end": 68069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68065 }, { "analysis_explanation": null, "end": 68083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68072 }, { "analysis_explanation": null, "end": 68103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68100 }, { "analysis_explanation": null, "end": 68296, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68289 }, { "analysis_explanation": null, "end": 68415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68412 }, { "analysis_explanation": null, "end": 68471, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68464 }, { "analysis_explanation": null, "end": 68531, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68528 }, { "analysis_explanation": null, "end": 68566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68562 }, { "analysis_explanation": null, "end": 68596, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68583 }, { "analysis_explanation": null, "end": 68704, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68697 }, { "analysis_explanation": null, "end": 68770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68767 }, { "analysis_explanation": null, "end": 68958, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68949 }, { "analysis_explanation": null, "end": 69058, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69051 }, { "analysis_explanation": null, "end": 69219, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69216 }, { "analysis_explanation": null, "end": 69379, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69367 }, { "analysis_explanation": null, "end": 69395, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69385 }, { "analysis_explanation": null, "end": 69443, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69436 }, { "analysis_explanation": null, "end": 69548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69545 }, { "analysis_explanation": null, "end": 69602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69595 }, { "analysis_explanation": null, "end": 69689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69686 }, { "analysis_explanation": null, "end": 69748, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69741 }, { "analysis_explanation": null, "end": 69885, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69882 }, { "analysis_explanation": null, "end": 70269, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70266 }, { "analysis_explanation": null, "end": 70336, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70330 }, { "analysis_explanation": null, "end": 70640, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70617 }, { "analysis_explanation": null, "end": 70779, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70773 }, { "analysis_explanation": null, "end": 70894, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70887 }, { "analysis_explanation": null, "end": 70972, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70969 }, { "analysis_explanation": null, "end": 71434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71431 }, { "analysis_explanation": null, "end": 71465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71459 }, { "analysis_explanation": null, "end": 71518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71515 }, { "analysis_explanation": null, "end": 71805, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71800 }, { "analysis_explanation": null, "end": 71831, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71827 }, { "analysis_explanation": null, "end": 72086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72072 }, { "analysis_explanation": null, "end": 72193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72190 }, { "analysis_explanation": null, "end": 72323, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72317 }, { "analysis_explanation": null, "end": 72500, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72497 }, { "analysis_explanation": null, "end": 72636, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72632 }, { "analysis_explanation": null, "end": 72721, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72717 }, { "analysis_explanation": null, "end": 72731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72726 }, { "analysis_explanation": null, "end": 72858, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72845 }, { "analysis_explanation": null, "end": 72936, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72933 }, { "analysis_explanation": null, "end": 73104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73098 }, { "analysis_explanation": null, "end": 73116, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73108 }, { "analysis_explanation": null, "end": 73215, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73209 }, { "analysis_explanation": null, "end": 73430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73426 }, { "analysis_explanation": null, "end": 73455, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73452 }, { "analysis_explanation": null, "end": 73536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73525 }, { "analysis_explanation": null, "end": 73839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73835 }, { "analysis_explanation": null, "end": 73951, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73948 }, { "analysis_explanation": null, "end": 74323, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74320 }, { "analysis_explanation": null, "end": 74618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74612 }, { "analysis_explanation": null, "end": 74755, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74752 }, { "analysis_explanation": null, "end": 74870, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74867 }, { "analysis_explanation": null, "end": 75192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75185 }, { "analysis_explanation": null, "end": 75309, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75303 }, { "analysis_explanation": null, "end": 75387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75383 }, { "analysis_explanation": null, "end": 75435, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75431 }, { "analysis_explanation": null, "end": 75837, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75834 }, { "analysis_explanation": null, "end": 76512, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76507 }, { "analysis_explanation": null, "end": 76538, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76535 }, { "analysis_explanation": null, "end": 76585, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76578 }, { "analysis_explanation": null, "end": 76845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76842 }, { "analysis_explanation": null, "end": 77003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77000 }, { "analysis_explanation": null, "end": 77119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77115 }, { "analysis_explanation": null, "end": 77225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77222 }, { "analysis_explanation": null, "end": 77357, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77345 }, { "analysis_explanation": null, "end": 77430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77426 }, { "analysis_explanation": null, "end": 77597, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77594 }, { "analysis_explanation": null, "end": 77769, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77762 }, { "analysis_explanation": null, "end": 77830, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77827 }, { "analysis_explanation": null, "end": 77986, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77978 }, { "analysis_explanation": null, "end": 78007, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77996 }, { "analysis_explanation": null, "end": 78024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78021 }, { "analysis_explanation": null, "end": 78189, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78182 }, { "analysis_explanation": null, "end": 78211, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78206 }, { "analysis_explanation": null, "end": 78264, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78252 }, { "analysis_explanation": null, "end": 78292, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78288 }, { "analysis_explanation": null, "end": 78624, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78617 }, { "analysis_explanation": null, "end": 78670, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78667 }, { "analysis_explanation": null, "end": 78703, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78696 }, { "analysis_explanation": null, "end": 78750, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78744 }, { "analysis_explanation": null, "end": 79040, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79033 }, { "analysis_explanation": null, "end": 79076, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79063 }, { "analysis_explanation": null, "end": 79096, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79078 }, { "analysis_explanation": null, "end": 79180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79176 }, { "analysis_explanation": null, "end": 79192, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79185 }, { "analysis_explanation": null, "end": 79232, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79226 }, { "analysis_explanation": null, "end": 79280, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79277 }, { "analysis_explanation": null, "end": 79449, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79432 }, { "analysis_explanation": null, "end": 79461, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79458 }, { "analysis_explanation": null, "end": 79530, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79525 }, { "analysis_explanation": null, "end": 79750, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79747 }, { "analysis_explanation": null, "end": 79795, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79785 }, { "analysis_explanation": null, "end": 80034, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80031 }, { "analysis_explanation": null, "end": 80266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80263 }, { "analysis_explanation": null, "end": 80298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80295 }, { "analysis_explanation": null, "end": 80396, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80379 }, { "analysis_explanation": null, "end": 80513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80510 }, { "analysis_explanation": null, "end": 80682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80670 }, { "analysis_explanation": null, "end": 80726, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80719 }, { "analysis_explanation": null, "end": 80784, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80775 }, { "analysis_explanation": null, "end": 80827, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80813 }, { "analysis_explanation": null, "end": 81089, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81077 }, { "analysis_explanation": null, "end": 81164, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81147 }, { "analysis_explanation": null, "end": 81169, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81166 }, { "analysis_explanation": null, "end": 81308, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81300 }, { "analysis_explanation": null, "end": 81322, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81313 }, { "analysis_explanation": null, "end": 81351, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81337 }, { "analysis_explanation": null, "end": 81372, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81369 }, { "analysis_explanation": null, "end": 81631, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81623 }, { "analysis_explanation": null, "end": 81655, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81642 }, { "analysis_explanation": null, "end": 81794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81786 }, { "analysis_explanation": null, "end": 81841, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81833 }, { "analysis_explanation": null, "end": 81935, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81913 }, { "analysis_explanation": null, "end": 81967, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81948 }, { "analysis_explanation": null, "end": 81988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81985 }, { "analysis_explanation": null, "end": 82374, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82371 }, { "analysis_explanation": null, "end": 82770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82761 }, { "analysis_explanation": null, "end": 82804, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82799 }, { "analysis_explanation": null, "end": 82848, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82844 }, { "analysis_explanation": null, "end": 82930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82927 }, { "analysis_explanation": null, "end": 82974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82971 }, { "analysis_explanation": null, "end": 83233, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83217 }, { "analysis_explanation": null, "end": 83321, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83313 }, { "analysis_explanation": null, "end": 83351, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83348 }, { "analysis_explanation": null, "end": 83545, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83542 }, { "analysis_explanation": null, "end": 83621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83618 }, { "analysis_explanation": null, "end": 83721, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83714 }, { "analysis_explanation": null, "end": 83768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83751 }, { "analysis_explanation": null, "end": 83890, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83879 }, { "analysis_explanation": null, "end": 84517, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84508 }, { "analysis_explanation": null, "end": 85360, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85352 }, { "analysis_explanation": null, "end": 86059, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86041 }, { "analysis_explanation": null, "end": 86380, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86368 }, { "analysis_explanation": null, "end": 86428, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86420 }, { "analysis_explanation": null, "end": 86477, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86469 }, { "analysis_explanation": null, "end": 87057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87046 }, { "analysis_explanation": null, "end": 87315, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87303 }, { "analysis_explanation": null, "end": 87825, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87814 }, { "analysis_explanation": null, "end": 88499, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88492 }, { "analysis_explanation": null, "end": 88597, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88580 }, { "analysis_explanation": null, "end": 88652, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88649 }, { "analysis_explanation": null, "end": 88874, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88857 }, { "analysis_explanation": null, "end": 88991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88971 }, { "analysis_explanation": null, "end": 89218, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89206 }, { "analysis_explanation": null, "end": 89223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89220 }, { "analysis_explanation": null, "end": 89433, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89422 }, { "analysis_explanation": null, "end": 89439, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89435 }, { "analysis_explanation": null, "end": 89957, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89954 }, { "analysis_explanation": null, "end": 90165, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90152 }, { "analysis_explanation": null, "end": 90200, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90188 }, { "analysis_explanation": null, "end": 90879, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90876 }, { "analysis_explanation": null, "end": 90912, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90904 }, { "analysis_explanation": null, "end": 91004, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91000 }, { "analysis_explanation": null, "end": 91720, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91717 }, { "analysis_explanation": null, "end": 91962, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91959 }, { "analysis_explanation": null, "end": 92218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92209 }, { "analysis_explanation": null, "end": 92223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92220 }, { "analysis_explanation": null, "end": 92267, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92253 }, { "analysis_explanation": null, "end": 92295, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92282 }, { "analysis_explanation": null, "end": 92494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92479 }, { "analysis_explanation": null, "end": 92514, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92508 }, { "analysis_explanation": null, "end": 92543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92540 }, { "analysis_explanation": null, "end": 92555, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92548 }, { "analysis_explanation": null, "end": 92592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92589 }, { "analysis_explanation": null, "end": 92674, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92662 }, { "analysis_explanation": null, "end": 92748, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92745 }, { "analysis_explanation": null, "end": 92877, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92865 }, { "analysis_explanation": null, "end": 92921, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92912 }, { "analysis_explanation": null, "end": 92940, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92934 }, { "analysis_explanation": null, "end": 92954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92947 }, { "analysis_explanation": null, "end": 92968, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92956 }, { "analysis_explanation": null, "end": 93045, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93033 }, { "analysis_explanation": null, "end": 93077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93074 }, { "analysis_explanation": null, "end": 93251, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93239 }, { "analysis_explanation": null, "end": 93414, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93406 }, { "analysis_explanation": null, "end": 93578, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93570 }, { "analysis_explanation": null, "end": 93636, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93633 }, { "analysis_explanation": null, "end": 93841, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93838 }, { "analysis_explanation": null, "end": 93898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93895 }, { "analysis_explanation": null, "end": 94253, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94236 }, { "analysis_explanation": null, "end": 94373, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94359 }, { "analysis_explanation": null, "end": 94552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94549 }, { "analysis_explanation": null, "end": 94685, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94678 }, { "analysis_explanation": null, "end": 94724, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94711 }, { "analysis_explanation": null, "end": 94804, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94801 }, { "analysis_explanation": null, "end": 94933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94916 }, { "analysis_explanation": null, "end": 95006, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95000 }, { "analysis_explanation": null, "end": 95052, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95049 }, { "analysis_explanation": null, "end": 95093, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95078 }, { "analysis_explanation": null, "end": 95196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95188 }, { "analysis_explanation": null, "end": 95223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95220 }, { "analysis_explanation": null, "end": 95283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95275 }, { "analysis_explanation": null, "end": 95452, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95449 }, { "analysis_explanation": null, "end": 95531, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95511 }, { "analysis_explanation": null, "end": 95591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95588 }, { "analysis_explanation": null, "end": 95640, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95627 }, { "analysis_explanation": null, "end": 95675, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95666 }, { "analysis_explanation": null, "end": 95694, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95676 }, { "analysis_explanation": null, "end": 95781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95761 }, { "analysis_explanation": null, "end": 96020, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96011 }, { "analysis_explanation": null, "end": 96562, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96559 }, { "analysis_explanation": null, "end": 96842, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96825 }, { "analysis_explanation": null, "end": 96878, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96870 }, { "analysis_explanation": null, "end": 97089, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97086 }, { "analysis_explanation": null, "end": 97593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97590 }, { "analysis_explanation": null, "end": 97677, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97669 }, { "analysis_explanation": null, "end": 97833, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97830 }, { "analysis_explanation": null, "end": 97876, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97873 }, { "analysis_explanation": null, "end": 98381, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98370 }, { "analysis_explanation": null, "end": 98427, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98413 }, { "analysis_explanation": null, "end": 98452, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98443 }, { "analysis_explanation": null, "end": 98594, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98583 }, { "analysis_explanation": null, "end": 98762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98759 }, { "analysis_explanation": null, "end": 98838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98835 }, { "analysis_explanation": null, "end": 98988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98977 }, { "analysis_explanation": null, "end": 99070, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99067 }, { "analysis_explanation": null, "end": 99114, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99111 }, { "analysis_explanation": null, "end": 99317, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99309 }, { "analysis_explanation": null, "end": 99432, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99429 }, { "analysis_explanation": null, "end": 99466, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99451 }, { "analysis_explanation": null, "end": 99666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99663 }, { "analysis_explanation": null, "end": 99744, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99735 }, { "analysis_explanation": null, "end": 99848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99845 }, { "analysis_explanation": null, "end": 99883, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99868 }, { "analysis_explanation": null, "end": 99918, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99909 }, { "analysis_explanation": null, "end": 100161, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100156 }, { "analysis_explanation": null, "end": 100312, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100298 }, { "analysis_explanation": null, "end": 100404, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100392 }, { "analysis_explanation": null, "end": 100418, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100408 }, { "analysis_explanation": null, "end": 100589, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100586 }, { "analysis_explanation": null, "end": 100671, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100668 }, { "analysis_explanation": null, "end": 100979, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100971 }, { "analysis_explanation": null, "end": 101037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101034 }, { "analysis_explanation": null, "end": 101111, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101104 }, { "analysis_explanation": null, "end": 101199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101196 }, { "analysis_explanation": null, "end": 101289, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101284 }, { "analysis_explanation": null, "end": 101324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101310 }, { "analysis_explanation": null, "end": 101357, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101351 }, { "analysis_explanation": null, "end": 101378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101365 }, { "analysis_explanation": null, "end": 101409, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101393 }, { "analysis_explanation": null, "end": 101462, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101459 }, { "analysis_explanation": null, "end": 101581, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101572 }, { "analysis_explanation": null, "end": 101793, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101786 }, { "analysis_explanation": null, "end": 101807, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101798 }, { "analysis_explanation": null, "end": 101957, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101950 }, { "analysis_explanation": null, "end": 102065, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102052 }, { "analysis_explanation": null, "end": 102084, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102081 }, { "analysis_explanation": null, "end": 102121, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102113 }, { "analysis_explanation": null, "end": 102165, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102159 }, { "analysis_explanation": null, "end": 102202, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102194 }, { "analysis_explanation": null, "end": 102388, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102368 }, { "analysis_explanation": null, "end": 102567, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102564 }, { "analysis_explanation": null, "end": 102726, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102715 }, { "analysis_explanation": null, "end": 103093, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103082 }, { "analysis_explanation": null, "end": 103132, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103126 }, { "analysis_explanation": null, "end": 103142, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103137 }, { "analysis_explanation": null, "end": 103481, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103478 }, { "analysis_explanation": null, "end": 103633, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103624 }, { "analysis_explanation": null, "end": 103646, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103641 }, { "analysis_explanation": null, "end": 103697, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103692 }, { "analysis_explanation": null, "end": 103979, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103968 }, { "analysis_explanation": null, "end": 104206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104202 }, { "analysis_explanation": null, "end": 104276, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104269 }, { "analysis_explanation": null, "end": 104282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104279 }, { "analysis_explanation": null, "end": 104810, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104807 }, { "analysis_explanation": null, "end": 104836, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104829 }, { "analysis_explanation": null, "end": 105208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105200 }, { "analysis_explanation": null, "end": 105505, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105502 }, { "analysis_explanation": null, "end": 105539, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105524 }, { "analysis_explanation": null, "end": 105544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105541 }, { "analysis_explanation": null, "end": 105604, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105590 }, { "analysis_explanation": null, "end": 105671, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105658 }, { "analysis_explanation": null, "end": 105762, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105752 }, { "analysis_explanation": null, "end": 105785, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105779 }, { "analysis_explanation": null, "end": 106180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106165 }, { "analysis_explanation": null, "end": 106398, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106395 }, { "analysis_explanation": null, "end": 106413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106407 }, { "analysis_explanation": null, "end": 106557, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106547 }, { "analysis_explanation": null, "end": 106572, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106569 }, { "analysis_explanation": null, "end": 106626, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106616 }, { "analysis_explanation": null, "end": 106691, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106688 }, { "analysis_explanation": null, "end": 106777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106765 }, { "analysis_explanation": null, "end": 106973, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106961 }, { "analysis_explanation": null, "end": 107005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107002 }, { "analysis_explanation": null, "end": 107173, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107168 }, { "analysis_explanation": null, "end": 107247, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107239 }, { "analysis_explanation": null, "end": 107253, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107249 }, { "analysis_explanation": null, "end": 107293, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107287 }, { "analysis_explanation": null, "end": 107329, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107324 }, { "analysis_explanation": null, "end": 107525, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107517 }, { "analysis_explanation": null, "end": 107556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107553 }, { "analysis_explanation": null, "end": 107589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107581 }, { "analysis_explanation": null, "end": 107709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107694 }, { "analysis_explanation": null, "end": 107760, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107755 }, { "analysis_explanation": null, "end": 107805, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107798 }, { "analysis_explanation": null, "end": 107896, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107887 }, { "analysis_explanation": null, "end": 108264, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108252 }, { "analysis_explanation": null, "end": 108500, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108480 }, { "analysis_explanation": null, "end": 108577, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108573 }, { "analysis_explanation": null, "end": 108703, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108697 }, { "analysis_explanation": null, "end": 108814, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108811 }, { "analysis_explanation": null, "end": 108858, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108851 }, { "analysis_explanation": null, "end": 108926, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108923 }, { "analysis_explanation": null, "end": 109139, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109121 }, { "analysis_explanation": null, "end": 109221, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109215 }, { "analysis_explanation": null, "end": 109265, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109261 }, { "analysis_explanation": null, "end": 109327, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109318 }, { "analysis_explanation": null, "end": 109661, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109658 }, { "analysis_explanation": null, "end": 110047, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110041 }, { "analysis_explanation": null, "end": 110246, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110239 }, { "analysis_explanation": null, "end": 110285, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110278 }, { "analysis_explanation": null, "end": 110421, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110414 }, { "analysis_explanation": null, "end": 110504, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110501 }, { "analysis_explanation": null, "end": 110805, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110798 }, { "analysis_explanation": null, "end": 110856, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110853 }, { "analysis_explanation": null, "end": 110887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110883 }, { "analysis_explanation": null, "end": 110946, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110937 }, { "analysis_explanation": null, "end": 110987, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110984 }, { "analysis_explanation": null, "end": 111348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111345 }, { "analysis_explanation": null, "end": 111591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111588 }, { "analysis_explanation": null, "end": 111657, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111650 }, { "analysis_explanation": null, "end": 111664, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111658 }, { "analysis_explanation": null, "end": 111737, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111733 }, { "analysis_explanation": null, "end": 111959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111953 }, { "analysis_explanation": null, "end": 112397, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112389 }, { "analysis_explanation": null, "end": 112423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112417 }, { "analysis_explanation": null, "end": 112435, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112432 }, { "analysis_explanation": null, "end": 112772, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112753 }, { "analysis_explanation": null, "end": 112777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112774 }, { "analysis_explanation": null, "end": 112944, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112933 }, { "analysis_explanation": null, "end": 112961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112955 }, { "analysis_explanation": null, "end": 112985, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112975 }, { "analysis_explanation": null, "end": 113079, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113070 }, { "analysis_explanation": null, "end": 113162, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113155 }, { "analysis_explanation": null, "end": 113604, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113595 }, { "analysis_explanation": null, "end": 114515, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114505 }, { "analysis_explanation": null, "end": 114705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114702 }, { "analysis_explanation": null, "end": 115008, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115005 }, { "analysis_explanation": null, "end": 115307, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115304 }, { "analysis_explanation": null, "end": 115536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115533 }, { "analysis_explanation": null, "end": 116178, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116170 }, { "analysis_explanation": null, "end": 116240, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116233 }, { "analysis_explanation": null, "end": 116268, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116262 }, { "analysis_explanation": null, "end": 116710, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116703 }, { "analysis_explanation": null, "end": 116877, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116866 }, { "analysis_explanation": null, "end": 117131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117122 }, { "analysis_explanation": null, "end": 117261, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117258 }, { "analysis_explanation": null, "end": 117495, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117492 }, { "analysis_explanation": null, "end": 117544, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117532 }, { "analysis_explanation": null, "end": 117594, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117588 }, { "analysis_explanation": null, "end": 117706, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117697 }, { "analysis_explanation": null, "end": 117874, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117871 }, { "analysis_explanation": null, "end": 117913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117906 }, { "analysis_explanation": null, "end": 117976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117970 }, { "analysis_explanation": null, "end": 118238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118231 }, { "analysis_explanation": null, "end": 118253, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118245 }, { "analysis_explanation": null, "end": 118599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118591 }, { "analysis_explanation": null, "end": 118626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118618 }, { "analysis_explanation": null, "end": 118802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118799 }, { "analysis_explanation": null, "end": 119542, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119532 }, { "analysis_explanation": null, "end": 119784, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119781 }, { "analysis_explanation": null, "end": 120010, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119997 }, { "analysis_explanation": null, "end": 120101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120097 }, { "analysis_explanation": null, "end": 120366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120363 }, { "analysis_explanation": null, "end": 120486, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120478 }, { "analysis_explanation": null, "end": 121158, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121150 }, { "analysis_explanation": null, "end": 121324, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121317 }, { "analysis_explanation": null, "end": 121556, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121541 }, { "analysis_explanation": null, "end": 122210, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122201 }, { "analysis_explanation": null, "end": 122268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122265 }, { "analysis_explanation": null, "end": 122350, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122342 }, { "analysis_explanation": null, "end": 122408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122391 }, { "analysis_explanation": null, "end": 122418, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122415 }, { "analysis_explanation": null, "end": 122730, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122727 }, { "analysis_explanation": null, "end": 122815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122812 }, { "analysis_explanation": null, "end": 122830, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122826 }, { "analysis_explanation": null, "end": 123073, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123066 }, { "analysis_explanation": null, "end": 123083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123075 }, { "analysis_explanation": null, "end": 123180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123177 }, { "analysis_explanation": null, "end": 123271, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123268 }, { "analysis_explanation": null, "end": 123457, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123451 }, { "analysis_explanation": null, "end": 123537, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123530 }, { "analysis_explanation": null, "end": 123836, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123833 }, { "analysis_explanation": null, "end": 123856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123849 }, { "analysis_explanation": null, "end": 123879, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123873 }, { "analysis_explanation": null, "end": 123920, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123909 }, { "analysis_explanation": null, "end": 124011, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124005 }, { "analysis_explanation": null, "end": 124038, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124031 }, { "analysis_explanation": null, "end": 124197, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124190 }, { "analysis_explanation": null, "end": 124330, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124324 }, { "analysis_explanation": null, "end": 124367, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124358 }, { "analysis_explanation": null, "end": 124563, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124547 }, { "analysis_explanation": null, "end": 124837, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124834 }, { "analysis_explanation": null, "end": 124866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124857 }, { "analysis_explanation": null, "end": 124933, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124930 }, { "analysis_explanation": null, "end": 125203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125199 }, { "analysis_explanation": null, "end": 125256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125247 }, { "analysis_explanation": null, "end": 125313, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125307 }, { "analysis_explanation": null, "end": 125330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125318 }, { "analysis_explanation": null, "end": 125348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125335 }, { "analysis_explanation": null, "end": 125453, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125445 }, { "analysis_explanation": null, "end": 125524, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125516 }, { "analysis_explanation": null, "end": 125579, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125569 }, { "analysis_explanation": null, "end": 125595, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125585 }, { "analysis_explanation": null, "end": 125861, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125855 }, { "analysis_explanation": null, "end": 126011, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126004 }, { "analysis_explanation": null, "end": 126022, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126013 }, { "analysis_explanation": null, "end": 126105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126091 }, { "analysis_explanation": null, "end": 126224, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126212 }, { "analysis_explanation": null, "end": 126315, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126304 }, { "analysis_explanation": null, "end": 126397, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126384 }, { "analysis_explanation": null, "end": 126556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126547 }, { "analysis_explanation": null, "end": 126592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126588 }, { "analysis_explanation": null, "end": 126676, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126671 }, { "analysis_explanation": null, "end": 126749, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126746 }, { "analysis_explanation": null, "end": 126792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126786 }, { "analysis_explanation": null, "end": 126993, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126990 }, { "analysis_explanation": null, "end": 127234, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127226 }, { "analysis_explanation": null, "end": 127545, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127535 }, { "analysis_explanation": null, "end": 127551, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127547 }, { "analysis_explanation": null, "end": 127579, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127562 }, { "analysis_explanation": null, "end": 127648, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127645 }, { "analysis_explanation": null, "end": 128045, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128040 }, { "analysis_explanation": null, "end": 128147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128141 }, { "analysis_explanation": null, "end": 128294, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128291 }, { "analysis_explanation": null, "end": 128350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128344 }, { "analysis_explanation": null, "end": 128436, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128430 }, { "analysis_explanation": null, "end": 128616, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128610 }, { "analysis_explanation": null, "end": 128782, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128763 }, { "analysis_explanation": null, "end": 128790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128787 }, { "analysis_explanation": null, "end": 129224, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129218 }, { "analysis_explanation": null, "end": 129237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129230 }, { "analysis_explanation": null, "end": 129366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129363 }, { "analysis_explanation": null, "end": 129407, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129401 }, { "analysis_explanation": null, "end": 129464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129461 }, { "analysis_explanation": null, "end": 129831, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129828 }, { "analysis_explanation": null, "end": 130157, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130151 }, { "analysis_explanation": null, "end": 130172, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130169 }, { "analysis_explanation": null, "end": 130280, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130267 }, { "analysis_explanation": null, "end": 130664, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130661 }, { "analysis_explanation": null, "end": 130797, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130790 }, { "analysis_explanation": null, "end": 130903, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130897 }, { "analysis_explanation": null, "end": 131136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131133 }, { "analysis_explanation": null, "end": 131218, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131205 }, { "analysis_explanation": null, "end": 131397, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131391 }, { "analysis_explanation": null, "end": 131449, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131446 }, { "analysis_explanation": null, "end": 131603, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131591 }, { "analysis_explanation": null, "end": 131609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131606 }, { "analysis_explanation": null, "end": 131772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131768 }, { "analysis_explanation": null, "end": 132040, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132034 }, { "analysis_explanation": null, "end": 132112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132109 }, { "analysis_explanation": null, "end": 132482, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132456 }, { "analysis_explanation": null, "end": 132506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132491 }, { "analysis_explanation": null, "end": 132568, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132558 }, { "analysis_explanation": null, "end": 132732, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132729 }, { "analysis_explanation": null, "end": 132940, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132937 }, { "analysis_explanation": null, "end": 133149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133139 }, { "analysis_explanation": null, "end": 133170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133164 }, { "analysis_explanation": null, "end": 133208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133205 }, { "analysis_explanation": null, "end": 133247, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133241 }, { "analysis_explanation": null, "end": 133267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133264 }, { "analysis_explanation": null, "end": 133402, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133399 }, { "analysis_explanation": null, "end": 133649, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133642 }, { "analysis_explanation": null, "end": 133695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133683 }, { "analysis_explanation": null, "end": 133746, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133728 }, { "analysis_explanation": null, "end": 134171, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134166 }, { "analysis_explanation": null, "end": 134185, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134173 }, { "analysis_explanation": null, "end": 134541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134532 }, { "analysis_explanation": null, "end": 134662, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134658 }, { "analysis_explanation": null, "end": 134772, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134754 }, { "analysis_explanation": null, "end": 134866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134859 }, { "analysis_explanation": null, "end": 134885, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134881 }, { "analysis_explanation": null, "end": 134967, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134952 }, { "analysis_explanation": null, "end": 135098, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135089 }, { "analysis_explanation": null, "end": 135151, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135146 }, { "analysis_explanation": null, "end": 135163, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135160 }, { "analysis_explanation": null, "end": 135193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135178 }, { "analysis_explanation": null, "end": 135251, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135244 }, { "analysis_explanation": null, "end": 135390, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135386 }, { "analysis_explanation": null, "end": 135434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135419 }, { "analysis_explanation": null, "end": 135454, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135446 }, { "analysis_explanation": null, "end": 135648, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135634 }, { "analysis_explanation": null, "end": 135993, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135985 }, { "analysis_explanation": null, "end": 136146, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136134 }, { "analysis_explanation": null, "end": 136527, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136518 }, { "analysis_explanation": null, "end": 136611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136607 }, { "analysis_explanation": null, "end": 136731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136716 }, { "analysis_explanation": null, "end": 136790, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136770 }, { "analysis_explanation": null, "end": 137483, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137467 }, { "analysis_explanation": null, "end": 137593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137588 }, { "analysis_explanation": null, "end": 137606, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137598 }, { "analysis_explanation": null, "end": 138348, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138341 }, { "analysis_explanation": null, "end": 138706, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138697 }, { "analysis_explanation": null, "end": 138839, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138833 }, { "analysis_explanation": null, "end": 139196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139189 }, { "analysis_explanation": null, "end": 139808, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139803 }, { "analysis_explanation": null, "end": 139814, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139809 }, { "analysis_explanation": null, "end": 139926, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139918 }, { "analysis_explanation": null, "end": 139937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139929 }, { "analysis_explanation": null, "end": 140008, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140003 }, { "analysis_explanation": null, "end": 140634, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140627 }, { "analysis_explanation": null, "end": 140643, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140636 }, { "analysis_explanation": null, "end": 140887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140872 }, { "analysis_explanation": null, "end": 140931, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140910 }, { "analysis_explanation": null, "end": 141071, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141054 }, { "analysis_explanation": null, "end": 141149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141133 }, { "analysis_explanation": null, "end": 141166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141151 }, { "analysis_explanation": null, "end": 141182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141168 }, { "analysis_explanation": null, "end": 141195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141184 }, { "analysis_explanation": null, "end": 141213, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141197 }, { "analysis_explanation": null, "end": 141416, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141408 }, { "analysis_explanation": null, "end": 141610, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141604 }, { "analysis_explanation": null, "end": 141649, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141640 }, { "analysis_explanation": null, "end": 141697, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141689 }, { "analysis_explanation": null, "end": 141914, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141908 }, { "analysis_explanation": null, "end": 142013, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142004 }, { "analysis_explanation": null, "end": 142111, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142104 }, { "analysis_explanation": null, "end": 142421, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142407 }, { "analysis_explanation": null, "end": 142444, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142430 }, { "analysis_explanation": null, "end": 143402, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143393 }, { "analysis_explanation": null, "end": 143642, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143631 }, { "analysis_explanation": null, "end": 143806, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143800 }, { "analysis_explanation": null, "end": 143816, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143810 }, { "analysis_explanation": null, "end": 143947, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143926 }, { "analysis_explanation": null, "end": 143996, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143979 }, { "analysis_explanation": null, "end": 144011, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144001 }, { "analysis_explanation": null, "end": 144164, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144157 }, { "analysis_explanation": null, "end": 144304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144295 }, { "analysis_explanation": null, "end": 144554, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144548 }, { "analysis_explanation": null, "end": 145137, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 145124 }, { "analysis_explanation": null, "end": 145810, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 145797 }, { "analysis_explanation": null, "end": 145961, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 145947 }, { "analysis_explanation": null, "end": 146074, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146065 }, { "analysis_explanation": null, "end": 146096, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146089 }, { "analysis_explanation": null, "end": 146148, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146142 }, { "analysis_explanation": null, "end": 146322, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146314 }, { "analysis_explanation": null, "end": 146671, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146666 }, { "analysis_explanation": null, "end": 146974, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146968 }, { "analysis_explanation": null, "end": 147068, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147059 }, { "analysis_explanation": null, "end": 147124, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147118 }, { "analysis_explanation": null, "end": 147380, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147368 }, { "analysis_explanation": null, "end": 147443, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147429 }, { "analysis_explanation": null, "end": 147668, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147665 }, { "analysis_explanation": null, "end": 147695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147685 }, { "analysis_explanation": null, "end": 147942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147939 }, { "analysis_explanation": null, "end": 147997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147988 }, { "analysis_explanation": null, "end": 148118, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148111 }, { "analysis_explanation": null, "end": 148123, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148119 }, { "analysis_explanation": null, "end": 148306, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148303 }, { "analysis_explanation": null, "end": 148331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148319 }, { "analysis_explanation": null, "end": 148514, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148510 }, { "analysis_explanation": null, "end": 148543, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148535 }, { "analysis_explanation": null, "end": 148623, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148611 }, { "analysis_explanation": null, "end": 148652, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148649 }, { "analysis_explanation": null, "end": 148674, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148667 }, { "analysis_explanation": null, "end": 148766, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148753 }, { "analysis_explanation": null, "end": 148788, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148776 }, { "analysis_explanation": null, "end": 149110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149107 }, { "analysis_explanation": null, "end": 149161, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149156 }, { "analysis_explanation": null, "end": 149361, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149354 }, { "analysis_explanation": null, "end": 149390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149382 }, { "analysis_explanation": null, "end": 149444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149429 }, { "analysis_explanation": null, "end": 149457, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149452 }, { "analysis_explanation": null, "end": 149667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149664 }, { "analysis_explanation": null, "end": 149735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149731 }, { "analysis_explanation": null, "end": 149864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149858 }, { "analysis_explanation": null, "end": 149887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149884 }, { "analysis_explanation": null, "end": 150019, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150011 }, { "analysis_explanation": null, "end": 150044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150040 }, { "analysis_explanation": null, "end": 150218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150214 }, { "analysis_explanation": null, "end": 150299, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150291 }, { "analysis_explanation": null, "end": 150487, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150470 }, { "analysis_explanation": null, "end": 150556, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150540 }, { "analysis_explanation": null, "end": 150753, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150730 }, { "analysis_explanation": null, "end": 150948, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150940 }, { "analysis_explanation": null, "end": 151038, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151027 }, { "analysis_explanation": null, "end": 151107, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151105 }, { "analysis_explanation": null, "end": 151192, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151175 }, { "analysis_explanation": null, "end": 151275, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151266 }, { "analysis_explanation": null, "end": 151513, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151507 }, { "analysis_explanation": null, "end": 151525, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151518 }, { "analysis_explanation": null, "end": 151566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151557 }, { "analysis_explanation": null, "end": 151574, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151568 }, { "analysis_explanation": null, "end": 151582, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151576 }, { "analysis_explanation": null, "end": 151589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151584 }, { "analysis_explanation": null, "end": 151612, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151594 }, { "analysis_explanation": null, "end": 151658, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151650 }, { "analysis_explanation": null, "end": 151674, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151660 }, { "analysis_explanation": null, "end": 151816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151813 }, { "analysis_explanation": null, "end": 152079, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152076 }, { "analysis_explanation": null, "end": 152187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152184 }, { "analysis_explanation": null, "end": 152414, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152411 }, { "analysis_explanation": null, "end": 152751, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152748 }, { "analysis_explanation": null, "end": 152847, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152841 }, { "analysis_explanation": null, "end": 152954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152951 }, { "analysis_explanation": null, "end": 153287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153281 }, { "analysis_explanation": null, "end": 153484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153481 }, { "analysis_explanation": null, "end": 153607, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153601 }, { "analysis_explanation": null, "end": 153709, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153698 }, { "analysis_explanation": null, "end": 153877, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153874 }, { "analysis_explanation": null, "end": 153905, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153898 }, { "analysis_explanation": null, "end": 154045, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154039 }, { "analysis_explanation": null, "end": 154077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154074 }, { "analysis_explanation": null, "end": 154193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154181 }, { "analysis_explanation": null, "end": 154230, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154222 }, { "analysis_explanation": null, "end": 154519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154513 }, { "analysis_explanation": null, "end": 154566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154563 }, { "analysis_explanation": null, "end": 154794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154791 }, { "analysis_explanation": null, "end": 154839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154836 }, { "analysis_explanation": null, "end": 154970, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154964 }, { "analysis_explanation": null, "end": 155177, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155160 }, { "analysis_explanation": null, "end": 155185, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155179 }, { "analysis_explanation": null, "end": 155227, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155218 }, { "analysis_explanation": null, "end": 155298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155295 }, { "analysis_explanation": null, "end": 155378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155372 }, { "analysis_explanation": null, "end": 155594, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155586 }, { "analysis_explanation": null, "end": 155616, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155613 }, { "analysis_explanation": null, "end": 155712, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155692 }, { "analysis_explanation": null, "end": 155816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155813 }, { "analysis_explanation": null, "end": 155951, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155948 }, { "analysis_explanation": null, "end": 156102, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156085 }, { "analysis_explanation": null, "end": 156277, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156265 }, { "analysis_explanation": null, "end": 156303, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156300 }, { "analysis_explanation": null, "end": 156545, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156542 }, { "analysis_explanation": null, "end": 156762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156758 }, { "analysis_explanation": null, "end": 156924, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156916 }, { "analysis_explanation": null, "end": 157343, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157340 }, { "analysis_explanation": null, "end": 157898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157895 }, { "analysis_explanation": null, "end": 158099, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158091 }, { "analysis_explanation": null, "end": 158347, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158344 }, { "analysis_explanation": null, "end": 158454, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158450 }, { "analysis_explanation": null, "end": 158693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158679 }, { "analysis_explanation": null, "end": 158747, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158733 }, { "analysis_explanation": null, "end": 158819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158816 }, { "analysis_explanation": null, "end": 158954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158946 }, { "analysis_explanation": null, "end": 159076, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159062 }, { "analysis_explanation": null, "end": 159188, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159176 }, { "analysis_explanation": null, "end": 159232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159220 }, { "analysis_explanation": null, "end": 159249, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159246 }, { "analysis_explanation": null, "end": 159380, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159377 }, { "analysis_explanation": null, "end": 159437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159430 }, { "analysis_explanation": null, "end": 159454, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159451 }, { "analysis_explanation": null, "end": 159513, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159504 }, { "analysis_explanation": null, "end": 159603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159600 }, { "analysis_explanation": null, "end": 159819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159812 }, { "analysis_explanation": null, "end": 159913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159910 }, { "analysis_explanation": null, "end": 159974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159965 }, { "analysis_explanation": null, "end": 160002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159999 }, { "analysis_explanation": null, "end": 160068, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160061 }, { "analysis_explanation": null, "end": 160390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160387 }, { "analysis_explanation": null, "end": 160408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160404 }, { "analysis_explanation": null, "end": 160509, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160502 }, { "analysis_explanation": null, "end": 160875, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160868 }, { "analysis_explanation": null, "end": 160991, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160984 }, { "analysis_explanation": null, "end": 160995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160992 }, { "analysis_explanation": null, "end": 161498, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161491 }, { "analysis_explanation": null, "end": 161632, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161629 }, { "analysis_explanation": null, "end": 161695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161690 }, { "analysis_explanation": null, "end": 161728, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161721 }, { "analysis_explanation": null, "end": 161795, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161792 }, { "analysis_explanation": null, "end": 161810, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161805 }, { "analysis_explanation": null, "end": 161866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161854 }, { "analysis_explanation": null, "end": 161994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161991 }, { "analysis_explanation": null, "end": 162077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162058 }, { "analysis_explanation": null, "end": 162157, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162154 }, { "analysis_explanation": null, "end": 162223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162216 }, { "analysis_explanation": null, "end": 162377, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162360 }, { "analysis_explanation": null, "end": 162391, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162379 }, { "analysis_explanation": null, "end": 162406, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162393 }, { "analysis_explanation": null, "end": 162427, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162421 }, { "analysis_explanation": null, "end": 162439, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162432 }, { "analysis_explanation": null, "end": 162456, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162441 }, { "analysis_explanation": null, "end": 162483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162474 }, { "analysis_explanation": null, "end": 162578, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162575 }, { "analysis_explanation": null, "end": 162632, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162625 }, { "analysis_explanation": null, "end": 162756, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162751 }, { "analysis_explanation": null, "end": 162850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162847 }, { "analysis_explanation": null, "end": 162915, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162908 }, { "analysis_explanation": null, "end": 162968, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162965 }, { "analysis_explanation": null, "end": 163141, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163128 }, { "analysis_explanation": null, "end": 163187, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163180 }, { "analysis_explanation": null, "end": 163264, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163261 }, { "analysis_explanation": null, "end": 163360, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163353 }, { "analysis_explanation": null, "end": 163407, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163400 }, { "analysis_explanation": null, "end": 163596, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163582 }, { "analysis_explanation": null, "end": 163673, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163667 }, { "analysis_explanation": null, "end": 163710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163704 }, { "analysis_explanation": null, "end": 163776, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163767 }, { "analysis_explanation": null, "end": 163802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163795 }, { "analysis_explanation": null, "end": 163963, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163956 }, { "analysis_explanation": null, "end": 164287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164280 }, { "analysis_explanation": null, "end": 164348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164336 }, { "analysis_explanation": null, "end": 164423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164420 }, { "analysis_explanation": null, "end": 164485, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164474 }, { "analysis_explanation": null, "end": 164503, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164499 }, { "analysis_explanation": null, "end": 164969, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164955 }, { "analysis_explanation": null, "end": 165111, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165108 }, { "analysis_explanation": null, "end": 165171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165165 }, { "analysis_explanation": null, "end": 165181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165176 }, { "analysis_explanation": null, "end": 165274, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165255 }, { "analysis_explanation": null, "end": 165280, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165277 }, { "analysis_explanation": null, "end": 165335, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165323 }, { "analysis_explanation": null, "end": 165359, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165344 }, { "analysis_explanation": null, "end": 165467, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165453 }, { "analysis_explanation": null, "end": 165491, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165485 }, { "analysis_explanation": null, "end": 165556, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165549 }, { "analysis_explanation": null, "end": 165596, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165590 }, { "analysis_explanation": null, "end": 165645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165641 }, { "analysis_explanation": null, "end": 165746, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165736 }, { "analysis_explanation": null, "end": 165811, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165801 }, { "analysis_explanation": null, "end": 165864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165857 }, { "analysis_explanation": null, "end": 165892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165889 }, { "analysis_explanation": null, "end": 165913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165906 }, { "analysis_explanation": null, "end": 165953, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165946 }, { "analysis_explanation": null, "end": 165962, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165958 }, { "analysis_explanation": null, "end": 166055, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166051 }, { "analysis_explanation": null, "end": 166070, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166067 }, { "analysis_explanation": null, "end": 166195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166191 }, { "analysis_explanation": null, "end": 166212, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166205 }, { "analysis_explanation": null, "end": 166349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166343 }, { "analysis_explanation": null, "end": 166417, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166398 }, { "analysis_explanation": null, "end": 166471, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166468 }, { "analysis_explanation": null, "end": 166527, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166520 }, { "analysis_explanation": null, "end": 166811, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166804 }, { "analysis_explanation": null, "end": 166964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166961 }, { "analysis_explanation": null, "end": 167021, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167015 }, { "analysis_explanation": null, "end": 167103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167097 }, { "analysis_explanation": null, "end": 167176, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167169 }, { "analysis_explanation": null, "end": 167287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167284 }, { "analysis_explanation": null, "end": 167402, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167388 }, { "analysis_explanation": null, "end": 167477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167460 }, { "analysis_explanation": null, "end": 167490, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167487 }, { "analysis_explanation": null, "end": 167554, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167548 }, { "analysis_explanation": null, "end": 167592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167586 }, { "analysis_explanation": null, "end": 167712, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167698 }, { "analysis_explanation": null, "end": 167766, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167763 }, { "analysis_explanation": null, "end": 167964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167952 }, { "analysis_explanation": null, "end": 167988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167985 }, { "analysis_explanation": null, "end": 168231, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168223 }, { "analysis_explanation": null, "end": 168266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168263 }, { "analysis_explanation": null, "end": 168530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168527 }, { "analysis_explanation": null, "end": 168704, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168698 }, { "analysis_explanation": null, "end": 168756, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168753 }, { "analysis_explanation": null, "end": 168771, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168764 }, { "analysis_explanation": null, "end": 168861, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168857 }, { "analysis_explanation": null, "end": 168904, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168886 }, { "analysis_explanation": null, "end": 168966, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168962 }, { "analysis_explanation": null, "end": 169058, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169049 }, { "analysis_explanation": null, "end": 169120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169112 }, { "analysis_explanation": null, "end": 169166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169163 }, { "analysis_explanation": null, "end": 169334, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169327 }, { "analysis_explanation": null, "end": 169406, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169388 }, { "analysis_explanation": null, "end": 169559, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169552 }, { "analysis_explanation": null, "end": 169595, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169592 }, { "analysis_explanation": null, "end": 169705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169689 }, { "analysis_explanation": null, "end": 169843, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169838 }, { "analysis_explanation": null, "end": 170009, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170001 }, { "analysis_explanation": null, "end": 170034, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170028 }, { "analysis_explanation": null, "end": 170056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170045 }, { "analysis_explanation": null, "end": 170067, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170060 }, { "analysis_explanation": null, "end": 170147, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170139 }, { "analysis_explanation": null, "end": 170241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170235 }, { "analysis_explanation": null, "end": 170326, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170317 }, { "analysis_explanation": null, "end": 170403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170390 }, { "analysis_explanation": null, "end": 170440, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170434 }, { "analysis_explanation": null, "end": 170497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170483 }, { "analysis_explanation": null, "end": 170508, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170499 }, { "analysis_explanation": null, "end": 170713, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170710 }, { "analysis_explanation": null, "end": 170756, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170748 }, { "analysis_explanation": null, "end": 171167, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171164 }, { "analysis_explanation": null, "end": 171289, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171285 }, { "analysis_explanation": null, "end": 171324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171315 }, { "analysis_explanation": null, "end": 171462, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171453 }, { "analysis_explanation": null, "end": 171546, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171543 }, { "analysis_explanation": null, "end": 171600, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171584 }, { "analysis_explanation": null, "end": 171970, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171953 }, { "analysis_explanation": null, "end": 172192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172178 }, { "analysis_explanation": null, "end": 172241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172238 }, { "analysis_explanation": null, "end": 172293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172282 }, { "analysis_explanation": null, "end": 172588, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172581 }, { "analysis_explanation": null, "end": 172659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172656 }, { "analysis_explanation": null, "end": 172735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172728 }, { "analysis_explanation": null, "end": 172767, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172760 }, { "analysis_explanation": null, "end": 172775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172769 }, { "analysis_explanation": null, "end": 172850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172846 }, { "analysis_explanation": null, "end": 172922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172915 }, { "analysis_explanation": null, "end": 172996, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172993 }, { "analysis_explanation": null, "end": 173031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173027 }, { "analysis_explanation": null, "end": 173160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173154 }, { "analysis_explanation": null, "end": 173243, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173229 }, { "analysis_explanation": null, "end": 173349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173346 }, { "analysis_explanation": null, "end": 173457, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173451 }, { "analysis_explanation": null, "end": 173528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173521 }, { "analysis_explanation": null, "end": 173570, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173567 }, { "analysis_explanation": null, "end": 173654, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173647 }, { "analysis_explanation": null, "end": 173662, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173659 }, { "analysis_explanation": null, "end": 173723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173713 }, { "analysis_explanation": null, "end": 173728, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173725 }, { "analysis_explanation": null, "end": 173764, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173758 }, { "analysis_explanation": null, "end": 173783, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173777 }, { "analysis_explanation": null, "end": 173810, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173804 }, { "analysis_explanation": null, "end": 173867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173854 }, { "analysis_explanation": null, "end": 173887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173884 }, { "analysis_explanation": null, "end": 173928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173915 }, { "analysis_explanation": null, "end": 173994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173988 }, { "analysis_explanation": null, "end": 174195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174189 }, { "analysis_explanation": null, "end": 174269, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174263 }, { "analysis_explanation": null, "end": 174294, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174290 }, { "analysis_explanation": null, "end": 174327, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174313 }, { "analysis_explanation": null, "end": 174400, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174395 }, { "analysis_explanation": null, "end": 174405, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174402 }, { "analysis_explanation": null, "end": 174556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174553 }, { "analysis_explanation": null, "end": 174621, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174615 }, { "analysis_explanation": null, "end": 174654, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174647 }, { "analysis_explanation": null, "end": 174696, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174690 }, { "analysis_explanation": null, "end": 174710, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174699 }, { "analysis_explanation": null, "end": 174799, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174792 }, { "analysis_explanation": null, "end": 174811, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174804 }, { "analysis_explanation": null, "end": 174853, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174835 }, { "analysis_explanation": null, "end": 174864, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174857 }, { "analysis_explanation": null, "end": 174881, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174874 }, { "analysis_explanation": null, "end": 174907, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174902 }, { "analysis_explanation": null, "end": 174996, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174988 }, { "analysis_explanation": null, "end": 175008, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175001 }, { "analysis_explanation": null, "end": 175023, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175017 }, { "analysis_explanation": null, "end": 175059, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175049 }, { "analysis_explanation": null, "end": 175071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175064 }, { "analysis_explanation": null, "end": 175090, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175084 }, { "analysis_explanation": null, "end": 175210, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175204 }, { "analysis_explanation": null, "end": 175218, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175214 }, { "analysis_explanation": null, "end": 175227, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175222 }, { "analysis_explanation": null, "end": 175305, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175288 }, { "analysis_explanation": null, "end": 175378, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175370 }, { "analysis_explanation": null, "end": 175459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175447 }, { "analysis_explanation": null, "end": 175470, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175463 }, { "analysis_explanation": null, "end": 175633, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175630 }, { "analysis_explanation": null, "end": 176348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176345 }, { "analysis_explanation": null, "end": 176770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176767 }, { "analysis_explanation": null, "end": 177565, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177562 }, { "analysis_explanation": null, "end": 177587, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177584 }, { "analysis_explanation": null, "end": 177824, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177821 }, { "analysis_explanation": null, "end": 178056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178053 }, { "analysis_explanation": null, "end": 178823, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178817 }, { "analysis_explanation": null, "end": 179399, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179387 }, { "analysis_explanation": null, "end": 179470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179467 }, { "analysis_explanation": null, "end": 179525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179509 }, { "analysis_explanation": null, "end": 179670, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179666 }, { "analysis_explanation": null, "end": 179697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179691 }, { "analysis_explanation": null, "end": 179708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179699 }, { "analysis_explanation": null, "end": 179725, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179713 }, { "analysis_explanation": null, "end": 179869, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179866 }, { "analysis_explanation": null, "end": 179962, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179959 }, { "analysis_explanation": null, "end": 180108, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180105 }, { "analysis_explanation": null, "end": 180332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180329 }, { "analysis_explanation": null, "end": 180421, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180418 }, { "analysis_explanation": null, "end": 180608, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180604 }, { "analysis_explanation": null, "end": 180865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180862 }, { "analysis_explanation": null, "end": 181094, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181091 }, { "analysis_explanation": null, "end": 181385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181382 }, { "analysis_explanation": null, "end": 181608, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181593 }, { "analysis_explanation": null, "end": 181732, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181729 }, { "analysis_explanation": null, "end": 181909, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181906 }, { "analysis_explanation": null, "end": 182057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182054 }, { "analysis_explanation": null, "end": 182199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182196 }, { "analysis_explanation": null, "end": 182753, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182750 }, { "analysis_explanation": null, "end": 183428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183425 }, { "analysis_explanation": null, "end": 184081, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184078 }, { "analysis_explanation": null, "end": 184193, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184186 }, { "analysis_explanation": null, "end": 184206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184203 }, { "analysis_explanation": null, "end": 184346, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184343 }, { "analysis_explanation": null, "end": 185110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185107 }, { "analysis_explanation": null, "end": 185387, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185379 }, { "analysis_explanation": null, "end": 185709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185706 }, { "analysis_explanation": null, "end": 186020, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186011 }, { "analysis_explanation": null, "end": 186204, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186201 }, { "analysis_explanation": null, "end": 186723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186720 }, { "analysis_explanation": null, "end": 186896, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186888 }, { "analysis_explanation": null, "end": 187044, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187032 }, { "analysis_explanation": null, "end": 187135, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187132 }, { "analysis_explanation": null, "end": 187247, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187244 }, { "analysis_explanation": null, "end": 187434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187431 }, { "analysis_explanation": null, "end": 187599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187596 }, { "analysis_explanation": null, "end": 187654, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187640 }, { "analysis_explanation": null, "end": 187795, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187787 }, { "analysis_explanation": null, "end": 187961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187958 }, { "analysis_explanation": null, "end": 188268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188265 }, { "analysis_explanation": null, "end": 188480, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188477 }, { "analysis_explanation": null, "end": 188701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188698 }, { "analysis_explanation": null, "end": 189063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189060 }, { "analysis_explanation": null, "end": 189126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189122 }, { "analysis_explanation": null, "end": 189314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189311 }, { "analysis_explanation": null, "end": 189658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189655 }, { "analysis_explanation": null, "end": 190166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190163 }, { "analysis_explanation": null, "end": 190902, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190899 }, { "analysis_explanation": null, "end": 191136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191133 }, { "analysis_explanation": null, "end": 192176, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192173 }, { "analysis_explanation": null, "end": 192486, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192475 }, { "analysis_explanation": null, "end": 193787, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193783 }, { "analysis_explanation": null, "end": 193917, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193910 }, { "analysis_explanation": null, "end": 193925, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193919 }, { "analysis_explanation": null, "end": 193952, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193945 }, { "analysis_explanation": null, "end": 193995, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193987 }, { "analysis_explanation": null, "end": 194025, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194013 }, { "analysis_explanation": null, "end": 194141, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194134 }, { "analysis_explanation": null, "end": 194183, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194175 }, { "analysis_explanation": null, "end": 194376, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194368 }, { "analysis_explanation": null, "end": 194400, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194394 }, { "analysis_explanation": null, "end": 194579, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194576 }, { "analysis_explanation": null, "end": 194752, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194747 }, { "analysis_explanation": null, "end": 194778, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194772 }, { "analysis_explanation": null, "end": 194848, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194833 }, { "analysis_explanation": null, "end": 194982, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194975 }, { "analysis_explanation": null, "end": 195033, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195016 }, { "analysis_explanation": null, "end": 195046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195043 }, { "analysis_explanation": null, "end": 195093, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195087 }, { "analysis_explanation": null, "end": 195207, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195202 }, { "analysis_explanation": null, "end": 195335, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195328 }, { "analysis_explanation": null, "end": 195360, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195344 }, { "analysis_explanation": null, "end": 195429, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195423 }, { "analysis_explanation": null, "end": 195442, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195436 }, { "analysis_explanation": null, "end": 195686, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195683 }, { "analysis_explanation": null, "end": 195825, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195813 }, { "analysis_explanation": null, "end": 196000, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195994 }, { "analysis_explanation": null, "end": 196159, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196148 }, { "analysis_explanation": null, "end": 196459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196455 }, { "analysis_explanation": null, "end": 196500, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196493 }, { "analysis_explanation": null, "end": 196607, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196597 }, { "analysis_explanation": null, "end": 196645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196632 }, { "analysis_explanation": null, "end": 196659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196655 }, { "analysis_explanation": null, "end": 196734, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196728 }, { "analysis_explanation": null, "end": 196776, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196773 }, { "analysis_explanation": null, "end": 196946, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196936 }, { "analysis_explanation": null, "end": 196970, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196962 }, { "analysis_explanation": null, "end": 197220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197217 }, { "analysis_explanation": null, "end": 197510, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197504 }, { "analysis_explanation": null, "end": 197593, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197583 }, { "analysis_explanation": null, "end": 197614, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197608 }, { "analysis_explanation": null, "end": 197701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197697 }, { "analysis_explanation": null, "end": 197832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197829 }, { "analysis_explanation": null, "end": 197959, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197952 }, { "analysis_explanation": null, "end": 198252, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198246 }, { "analysis_explanation": null, "end": 198344, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198341 }, { "analysis_explanation": null, "end": 198526, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198520 }, { "analysis_explanation": null, "end": 198637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198625 }, { "analysis_explanation": null, "end": 198886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198882 }, { "analysis_explanation": null, "end": 199047, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199040 }, { "analysis_explanation": null, "end": 199171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199168 }, { "analysis_explanation": null, "end": 199238, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199233 }, { "analysis_explanation": null, "end": 199576, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199568 }, { "analysis_explanation": null, "end": 199581, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199578 }, { "analysis_explanation": null, "end": 199751, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199742 }, { "analysis_explanation": null, "end": 200500, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200497 }, { "analysis_explanation": null, "end": 200521, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200502 }, { "analysis_explanation": null, "end": 200788, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200769 }, { "analysis_explanation": null, "end": 200794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200791 }, { "analysis_explanation": null, "end": 200895, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200881 }, { "analysis_explanation": null, "end": 200904, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200901 }, { "analysis_explanation": null, "end": 201033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201021 }, { "analysis_explanation": null, "end": 201399, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201396 }, { "analysis_explanation": null, "end": 201543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201540 }, { "analysis_explanation": null, "end": 201646, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201642 }, { "analysis_explanation": null, "end": 201697, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201675 }, { "analysis_explanation": null, "end": 201713, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201710 }, { "analysis_explanation": null, "end": 202293, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202280 }, { "analysis_explanation": null, "end": 202329, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202326 }, { "analysis_explanation": null, "end": 202535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202532 }, { "analysis_explanation": null, "end": 202659, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202651 }, { "analysis_explanation": null, "end": 202739, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202736 }, { "analysis_explanation": null, "end": 203138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203126 }, { "analysis_explanation": null, "end": 203219, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203211 }, { "analysis_explanation": null, "end": 203540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203536 }, { "analysis_explanation": null, "end": 203573, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203570 }, { "analysis_explanation": null, "end": 203978, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203973 }, { "analysis_explanation": null, "end": 204036, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204031 }, { "analysis_explanation": null, "end": 204128, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204111 }, { "analysis_explanation": null, "end": 204371, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204354 }, { "analysis_explanation": null, "end": 204490, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204468 }, { "analysis_explanation": null, "end": 204569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204561 }, { "analysis_explanation": null, "end": 204584, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204571 }, { "analysis_explanation": null, "end": 204665, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204657 }, { "analysis_explanation": null, "end": 204755, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204746 }, { "analysis_explanation": null, "end": 204771, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204764 }, { "analysis_explanation": null, "end": 204817, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204812 }, { "analysis_explanation": null, "end": 204853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204846 }, { "analysis_explanation": null, "end": 205072, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205064 }, { "analysis_explanation": null, "end": 205144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205141 }, { "analysis_explanation": null, "end": 205455, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205448 }, { "analysis_explanation": null, "end": 205708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205705 }, { "analysis_explanation": null, "end": 205938, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205934 }, { "analysis_explanation": null, "end": 206100, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206094 }, { "analysis_explanation": null, "end": 206533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206526 }, { "analysis_explanation": null, "end": 206570, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206563 }, { "analysis_explanation": null, "end": 206591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206588 }, { "analysis_explanation": null, "end": 206932, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206917 }, { "analysis_explanation": null, "end": 207092, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207072 }, { "analysis_explanation": null, "end": 207441, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207434 }, { "analysis_explanation": null, "end": 207565, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207559 }, { "analysis_explanation": null, "end": 207570, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207566 }, { "analysis_explanation": null, "end": 207999, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207992 }, { "analysis_explanation": null, "end": 208212, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208204 }, { "analysis_explanation": null, "end": 208520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208514 }, { "analysis_explanation": null, "end": 208570, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208563 }, { "analysis_explanation": null, "end": 208705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208686 }, { "analysis_explanation": null, "end": 208719, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208707 }, { "analysis_explanation": null, "end": 208783, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208780 }, { "analysis_explanation": null, "end": 208957, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208953 }, { "analysis_explanation": null, "end": 209171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209168 }, { "analysis_explanation": null, "end": 209215, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209211 }, { "analysis_explanation": null, "end": 209448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209445 }, { "analysis_explanation": null, "end": 209780, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209776 }, { "analysis_explanation": null, "end": 209985, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209981 }, { "analysis_explanation": null, "end": 209998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209990 }, { "analysis_explanation": null, "end": 210217, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210214 }, { "analysis_explanation": null, "end": 210274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210270 }, { "analysis_explanation": null, "end": 210465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210461 }, { "analysis_explanation": null, "end": 210478, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210470 }, { "analysis_explanation": null, "end": 210573, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210570 }, { "analysis_explanation": null, "end": 210814, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210798 }, { "analysis_explanation": null, "end": 210864, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210856 }, { "analysis_explanation": null, "end": 210872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210869 }, { "analysis_explanation": null, "end": 211295, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211292 }, { "analysis_explanation": null, "end": 211493, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211489 }, { "analysis_explanation": null, "end": 211599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211595 }, { "analysis_explanation": null, "end": 211713, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211710 }, { "analysis_explanation": null, "end": 211873, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211856 }, { "analysis_explanation": null, "end": 211966, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211960 }, { "analysis_explanation": null, "end": 212026, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212019 }, { "analysis_explanation": null, "end": 212196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212184 }, { "analysis_explanation": null, "end": 212214, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212201 }, { "analysis_explanation": null, "end": 212355, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212351 }, { "analysis_explanation": null, "end": 212412, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212409 }, { "analysis_explanation": null, "end": 212513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212509 }, { "analysis_explanation": null, "end": 212635, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212632 }, { "analysis_explanation": null, "end": 212734, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212730 }, { "analysis_explanation": null, "end": 213079, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213075 }, { "analysis_explanation": null, "end": 213092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213084 }, { "analysis_explanation": null, "end": 213144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213141 }, { "analysis_explanation": null, "end": 213211, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213208 }, { "analysis_explanation": null, "end": 213761, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213757 }, { "analysis_explanation": null, "end": 213774, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213766 }, { "analysis_explanation": null, "end": 213855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213852 }, { "analysis_explanation": null, "end": 213925, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213922 }, { "analysis_explanation": null, "end": 214029, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214026 }, { "analysis_explanation": null, "end": 214454, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214451 }, { "analysis_explanation": null, "end": 214466, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214458 }, { "analysis_explanation": null, "end": 214738, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214735 }, { "analysis_explanation": null, "end": 214842, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214839 }, { "analysis_explanation": null, "end": 215178, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215175 }, { "analysis_explanation": null, "end": 215281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215278 }, { "analysis_explanation": null, "end": 215347, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215343 }, { "analysis_explanation": null, "end": 215360, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215352 }, { "analysis_explanation": null, "end": 215666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215663 }, { "analysis_explanation": null, "end": 215682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215678 }, { "analysis_explanation": null, "end": 216264, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216261 }, { "analysis_explanation": null, "end": 216510, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216507 }, { "analysis_explanation": null, "end": 216743, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216739 }, { "analysis_explanation": null, "end": 216830, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216827 }, { "analysis_explanation": null, "end": 216981, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216978 }, { "analysis_explanation": null, "end": 217100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217097 }, { "analysis_explanation": null, "end": 217263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217260 }, { "analysis_explanation": null, "end": 217298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217295 }, { "analysis_explanation": null, "end": 217517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217514 }, { "analysis_explanation": null, "end": 217625, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217622 }, { "analysis_explanation": null, "end": 218000, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217997 }, { "analysis_explanation": null, "end": 218104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218101 }, { "analysis_explanation": null, "end": 218233, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218230 }, { "analysis_explanation": null, "end": 218466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218463 }, { "analysis_explanation": null, "end": 218556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218553 }, { "analysis_explanation": null, "end": 218580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218577 }, { "analysis_explanation": null, "end": 218896, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218893 }, { "analysis_explanation": null, "end": 219044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219041 }, { "analysis_explanation": null, "end": 219532, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219508 }, { "analysis_explanation": null, "end": 219819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219816 }, { "analysis_explanation": null, "end": 220296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220293 }, { "analysis_explanation": null, "end": 220396, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220384 }, { "analysis_explanation": null, "end": 220461, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220453 }, { "analysis_explanation": null, "end": 220500, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220496 }, { "analysis_explanation": null, "end": 220581, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220569 }, { "analysis_explanation": null, "end": 220605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220599 }, { "analysis_explanation": null, "end": 220898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220895 }, { "analysis_explanation": null, "end": 220993, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220990 }, { "analysis_explanation": null, "end": 221180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221176 }, { "analysis_explanation": null, "end": 221380, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221377 }, { "analysis_explanation": null, "end": 221755, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221751 }, { "analysis_explanation": null, "end": 221980, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221977 }, { "analysis_explanation": null, "end": 222035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222031 }, { "analysis_explanation": null, "end": 222083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222080 }, { "analysis_explanation": null, "end": 222173, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222170 }, { "analysis_explanation": null, "end": 222449, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222442 }, { "analysis_explanation": null, "end": 222535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222532 }, { "analysis_explanation": null, "end": 222719, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222715 }, { "analysis_explanation": null, "end": 222922, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222899 }, { "analysis_explanation": null, "end": 223666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223663 }, { "analysis_explanation": null, "end": 223912, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223908 }, { "analysis_explanation": null, "end": 224181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224178 }, { "analysis_explanation": null, "end": 224206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224203 }, { "analysis_explanation": null, "end": 224290, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224286 }, { "analysis_explanation": null, "end": 224379, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224376 }, { "analysis_explanation": null, "end": 224494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224480 }, { "analysis_explanation": null, "end": 224582, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224574 }, { "analysis_explanation": null, "end": 224642, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224639 }, { "analysis_explanation": null, "end": 224828, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224821 }, { "analysis_explanation": null, "end": 224865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224862 }, { "analysis_explanation": null, "end": 225166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225163 }, { "analysis_explanation": null, "end": 225268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225265 }, { "analysis_explanation": null, "end": 225423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225419 }, { "analysis_explanation": null, "end": 225478, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225475 }, { "analysis_explanation": null, "end": 225569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225566 }, { "analysis_explanation": null, "end": 226050, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226038 }, { "analysis_explanation": null, "end": 226111, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226108 }, { "analysis_explanation": null, "end": 226616, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226613 }, { "analysis_explanation": null, "end": 226738, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226725 }, { "analysis_explanation": null, "end": 226834, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226830 }, { "analysis_explanation": null, "end": 226853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226850 }, { "analysis_explanation": null, "end": 226959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226956 }, { "analysis_explanation": null, "end": 227247, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227244 }, { "analysis_explanation": null, "end": 227601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227589 }, { "analysis_explanation": null, "end": 227694, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227690 }, { "analysis_explanation": null, "end": 227804, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227801 }, { "analysis_explanation": null, "end": 228150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228147 }, { "analysis_explanation": null, "end": 228354, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228339 }, { "analysis_explanation": null, "end": 228392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228389 }, { "analysis_explanation": null, "end": 228525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228510 }, { "analysis_explanation": null, "end": 228552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228536 }, { "analysis_explanation": null, "end": 228593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228576 }, { "analysis_explanation": null, "end": 228616, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228608 }, { "analysis_explanation": null, "end": 229043, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229035 }, { "analysis_explanation": null, "end": 229319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229312 }, { "analysis_explanation": null, "end": 229382, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229374 }, { "analysis_explanation": null, "end": 229627, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229623 }, { "analysis_explanation": null, "end": 229648, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229645 }, { "analysis_explanation": null, "end": 229694, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229691 }, { "analysis_explanation": null, "end": 229762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229759 }, { "analysis_explanation": null, "end": 229942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229930 }, { "analysis_explanation": null, "end": 230268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230265 }, { "analysis_explanation": null, "end": 230289, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230285 }, { "analysis_explanation": null, "end": 230422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230419 }, { "analysis_explanation": null, "end": 230449, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230441 }, { "analysis_explanation": null, "end": 230508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230505 }, { "analysis_explanation": null, "end": 230883, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230880 }, { "analysis_explanation": null, "end": 231019, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231004 }, { "analysis_explanation": null, "end": 231033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231024 }, { "analysis_explanation": null, "end": 231064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231060 }, { "analysis_explanation": null, "end": 231095, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231090 }, { "analysis_explanation": null, "end": 231287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231284 }, { "analysis_explanation": null, "end": 231303, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231299 }, { "analysis_explanation": null, "end": 231311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231307 }, { "analysis_explanation": null, "end": 231505, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231502 }, { "analysis_explanation": null, "end": 231569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231552 }, { "analysis_explanation": null, "end": 231685, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231678 }, { "analysis_explanation": null, "end": 231784, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231780 }, { "analysis_explanation": null, "end": 231803, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231800 }, { "analysis_explanation": null, "end": 231967, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231960 }, { "analysis_explanation": null, "end": 232145, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232137 }, { "analysis_explanation": null, "end": 232228, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232225 }, { "analysis_explanation": null, "end": 232402, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232397 }, { "analysis_explanation": null, "end": 232930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232927 }, { "analysis_explanation": null, "end": 233289, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233286 }, { "analysis_explanation": null, "end": 233542, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233539 }, { "analysis_explanation": null, "end": 233638, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233635 }, { "analysis_explanation": null, "end": 233891, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233887 }, { "analysis_explanation": null, "end": 233943, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233936 }, { "analysis_explanation": null, "end": 234253, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234250 }, { "analysis_explanation": null, "end": 234469, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234466 }, { "analysis_explanation": null, "end": 234708, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234701 }, { "analysis_explanation": null, "end": 234794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234781 }, { "analysis_explanation": null, "end": 234882, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234856 }, { "analysis_explanation": null, "end": 235179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235176 }, { "analysis_explanation": null, "end": 235254, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235235 }, { "analysis_explanation": null, "end": 235366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235359 }, { "analysis_explanation": null, "end": 235528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235524 }, { "analysis_explanation": null, "end": 235569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235566 }, { "analysis_explanation": null, "end": 235837, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235833 }, { "analysis_explanation": null, "end": 236541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236538 }, { "analysis_explanation": null, "end": 236808, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236798 }, { "analysis_explanation": null, "end": 236887, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236876 }, { "analysis_explanation": null, "end": 236892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236889 }, { "analysis_explanation": null, "end": 237148, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237140 }, { "analysis_explanation": null, "end": 237196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237192 }, { "analysis_explanation": null, "end": 237657, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237651 }, { "analysis_explanation": null, "end": 237689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237679 }, { "analysis_explanation": null, "end": 237706, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237697 }, { "analysis_explanation": null, "end": 237905, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237896 }, { "analysis_explanation": null, "end": 237919, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237911 }, { "analysis_explanation": null, "end": 237968, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237954 }, { "analysis_explanation": null, "end": 238020, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238016 }, { "analysis_explanation": null, "end": 238090, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238081 }, { "analysis_explanation": null, "end": 238154, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238142 }, { "analysis_explanation": null, "end": 238175, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238169 }, { "analysis_explanation": null, "end": 238241, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238233 }, { "analysis_explanation": null, "end": 238370, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238364 }, { "analysis_explanation": null, "end": 238380, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238375 }, { "analysis_explanation": null, "end": 238391, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238382 }, { "analysis_explanation": null, "end": 238433, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238425 }, { "analysis_explanation": null, "end": 238478, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238472 }, { "analysis_explanation": null, "end": 238509, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238503 }, { "analysis_explanation": null, "end": 238567, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238561 }, { "analysis_explanation": null, "end": 238760, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238757 }, { "analysis_explanation": null, "end": 239205, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239192 }, { "analysis_explanation": null, "end": 239408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239402 }, { "analysis_explanation": null, "end": 239436, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239433 }, { "analysis_explanation": null, "end": 239499, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239496 }, { "analysis_explanation": null, "end": 239621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239604 }, { "analysis_explanation": null, "end": 239735, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239728 }, { "analysis_explanation": null, "end": 239902, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239898 }, { "analysis_explanation": null, "end": 240337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240325 }, { "analysis_explanation": null, "end": 240448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240444 }, { "analysis_explanation": null, "end": 240513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240499 }, { "analysis_explanation": null, "end": 240653, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240650 }, { "analysis_explanation": null, "end": 240918, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240915 }, { "analysis_explanation": null, "end": 241113, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241110 }, { "analysis_explanation": null, "end": 241128, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241122 }, { "analysis_explanation": null, "end": 241496, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241490 }, { "analysis_explanation": null, "end": 242182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242178 }, { "analysis_explanation": null, "end": 242364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242361 }, { "analysis_explanation": null, "end": 242523, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242517 }, { "analysis_explanation": null, "end": 242583, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242575 }, { "analysis_explanation": null, "end": 242605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242598 }, { "analysis_explanation": null, "end": 242756, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242752 }, { "analysis_explanation": null, "end": 243171, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243162 }, { "analysis_explanation": null, "end": 243177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243174 }, { "analysis_explanation": null, "end": 243458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243455 }, { "analysis_explanation": null, "end": 243701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243698 }, { "analysis_explanation": null, "end": 243758, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243752 }, { "analysis_explanation": null, "end": 243791, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243784 }, { "analysis_explanation": null, "end": 244010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244006 }, { "analysis_explanation": null, "end": 244032, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244025 }, { "analysis_explanation": null, "end": 244121, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244115 }, { "analysis_explanation": null, "end": 244706, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244701 }, { "analysis_explanation": null, "end": 244727, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244707 }, { "analysis_explanation": null, "end": 245244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245241 }, { "analysis_explanation": null, "end": 245692, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245687 }, { "analysis_explanation": null, "end": 245713, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245706 }, { "analysis_explanation": null, "end": 245722, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245719 }, { "analysis_explanation": null, "end": 245915, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245903 }, { "analysis_explanation": null, "end": 246264, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246249 }, { "analysis_explanation": null, "end": 246352, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246346 }, { "analysis_explanation": null, "end": 246403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246400 }, { "analysis_explanation": null, "end": 246458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246455 }, { "analysis_explanation": null, "end": 246681, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246672 }, { "analysis_explanation": null, "end": 246687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246683 }, { "analysis_explanation": null, "end": 246864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246860 }, { "analysis_explanation": null, "end": 246921, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246910 }, { "analysis_explanation": null, "end": 246994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246991 }, { "analysis_explanation": null, "end": 247189, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247185 }, { "analysis_explanation": null, "end": 247242, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247229 }, { "analysis_explanation": null, "end": 247259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247247 }, { "analysis_explanation": null, "end": 247290, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247268 }, { "analysis_explanation": null, "end": 247299, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247295 }, { "analysis_explanation": null, "end": 247350, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247336 }, { "analysis_explanation": null, "end": 247405, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247402 }, { "analysis_explanation": null, "end": 247607, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247600 }, { "analysis_explanation": null, "end": 247771, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247762 }, { "analysis_explanation": null, "end": 247780, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247773 }, { "analysis_explanation": null, "end": 247864, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247859 }, { "analysis_explanation": null, "end": 248076, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248072 }, { "analysis_explanation": null, "end": 248134, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248131 }, { "analysis_explanation": null, "end": 248356, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248340 }, { "analysis_explanation": null, "end": 248430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248427 }, { "analysis_explanation": null, "end": 248481, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248473 }, { "analysis_explanation": null, "end": 248568, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248565 }, { "analysis_explanation": null, "end": 248654, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248646 }, { "analysis_explanation": null, "end": 248694, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248690 }, { "analysis_explanation": null, "end": 248821, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248817 }, { "analysis_explanation": null, "end": 248850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248847 }, { "analysis_explanation": null, "end": 249031, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249017 }, { "analysis_explanation": null, "end": 249047, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249043 }, { "analysis_explanation": null, "end": 249064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249059 }, { "analysis_explanation": null, "end": 249069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249066 }, { "analysis_explanation": null, "end": 249124, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249118 }, { "analysis_explanation": null, "end": 249225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249221 }, { "analysis_explanation": null, "end": 249696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249679 }, { "analysis_explanation": null, "end": 249717, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249712 }, { "analysis_explanation": null, "end": 249760, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249754 }, { "analysis_explanation": null, "end": 249808, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249801 }, { "analysis_explanation": null, "end": 249823, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249812 }, { "analysis_explanation": null, "end": 249873, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249870 }, { "analysis_explanation": null, "end": 249922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249918 }, { "analysis_explanation": null, "end": 249994, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249989 }, { "analysis_explanation": null, "end": 250009, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250004 }, { "analysis_explanation": null, "end": 250089, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250082 }, { "analysis_explanation": null, "end": 250107, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250103 }, { "analysis_explanation": null, "end": 250138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250132 }, { "analysis_explanation": null, "end": 250177, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250168 }, { "analysis_explanation": null, "end": 250187, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250183 }, { "analysis_explanation": null, "end": 250249, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250239 }, { "analysis_explanation": null, "end": 250266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250254 }, { "analysis_explanation": null, "end": 250354, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250348 }, { "analysis_explanation": null, "end": 250487, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250481 }, { "analysis_explanation": null, "end": 250500, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250493 }, { "analysis_explanation": null, "end": 250543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250530 }, { "analysis_explanation": null, "end": 250555, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250549 }, { "analysis_explanation": null, "end": 250606, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250595 }, { "analysis_explanation": null, "end": 250701, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250695 }, { "analysis_explanation": null, "end": 250811, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250808 }, { "analysis_explanation": null, "end": 250839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250835 }, { "analysis_explanation": null, "end": 250991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250981 }, { "analysis_explanation": null, "end": 251119, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251097 }, { "analysis_explanation": null, "end": 251127, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251123 }, { "analysis_explanation": null, "end": 251201, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251196 }, { "analysis_explanation": null, "end": 251298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251294 }, { "analysis_explanation": null, "end": 251428, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251409 }, { "analysis_explanation": null, "end": 251480, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251477 }, { "analysis_explanation": null, "end": 251553, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251532 }, { "analysis_explanation": null, "end": 251591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251587 }, { "analysis_explanation": null, "end": 251718, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251715 }, { "analysis_explanation": null, "end": 251838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251831 }, { "analysis_explanation": null, "end": 252017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252014 }, { "analysis_explanation": null, "end": 252100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252093 }, { "analysis_explanation": null, "end": 252163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252160 }, { "analysis_explanation": null, "end": 252294, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252253 }, { "analysis_explanation": null, "end": 252323, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252303 }, { "analysis_explanation": null, "end": 252332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252325 }, { "analysis_explanation": null, "end": 252437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252433 }, { "analysis_explanation": null, "end": 252615, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252612 }, { "analysis_explanation": null, "end": 252686, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252682 }, { "analysis_explanation": null, "end": 252718, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252702 }, { "analysis_explanation": null, "end": 252846, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252826 }, { "analysis_explanation": null, "end": 253097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253090 }, { "analysis_explanation": null, "end": 253126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253113 }, { "analysis_explanation": null, "end": 253466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253463 }, { "analysis_explanation": null, "end": 253658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253654 }, { "analysis_explanation": null, "end": 253665, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253661 }, { "analysis_explanation": null, "end": 253782, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253769 }, { "analysis_explanation": null, "end": 253851, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253834 }, { "analysis_explanation": null, "end": 253854, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253852 }, { "analysis_explanation": null, "end": 254024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254020 }, { "analysis_explanation": null, "end": 254157, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254154 }, { "analysis_explanation": null, "end": 254390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254377 }, { "analysis_explanation": null, "end": 254449, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254446 }, { "analysis_explanation": null, "end": 254606, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254602 }, { "analysis_explanation": null, "end": 254791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254787 }, { "analysis_explanation": null, "end": 254868, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254865 }, { "analysis_explanation": null, "end": 255179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255174 }, { "analysis_explanation": null, "end": 255413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255405 }, { "analysis_explanation": null, "end": 255652, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255638 }, { "analysis_explanation": null, "end": 255665, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255662 }, { "analysis_explanation": null, "end": 255723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255716 }, { "analysis_explanation": null, "end": 255813, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255810 }, { "analysis_explanation": null, "end": 255900, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255891 }, { "analysis_explanation": null, "end": 256015, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256004 }, { "analysis_explanation": null, "end": 256053, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256049 }, { "analysis_explanation": null, "end": 256061, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256055 }, { "analysis_explanation": null, "end": 256068, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256063 }, { "analysis_explanation": null, "end": 256091, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256087 }, { "analysis_explanation": null, "end": 256102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256096 }, { "analysis_explanation": null, "end": 256111, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256104 }, { "analysis_explanation": null, "end": 256252, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256238 }, { "analysis_explanation": null, "end": 256316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256302 }, { "analysis_explanation": null, "end": 256530, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256523 }, { "analysis_explanation": null, "end": 256637, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256631 }, { "analysis_explanation": null, "end": 256705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256696 }, { "analysis_explanation": null, "end": 256873, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256863 }, { "analysis_explanation": null, "end": 256925, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256922 }, { "analysis_explanation": null, "end": 256947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256943 }, { "analysis_explanation": null, "end": 257095, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257086 }, { "analysis_explanation": null, "end": 257121, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257115 }, { "analysis_explanation": null, "end": 257160, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257151 }, { "analysis_explanation": null, "end": 257244, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257237 }, { "analysis_explanation": null, "end": 257334, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257320 }, { "analysis_explanation": null, "end": 257412, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257404 }, { "analysis_explanation": null, "end": 257433, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257426 }, { "analysis_explanation": null, "end": 257461, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257453 }, { "analysis_explanation": null, "end": 257470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257463 }, { "analysis_explanation": null, "end": 257489, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257486 }, { "analysis_explanation": null, "end": 257500, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257496 }, { "analysis_explanation": null, "end": 257635, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257625 }, { "analysis_explanation": null, "end": 257882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257879 }, { "analysis_explanation": null, "end": 258060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258052 }, { "analysis_explanation": null, "end": 258429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258425 }, { "analysis_explanation": null, "end": 258608, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258593 }, { "analysis_explanation": null, "end": 258797, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258780 }, { "analysis_explanation": null, "end": 258889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258881 }, { "analysis_explanation": null, "end": 258898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258891 }, { "analysis_explanation": null, "end": 258911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258903 }, { "analysis_explanation": null, "end": 259148, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259144 }, { "analysis_explanation": null, "end": 259281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259273 }, { "analysis_explanation": null, "end": 259485, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259473 }, { "analysis_explanation": null, "end": 259530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259516 }, { "analysis_explanation": null, "end": 259637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259634 }, { "analysis_explanation": null, "end": 259929, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259926 }, { "analysis_explanation": null, "end": 259940, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259936 }, { "analysis_explanation": null, "end": 260349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260336 }, { "analysis_explanation": null, "end": 260383, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260379 }, { "analysis_explanation": null, "end": 260512, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260505 }, { "analysis_explanation": null, "end": 260584, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260577 }, { "analysis_explanation": null, "end": 260685, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260670 }, { "analysis_explanation": null, "end": 260886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260879 }, { "analysis_explanation": null, "end": 261013, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261007 }, { "analysis_explanation": null, "end": 261063, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261048 }, { "analysis_explanation": null, "end": 261074, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261065 }, { "analysis_explanation": null, "end": 261085, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261076 }, { "analysis_explanation": null, "end": 261165, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261158 }, { "analysis_explanation": null, "end": 261437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261434 }, { "analysis_explanation": null, "end": 261560, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261553 }, { "analysis_explanation": null, "end": 261653, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261650 }, { "analysis_explanation": null, "end": 262098, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262091 }, { "analysis_explanation": null, "end": 262129, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262115 }, { "analysis_explanation": null, "end": 262177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262166 }, { "analysis_explanation": null, "end": 262300, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262293 }, { "analysis_explanation": null, "end": 262337, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262308 }, { "analysis_explanation": null, "end": 262348, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262342 }, { "analysis_explanation": null, "end": 262364, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262357 }, { "analysis_explanation": null, "end": 262385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262370 }, { "analysis_explanation": null, "end": 262491, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262484 }, { "analysis_explanation": null, "end": 262637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262634 }, { "analysis_explanation": null, "end": 262678, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262674 }, { "analysis_explanation": null, "end": 262735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262731 }, { "analysis_explanation": null, "end": 263000, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262990 }, { "analysis_explanation": null, "end": 263062, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263040 }, { "analysis_explanation": null, "end": 263137, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263128 }, { "analysis_explanation": null, "end": 263178, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263170 }, { "analysis_explanation": null, "end": 263292, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263280 }, { "analysis_explanation": null, "end": 263691, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263688 }, { "analysis_explanation": null, "end": 263769, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263764 }, { "analysis_explanation": null, "end": 263842, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263838 }, { "analysis_explanation": null, "end": 264029, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264024 }, { "analysis_explanation": null, "end": 264143, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264120 }, { "analysis_explanation": null, "end": 264151, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264147 }, { "analysis_explanation": null, "end": 264174, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264168 }, { "analysis_explanation": null, "end": 264192, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264185 }, { "analysis_explanation": null, "end": 264233, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264226 }, { "analysis_explanation": null, "end": 264326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264323 }, { "analysis_explanation": null, "end": 264367, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264363 }, { "analysis_explanation": null, "end": 264402, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264397 }, { "analysis_explanation": null, "end": 264711, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264704 }, { "analysis_explanation": null, "end": 264820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264817 }, { "analysis_explanation": null, "end": 264911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264899 }, { "analysis_explanation": null, "end": 264974, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264961 }, { "analysis_explanation": null, "end": 265088, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265083 }, { "analysis_explanation": null, "end": 265167, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265160 }, { "analysis_explanation": null, "end": 265193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265189 }, { "analysis_explanation": null, "end": 265282, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265272 }, { "analysis_explanation": null, "end": 265344, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265321 }, { "analysis_explanation": null, "end": 265557, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265551 }, { "analysis_explanation": null, "end": 265689, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265682 }, { "analysis_explanation": null, "end": 265705, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265697 }, { "analysis_explanation": null, "end": 266092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266085 }, { "analysis_explanation": null, "end": 266244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266230 }, { "analysis_explanation": null, "end": 266385, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266370 }, { "analysis_explanation": null, "end": 266397, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266391 }, { "analysis_explanation": null, "end": 266811, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266805 }, { "analysis_explanation": null, "end": 267078, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267069 }, { "analysis_explanation": null, "end": 267114, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267107 }, { "analysis_explanation": null, "end": 267139, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267130 }, { "analysis_explanation": null, "end": 267162, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267157 }, { "analysis_explanation": null, "end": 267171, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267167 }, { "analysis_explanation": null, "end": 267200, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267194 }, { "analysis_explanation": null, "end": 267211, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267206 }, { "analysis_explanation": null, "end": 267251, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267232 }, { "analysis_explanation": null, "end": 267291, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267275 }, { "analysis_explanation": null, "end": 267321, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267312 }, { "analysis_explanation": null, "end": 267330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267327 }, { "analysis_explanation": null, "end": 267341, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267337 }, { "analysis_explanation": null, "end": 267419, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267413 }, { "analysis_explanation": null, "end": 267555, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267548 }, { "analysis_explanation": null, "end": 267666, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267660 }, { "analysis_explanation": null, "end": 267706, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267688 }, { "analysis_explanation": null, "end": 267717, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267710 }, { "analysis_explanation": null, "end": 267768, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267761 }, { "analysis_explanation": null, "end": 267871, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267853 }, { "analysis_explanation": null, "end": 267910, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267891 }, { "analysis_explanation": null, "end": 268048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268037 }, { "analysis_explanation": null, "end": 268078, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268072 }, { "analysis_explanation": null, "end": 268243, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268232 }, { "analysis_explanation": null, "end": 268250, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268244 }, { "analysis_explanation": null, "end": 268256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268253 }, { "analysis_explanation": null, "end": 268315, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268311 }, { "analysis_explanation": null, "end": 268363, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268358 }, { "analysis_explanation": null, "end": 268397, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268394 }, { "analysis_explanation": null, "end": 268483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268479 }, { "analysis_explanation": null, "end": 268522, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268519 }, { "analysis_explanation": null, "end": 268647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268633 }, { "analysis_explanation": null, "end": 268700, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268686 }, { "analysis_explanation": null, "end": 268726, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268715 }, { "analysis_explanation": null, "end": 268857, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268843 }, { "analysis_explanation": null, "end": 268937, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268932 }, { "analysis_explanation": null, "end": 268952, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268941 }, { "analysis_explanation": null, "end": 268965, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268953 }, { "analysis_explanation": null, "end": 269076, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269057 }, { "analysis_explanation": null, "end": 269090, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269080 }, { "analysis_explanation": null, "end": 269109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269099 }, { "analysis_explanation": null, "end": 269160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269157 }, { "analysis_explanation": null, "end": 269182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269176 }, { "analysis_explanation": null, "end": 269203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269199 }, { "analysis_explanation": null, "end": 269256, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269246 }, { "analysis_explanation": null, "end": 269422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269417 }, { "analysis_explanation": null, "end": 269432, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269426 }, { "analysis_explanation": null, "end": 269491, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269484 }, { "analysis_explanation": null, "end": 269623, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269615 }, { "analysis_explanation": null, "end": 269694, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269684 }, { "analysis_explanation": null, "end": 269884, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269876 }, { "analysis_explanation": null, "end": 269936, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269933 }, { "analysis_explanation": null, "end": 270118, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270111 }, { "analysis_explanation": null, "end": 270140, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270133 }, { "analysis_explanation": null, "end": 270163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270159 }, { "analysis_explanation": null, "end": 270379, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270369 }, { "analysis_explanation": null, "end": 270394, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270388 }, { "analysis_explanation": null, "end": 270871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270868 }, { "analysis_explanation": null, "end": 271257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271247 }, { "analysis_explanation": null, "end": 271467, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271453 }, { "analysis_explanation": null, "end": 271525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271521 }, { "analysis_explanation": null, "end": 271665, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271655 }, { "analysis_explanation": null, "end": 271672, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271666 }, { "analysis_explanation": null, "end": 271783, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271774 }, { "analysis_explanation": null, "end": 271854, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271847 }, { "analysis_explanation": null, "end": 271902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271895 }, { "analysis_explanation": null, "end": 271924, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271921 }, { "analysis_explanation": null, "end": 272158, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272149 }, { "analysis_explanation": null, "end": 272208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272195 }, { "analysis_explanation": null, "end": 272215, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272211 }, { "analysis_explanation": null, "end": 272786, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272777 }, { "analysis_explanation": null, "end": 273032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273024 }, { "analysis_explanation": null, "end": 273061, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273043 }, { "analysis_explanation": null, "end": 273206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273199 }, { "analysis_explanation": null, "end": 273492, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273486 }, { "analysis_explanation": null, "end": 273618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273611 }, { "analysis_explanation": null, "end": 273639, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273632 }, { "analysis_explanation": null, "end": 274152, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274148 }, { "analysis_explanation": null, "end": 274214, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274207 }, { "analysis_explanation": null, "end": 274347, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274344 }, { "analysis_explanation": null, "end": 274374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274365 }, { "analysis_explanation": null, "end": 274391, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274384 }, { "analysis_explanation": null, "end": 274497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274493 }, { "analysis_explanation": null, "end": 274836, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274829 }, { "analysis_explanation": null, "end": 274873, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274853 }, { "analysis_explanation": null, "end": 274963, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274957 }, { "analysis_explanation": null, "end": 275034, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275025 }, { "analysis_explanation": null, "end": 275132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275126 }, { "analysis_explanation": null, "end": 275148, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275143 }, { "analysis_explanation": null, "end": 275250, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275225 }, { "analysis_explanation": null, "end": 275491, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275481 }, { "analysis_explanation": null, "end": 275562, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275555 }, { "analysis_explanation": null, "end": 275578, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275569 }, { "analysis_explanation": null, "end": 275612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275603 }, { "analysis_explanation": null, "end": 275722, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275708 }, { "analysis_explanation": null, "end": 275812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275807 }, { "analysis_explanation": null, "end": 275996, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275981 }, { "analysis_explanation": null, "end": 276015, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276011 }, { "analysis_explanation": null, "end": 276055, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276045 }, { "analysis_explanation": null, "end": 276092, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276085 }, { "analysis_explanation": null, "end": 276171, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276164 }, { "analysis_explanation": null, "end": 276267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276261 }, { "analysis_explanation": null, "end": 276413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276410 }, { "analysis_explanation": null, "end": 276453, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276449 }, { "analysis_explanation": null, "end": 276524, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276518 }, { "analysis_explanation": null, "end": 276615, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276608 }, { "analysis_explanation": null, "end": 277148, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277141 }, { "analysis_explanation": null, "end": 277286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277283 }, { "analysis_explanation": null, "end": 277409, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277405 }, { "analysis_explanation": null, "end": 277637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277634 }, { "analysis_explanation": null, "end": 277797, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277791 }, { "analysis_explanation": null, "end": 277999, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277995 }, { "analysis_explanation": null, "end": 278130, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278125 }, { "analysis_explanation": null, "end": 278457, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278453 }, { "analysis_explanation": null, "end": 278498, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278491 }, { "analysis_explanation": null, "end": 278632, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278629 }, { "analysis_explanation": null, "end": 278829, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278826 }, { "analysis_explanation": null, "end": 278864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278859 }, { "analysis_explanation": null, "end": 279011, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279008 }, { "analysis_explanation": null, "end": 279246, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279241 }, { "analysis_explanation": null, "end": 279372, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279368 }, { "analysis_explanation": null, "end": 279443, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279440 }, { "analysis_explanation": null, "end": 279483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279478 }, { "analysis_explanation": null, "end": 279520, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279515 }, { "analysis_explanation": null, "end": 279601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279597 }, { "analysis_explanation": null, "end": 279663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279658 }, { "analysis_explanation": null, "end": 279701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279697 }, { "analysis_explanation": null, "end": 279767, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279754 }, { "analysis_explanation": null, "end": 279848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279844 }, { "analysis_explanation": null, "end": 279882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279878 }, { "analysis_explanation": null, "end": 279901, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279896 }, { "analysis_explanation": null, "end": 279941, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279930 }, { "analysis_explanation": null, "end": 279946, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279943 }, { "analysis_explanation": null, "end": 279953, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279949 }, { "analysis_explanation": null, "end": 279988, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279977 }, { "analysis_explanation": null, "end": 279994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279990 }, { "analysis_explanation": null, "end": 280023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280020 }, { "analysis_explanation": null, "end": 280163, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280160 }, { "analysis_explanation": null, "end": 280360, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280351 }, { "analysis_explanation": null, "end": 280423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280415 }, { "analysis_explanation": null, "end": 280500, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280496 }, { "analysis_explanation": null, "end": 280881, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280873 }, { "analysis_explanation": null, "end": 281087, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281080 }, { "analysis_explanation": null, "end": 281248, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281237 }, { "analysis_explanation": null, "end": 281339, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281330 }, { "analysis_explanation": null, "end": 281404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281400 }, { "analysis_explanation": null, "end": 281427, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281423 }, { "analysis_explanation": null, "end": 281766, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281763 }, { "analysis_explanation": null, "end": 281800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281796 }, { "analysis_explanation": null, "end": 281832, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281822 }, { "analysis_explanation": null, "end": 281843, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281837 }, { "analysis_explanation": null, "end": 281857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281854 }, { "analysis_explanation": null, "end": 282030, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282027 }, { "analysis_explanation": null, "end": 282218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282214 }, { "analysis_explanation": null, "end": 282536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282532 }, { "analysis_explanation": null, "end": 282589, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282586 }, { "analysis_explanation": null, "end": 282695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282692 }, { "analysis_explanation": null, "end": 283119, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283112 }, { "analysis_explanation": null, "end": 283126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283121 }, { "analysis_explanation": null, "end": 283543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283540 }, { "analysis_explanation": null, "end": 284191, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284187 }, { "analysis_explanation": null, "end": 284586, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284582 }, { "analysis_explanation": null, "end": 284633, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284625 }, { "analysis_explanation": null, "end": 284656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284651 }, { "analysis_explanation": null, "end": 284765, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284760 }, { "analysis_explanation": null, "end": 284770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284767 }, { "analysis_explanation": null, "end": 284819, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284813 }, { "analysis_explanation": null, "end": 284891, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284885 }, { "analysis_explanation": null, "end": 284923, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284917 }, { "analysis_explanation": null, "end": 284950, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284939 }, { "analysis_explanation": null, "end": 285145, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285137 }, { "analysis_explanation": null, "end": 285157, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285147 }, { "analysis_explanation": null, "end": 285405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285399 }, { "analysis_explanation": null, "end": 285494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285490 }, { "analysis_explanation": null, "end": 285910, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285905 }, { "analysis_explanation": null, "end": 286038, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286019 }, { "analysis_explanation": null, "end": 286088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286075 }, { "analysis_explanation": null, "end": 286592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286588 }, { "analysis_explanation": null, "end": 286684, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286679 }, { "analysis_explanation": null, "end": 286846, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286843 }, { "analysis_explanation": null, "end": 286933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286928 }, { "analysis_explanation": null, "end": 286956, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286951 }, { "analysis_explanation": null, "end": 287400, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287387 }, { "analysis_explanation": null, "end": 287411, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287404 }, { "analysis_explanation": null, "end": 287435, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287430 }, { "analysis_explanation": null, "end": 287464, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287458 }, { "analysis_explanation": null, "end": 287508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287497 }, { "analysis_explanation": null, "end": 287637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287634 }, { "analysis_explanation": null, "end": 287698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287694 }, { "analysis_explanation": null, "end": 287710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287704 }, { "analysis_explanation": null, "end": 287744, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287738 }, { "analysis_explanation": null, "end": 287790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287782 }, { "analysis_explanation": null, "end": 287816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287810 }, { "analysis_explanation": null, "end": 287923, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287917 }, { "analysis_explanation": null, "end": 287989, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287983 }, { "analysis_explanation": null, "end": 288125, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288118 }, { "analysis_explanation": null, "end": 288201, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288193 }, { "analysis_explanation": null, "end": 288218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288213 }, { "analysis_explanation": null, "end": 288457, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288451 }, { "analysis_explanation": null, "end": 288540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288537 }, { "analysis_explanation": null, "end": 288559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288556 }, { "analysis_explanation": null, "end": 288634, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288628 }, { "analysis_explanation": null, "end": 288862, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288856 }, { "analysis_explanation": null, "end": 289029, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289026 }, { "analysis_explanation": null, "end": 289126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289123 }, { "analysis_explanation": null, "end": 289300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289288 }, { "analysis_explanation": null, "end": 289382, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289373 }, { "analysis_explanation": null, "end": 289617, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289603 }, { "analysis_explanation": null, "end": 289655, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289647 }, { "analysis_explanation": null, "end": 289680, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289672 }, { "analysis_explanation": null, "end": 289711, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289701 }, { "analysis_explanation": null, "end": 289819, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289811 }, { "analysis_explanation": null, "end": 289837, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289832 }, { "analysis_explanation": null, "end": 289922, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289916 }, { "analysis_explanation": null, "end": 290331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290316 }, { "analysis_explanation": null, "end": 290488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290467 }, { "analysis_explanation": null, "end": 290645, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290631 }, { "analysis_explanation": null, "end": 290666, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290650 }, { "analysis_explanation": null, "end": 290749, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290737 }, { "analysis_explanation": null, "end": 290835, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290823 }, { "analysis_explanation": null, "end": 291089, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291079 }, { "analysis_explanation": null, "end": 291448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291433 }, { "analysis_explanation": null, "end": 291534, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291524 }, { "analysis_explanation": null, "end": 292216, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292209 }, { "analysis_explanation": null, "end": 292311, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292304 }, { "analysis_explanation": null, "end": 292337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292330 }, { "analysis_explanation": null, "end": 292536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292529 }, { "analysis_explanation": null, "end": 292640, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292633 }, { "analysis_explanation": null, "end": 292951, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292944 }, { "analysis_explanation": null, "end": 293165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293158 }, { "analysis_explanation": null, "end": 293322, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293315 }, { "analysis_explanation": null, "end": 293368, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293355 }, { "analysis_explanation": null, "end": 293766, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293759 }, { "analysis_explanation": null, "end": 294119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294112 }, { "analysis_explanation": null, "end": 294719, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294715 }, { "analysis_explanation": null, "end": 294942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294931 }, { "analysis_explanation": null, "end": 294951, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294946 }, { "analysis_explanation": null, "end": 294964, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294955 }, { "analysis_explanation": null, "end": 294985, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294979 }, { "analysis_explanation": null, "end": 295030, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295022 }, { "analysis_explanation": null, "end": 295205, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295201 }, { "analysis_explanation": null, "end": 295261, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295247 }, { "analysis_explanation": null, "end": 295557, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295540 }, { "analysis_explanation": null, "end": 295642, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295635 }, { "analysis_explanation": null, "end": 296141, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296134 }, { "analysis_explanation": null, "end": 296531, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296521 }, { "analysis_explanation": null, "end": 296580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296573 }, { "analysis_explanation": null, "end": 296676, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296664 }, { "analysis_explanation": null, "end": 297037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297016 }, { "analysis_explanation": null, "end": 297078, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297073 }, { "analysis_explanation": null, "end": 297161, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297151 }, { "analysis_explanation": null, "end": 297207, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297197 }, { "analysis_explanation": null, "end": 297323, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297308 }, { "analysis_explanation": null, "end": 297672, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297662 }, { "analysis_explanation": null, "end": 297748, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297741 }, { "analysis_explanation": null, "end": 297978, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297971 }, { "analysis_explanation": null, "end": 298091, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298086 }, { "analysis_explanation": null, "end": 298155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298143 }, { "analysis_explanation": null, "end": 298185, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298175 }, { "analysis_explanation": null, "end": 298293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298279 }, { "analysis_explanation": null, "end": 298316, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298310 }, { "analysis_explanation": null, "end": 298366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298353 }, { "analysis_explanation": null, "end": 298643, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298634 }, { "analysis_explanation": null, "end": 298651, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298645 }, { "analysis_explanation": null, "end": 298675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298672 }, { "analysis_explanation": null, "end": 298780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298774 }, { "analysis_explanation": null, "end": 298858, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298852 }, { "analysis_explanation": null, "end": 298863, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298860 }, { "analysis_explanation": null, "end": 299131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299128 }, { "analysis_explanation": null, "end": 299280, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299271 }, { "analysis_explanation": null, "end": 299490, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299483 }, { "analysis_explanation": null, "end": 299620, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299615 }, { "analysis_explanation": null, "end": 299701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299694 }, { "analysis_explanation": null, "end": 299782, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299776 }, { "analysis_explanation": null, "end": 299878, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299864 }, { "analysis_explanation": null, "end": 300062, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300056 }, { "analysis_explanation": null, "end": 300108, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300105 }, { "analysis_explanation": null, "end": 300462, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300455 }, { "analysis_explanation": null, "end": 300479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300474 }, { "analysis_explanation": null, "end": 300527, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300524 }, { "analysis_explanation": null, "end": 300700, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300692 }, { "analysis_explanation": null, "end": 300745, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300742 }, { "analysis_explanation": null, "end": 300791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300784 }, { "analysis_explanation": null, "end": 301016, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301007 }, { "analysis_explanation": null, "end": 301166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301159 }, { "analysis_explanation": null, "end": 301189, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301183 }, { "analysis_explanation": null, "end": 301624, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301620 }, { "analysis_explanation": null, "end": 301747, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301733 }, { "analysis_explanation": null, "end": 301832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301823 }, { "analysis_explanation": null, "end": 302441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302434 }, { "analysis_explanation": null, "end": 302991, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302985 }, { "analysis_explanation": null, "end": 303085, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303079 }, { "analysis_explanation": null, "end": 303113, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303107 }, { "analysis_explanation": null, "end": 303234, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303219 }, { "analysis_explanation": null, "end": 303248, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303239 }, { "analysis_explanation": null, "end": 303254, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303251 }, { "analysis_explanation": null, "end": 303291, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303284 }, { "analysis_explanation": null, "end": 303312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303302 }, { "analysis_explanation": null, "end": 303368, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303360 }, { "analysis_explanation": null, "end": 303387, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303379 }, { "analysis_explanation": null, "end": 303419, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303416 }, { "analysis_explanation": null, "end": 303705, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303691 }, { "analysis_explanation": null, "end": 303752, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303744 }, { "analysis_explanation": null, "end": 303785, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303771 }, { "analysis_explanation": null, "end": 303974, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303949 }, { "analysis_explanation": null, "end": 304005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304002 }, { "analysis_explanation": null, "end": 304014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304010 }, { "analysis_explanation": null, "end": 304162, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304153 }, { "analysis_explanation": null, "end": 304241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304237 }, { "analysis_explanation": null, "end": 304500, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304492 }, { "analysis_explanation": null, "end": 304542, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304538 }, { "analysis_explanation": null, "end": 304680, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304665 }, { "analysis_explanation": null, "end": 304790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304786 }, { "analysis_explanation": null, "end": 305016, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305012 }, { "analysis_explanation": null, "end": 305143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305140 }, { "analysis_explanation": null, "end": 305198, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305194 }, { "analysis_explanation": null, "end": 305279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305276 }, { "analysis_explanation": null, "end": 305412, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305405 }, { "analysis_explanation": null, "end": 305442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305439 }, { "analysis_explanation": null, "end": 305477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305470 }, { "analysis_explanation": null, "end": 305520, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305508 }, { "analysis_explanation": null, "end": 305558, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305554 }, { "analysis_explanation": null, "end": 305577, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305574 }, { "analysis_explanation": null, "end": 305595, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305591 }, { "analysis_explanation": null, "end": 305628, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305616 }, { "analysis_explanation": null, "end": 305693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305690 }, { "analysis_explanation": null, "end": 305787, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305784 }, { "analysis_explanation": null, "end": 305840, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305830 }, { "analysis_explanation": null, "end": 305957, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305945 }, { "analysis_explanation": null, "end": 305971, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305967 }, { "analysis_explanation": null, "end": 306194, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306191 }, { "analysis_explanation": null, "end": 306239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306235 }, { "analysis_explanation": null, "end": 306336, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306332 }, { "analysis_explanation": null, "end": 306471, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306461 }, { "analysis_explanation": null, "end": 306482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306479 }, { "analysis_explanation": null, "end": 306577, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306573 }, { "analysis_explanation": null, "end": 306682, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306673 }, { "analysis_explanation": null, "end": 306712, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306709 }, { "analysis_explanation": null, "end": 306723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306719 }, { "analysis_explanation": null, "end": 306803, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306800 }, { "analysis_explanation": null, "end": 306958, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306950 }, { "analysis_explanation": null, "end": 306964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 306961 }, { "analysis_explanation": null, "end": 307011, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307007 }, { "analysis_explanation": null, "end": 307116, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307113 }, { "analysis_explanation": null, "end": 307156, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307152 }, { "analysis_explanation": null, "end": 307333, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307329 }, { "analysis_explanation": null, "end": 307550, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307547 }, { "analysis_explanation": null, "end": 307567, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307563 }, { "analysis_explanation": null, "end": 307633, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307629 }, { "analysis_explanation": null, "end": 307656, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307653 }, { "analysis_explanation": null, "end": 307927, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307924 }, { "analysis_explanation": null, "end": 307976, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307966 }, { "analysis_explanation": null, "end": 308081, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 308077 }, { "analysis_explanation": null, "end": 308143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 308139 }, { "analysis_explanation": null, "end": 308278, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 308266 }, { "analysis_explanation": null, "end": 308412, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 308409 }, { "analysis_explanation": null, "end": 308666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 308662 }, { "analysis_explanation": null, "end": 308894, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 308884 }, { "analysis_explanation": null, "end": 309064, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309053 }, { "analysis_explanation": null, "end": 309480, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309468 }, { "analysis_explanation": null, "end": 309486, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309483 }, { "analysis_explanation": null, "end": 309564, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309552 }, { "analysis_explanation": null, "end": 309571, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309567 }, { "analysis_explanation": null, "end": 309631, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309620 }, { "analysis_explanation": null, "end": 309792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309789 }, { "analysis_explanation": null, "end": 309850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309847 }, { "analysis_explanation": null, "end": 309896, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309886 }, { "analysis_explanation": null, "end": 309906, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309900 }, { "analysis_explanation": null, "end": 309948, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309942 }, { "analysis_explanation": null, "end": 309981, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 309975 }, { "analysis_explanation": null, "end": 310036, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 310033 }, { "analysis_explanation": null, "end": 310102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 310098 }, { "analysis_explanation": null, "end": 310917, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 310914 }, { "analysis_explanation": null, "end": 310988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 310982 }, { "analysis_explanation": null, "end": 311547, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311544 }, { "analysis_explanation": null, "end": 311714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311711 }, { "analysis_explanation": null, "end": 311737, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311730 }, { "analysis_explanation": null, "end": 311763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311759 }, { "analysis_explanation": null, "end": 311828, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311825 }, { "analysis_explanation": null, "end": 312245, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312241 }, { "analysis_explanation": null, "end": 312522, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312519 }, { "analysis_explanation": null, "end": 312569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312563 }, { "analysis_explanation": null, "end": 312584, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312570 }, { "analysis_explanation": null, "end": 312655, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312629 }, { "analysis_explanation": null, "end": 312679, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312673 }, { "analysis_explanation": null, "end": 312706, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312692 }, { "analysis_explanation": null, "end": 312748, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312742 }, { "analysis_explanation": null, "end": 312890, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312882 }, { "analysis_explanation": null, "end": 313008, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313002 }, { "analysis_explanation": null, "end": 313064, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313049 }, { "analysis_explanation": null, "end": 313230, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313213 }, { "analysis_explanation": null, "end": 313324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313318 }, { "analysis_explanation": null, "end": 313493, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313486 }, { "analysis_explanation": null, "end": 313622, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313602 }, { "analysis_explanation": null, "end": 313627, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313624 }, { "analysis_explanation": null, "end": 313636, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313632 }, { "analysis_explanation": null, "end": 313733, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313730 }, { "analysis_explanation": null, "end": 313873, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313870 }, { "analysis_explanation": null, "end": 314104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314101 }, { "analysis_explanation": null, "end": 314217, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314211 }, { "analysis_explanation": null, "end": 314385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314381 }, { "analysis_explanation": null, "end": 314540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314537 }, { "analysis_explanation": null, "end": 314944, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314935 }, { "analysis_explanation": null, "end": 314967, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314953 }, { "analysis_explanation": null, "end": 314983, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314976 }, { "analysis_explanation": null, "end": 314998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314984 }, { "analysis_explanation": null, "end": 315051, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 315043 }, { "analysis_explanation": null, "end": 315102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 315096 }, { "analysis_explanation": null, "end": 315126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 315103 }, { "analysis_explanation": null, "end": 315493, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 315490 }, { "analysis_explanation": null, "end": 315804, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 315801 }, { "analysis_explanation": null, "end": 316277, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 316274 }, { "analysis_explanation": null, "end": 316464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 316460 }, { "analysis_explanation": null, "end": 316482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 316469 }, { "analysis_explanation": null, "end": 316675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 316672 }, { "analysis_explanation": null, "end": 316709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 316706 }, { "analysis_explanation": null, "end": 316728, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 316721 }, { "analysis_explanation": null, "end": 316975, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 316972 }, { "analysis_explanation": null, "end": 317018, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317011 }, { "analysis_explanation": null, "end": 317105, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317098 }, { "analysis_explanation": null, "end": 317112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317108 }, { "analysis_explanation": null, "end": 317168, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317163 }, { "analysis_explanation": null, "end": 317187, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317180 }, { "analysis_explanation": null, "end": 317196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317191 }, { "analysis_explanation": null, "end": 317433, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317412 }, { "analysis_explanation": null, "end": 317640, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317628 }, { "analysis_explanation": null, "end": 317788, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317782 }, { "analysis_explanation": null, "end": 317948, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317942 }, { "analysis_explanation": null, "end": 318311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318307 }, { "analysis_explanation": null, "end": 318348, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318342 }, { "analysis_explanation": null, "end": 318450, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318439 }, { "analysis_explanation": null, "end": 318510, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318504 }, { "analysis_explanation": null, "end": 318552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318544 }, { "analysis_explanation": null, "end": 318771, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318767 }, { "analysis_explanation": null, "end": 319037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 319033 }, { "analysis_explanation": null, "end": 319092, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 319083 }, { "analysis_explanation": null, "end": 319155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 319152 }, { "analysis_explanation": null, "end": 319619, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 319615 }, { "analysis_explanation": null, "end": 319626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 319621 }, { "analysis_explanation": null, "end": 319673, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 319667 }, { "analysis_explanation": null, "end": 319733, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 319723 }, { "analysis_explanation": null, "end": 320068, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320060 }, { "analysis_explanation": null, "end": 320074, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320070 }, { "analysis_explanation": null, "end": 320100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320095 }, { "analysis_explanation": null, "end": 320162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320159 }, { "analysis_explanation": null, "end": 320212, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320205 }, { "analysis_explanation": null, "end": 320367, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320364 }, { "analysis_explanation": null, "end": 320496, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320491 }, { "analysis_explanation": null, "end": 320574, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320571 }, { "analysis_explanation": null, "end": 320621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320617 }, { "analysis_explanation": null, "end": 320846, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 320843 }, { "analysis_explanation": null, "end": 321256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 321251 }, { "analysis_explanation": null, "end": 321401, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 321396 }, { "analysis_explanation": null, "end": 321421, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 321418 }, { "analysis_explanation": null, "end": 321913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 321908 }, { "analysis_explanation": null, "end": 321939, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 321935 }, { "analysis_explanation": null, "end": 321987, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 321984 }, { "analysis_explanation": null, "end": 322127, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 322124 }, { "analysis_explanation": null, "end": 322151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 322148 }, { "analysis_explanation": null, "end": 322494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 322491 }, { "analysis_explanation": null, "end": 322507, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 322503 }, { "analysis_explanation": null, "end": 322739, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 322736 }, { "analysis_explanation": null, "end": 322778, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 322769 }, { "analysis_explanation": null, "end": 323118, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 323100 }, { "analysis_explanation": null, "end": 323267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 323264 }, { "analysis_explanation": null, "end": 323308, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 323304 }, { "analysis_explanation": null, "end": 323370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 323367 }, { "analysis_explanation": null, "end": 323469, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 323456 }, { "analysis_explanation": null, "end": 323641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 323638 }, { "analysis_explanation": null, "end": 324271, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 324268 }, { "analysis_explanation": null, "end": 324414, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 324401 }, { "analysis_explanation": null, "end": 324498, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 324484 }, { "analysis_explanation": null, "end": 324517, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 324509 }, { "analysis_explanation": null, "end": 324626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 324622 }, { "analysis_explanation": null, "end": 324697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 324694 }, { "analysis_explanation": null, "end": 325065, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 325062 }, { "analysis_explanation": null, "end": 325248, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 325230 }, { "analysis_explanation": null, "end": 325613, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 325608 }, { "analysis_explanation": null, "end": 325719, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 325716 }, { "analysis_explanation": null, "end": 325890, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 325886 }, { "analysis_explanation": null, "end": 325950, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 325943 }, { "analysis_explanation": null, "end": 326067, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 326062 }, { "analysis_explanation": null, "end": 326185, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 326182 }, { "analysis_explanation": null, "end": 326222, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 326218 }, { "analysis_explanation": null, "end": 326556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 326553 }, { "analysis_explanation": null, "end": 327055, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327051 }, { "analysis_explanation": null, "end": 327107, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327102 }, { "analysis_explanation": null, "end": 327288, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327285 }, { "analysis_explanation": null, "end": 327489, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327485 }, { "analysis_explanation": null, "end": 327568, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327552 }, { "analysis_explanation": null, "end": 327698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327695 }, { "analysis_explanation": null, "end": 327822, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327818 }, { "analysis_explanation": null, "end": 328075, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 328070 }, { "analysis_explanation": null, "end": 328138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 328135 }, { "analysis_explanation": null, "end": 328585, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 328582 }, { "analysis_explanation": null, "end": 328981, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 328976 }, { "analysis_explanation": null, "end": 329075, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 329072 }, { "analysis_explanation": null, "end": 329207, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 329203 }, { "analysis_explanation": null, "end": 329349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 329345 }, { "analysis_explanation": null, "end": 329652, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 329647 }, { "analysis_explanation": null, "end": 329765, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 329755 }, { "analysis_explanation": null, "end": 329778, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 329770 }, { "analysis_explanation": null, "end": 329844, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 329823 }, { "analysis_explanation": null, "end": 329918, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 329915 }, { "analysis_explanation": null, "end": 330289, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 330285 }, { "analysis_explanation": null, "end": 330568, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 330565 }, { "analysis_explanation": null, "end": 330864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 330860 }, { "analysis_explanation": null, "end": 330970, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 330964 }, { "analysis_explanation": null, "end": 331079, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 331076 }, { "analysis_explanation": null, "end": 331650, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 331645 }, { "analysis_explanation": null, "end": 331686, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 331683 }, { "analysis_explanation": null, "end": 332052, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 332048 }, { "analysis_explanation": null, "end": 332130, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 332127 }, { "analysis_explanation": null, "end": 332448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 332445 }, { "analysis_explanation": null, "end": 332665, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 332662 }, { "analysis_explanation": null, "end": 332789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 332785 }, { "analysis_explanation": null, "end": 332837, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 332834 }, { "analysis_explanation": null, "end": 333018, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 333007 }, { "analysis_explanation": null, "end": 333042, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 333038 }, { "analysis_explanation": null, "end": 333466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 333463 }, { "analysis_explanation": null, "end": 333861, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 333856 }, { "analysis_explanation": null, "end": 333927, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 333924 }, { "analysis_explanation": null, "end": 334099, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 334096 }, { "analysis_explanation": null, "end": 334216, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 334212 }, { "analysis_explanation": null, "end": 334479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 334476 }, { "analysis_explanation": null, "end": 334955, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 334942 }, { "analysis_explanation": null, "end": 335064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335059 }, { "analysis_explanation": null, "end": 335080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335075 }, { "analysis_explanation": null, "end": 335114, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335108 }, { "analysis_explanation": null, "end": 335121, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335117 }, { "analysis_explanation": null, "end": 335250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335247 }, { "analysis_explanation": null, "end": 335475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335472 }, { "analysis_explanation": null, "end": 335503, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335483 }, { "analysis_explanation": null, "end": 335522, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335517 }, { "analysis_explanation": null, "end": 335536, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335527 }, { "analysis_explanation": null, "end": 335580, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335566 }, { "analysis_explanation": null, "end": 335596, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335588 }, { "analysis_explanation": null, "end": 335609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335603 }, { "analysis_explanation": null, "end": 335630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335626 }, { "analysis_explanation": null, "end": 335856, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335852 }, { "analysis_explanation": null, "end": 335870, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335865 }, { "analysis_explanation": null, "end": 336096, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336093 }, { "analysis_explanation": null, "end": 336204, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336201 }, { "analysis_explanation": null, "end": 336320, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336317 }, { "analysis_explanation": null, "end": 336467, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336463 }, { "analysis_explanation": null, "end": 336545, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336539 }, { "analysis_explanation": null, "end": 336551, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336548 }, { "analysis_explanation": null, "end": 336559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336556 }, { "analysis_explanation": null, "end": 336637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336633 }, { "analysis_explanation": null, "end": 336902, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336899 }, { "analysis_explanation": null, "end": 337001, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336994 }, { "analysis_explanation": null, "end": 337106, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 337097 }, { "analysis_explanation": null, "end": 337170, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 337149 }, { "analysis_explanation": null, "end": 337177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 337172 }, { "analysis_explanation": null, "end": 337382, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 337375 }, { "analysis_explanation": null, "end": 337941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 337938 }, { "analysis_explanation": null, "end": 338093, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338089 }, { "analysis_explanation": null, "end": 338232, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338219 }, { "analysis_explanation": null, "end": 338313, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338304 }, { "analysis_explanation": null, "end": 338339, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338333 }, { "analysis_explanation": null, "end": 338382, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338370 }, { "analysis_explanation": null, "end": 338392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338388 }, { "analysis_explanation": null, "end": 338463, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338451 }, { "analysis_explanation": null, "end": 338509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338506 }, { "analysis_explanation": null, "end": 338591, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338575 }, { "analysis_explanation": null, "end": 338610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338597 }, { "analysis_explanation": null, "end": 338671, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338656 }, { "analysis_explanation": null, "end": 338806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338793 }, { "analysis_explanation": null, "end": 338880, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338876 }, { "analysis_explanation": null, "end": 339287, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 339273 }, { "analysis_explanation": null, "end": 339364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 339360 }, { "analysis_explanation": null, "end": 339546, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 339541 }, { "analysis_explanation": null, "end": 339775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 339771 }, { "analysis_explanation": null, "end": 339992, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 339984 }, { "analysis_explanation": null, "end": 340032, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340011 }, { "analysis_explanation": null, "end": 340052, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340048 }, { "analysis_explanation": null, "end": 340081, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340075 }, { "analysis_explanation": null, "end": 340110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340105 }, { "analysis_explanation": null, "end": 340142, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340135 }, { "analysis_explanation": null, "end": 340174, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340170 }, { "analysis_explanation": null, "end": 340319, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340312 }, { "analysis_explanation": null, "end": 340510, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340507 }, { "analysis_explanation": null, "end": 340692, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340684 }, { "analysis_explanation": null, "end": 340775, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340760 }, { "analysis_explanation": null, "end": 341038, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341028 }, { "analysis_explanation": null, "end": 341101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341098 }, { "analysis_explanation": null, "end": 341179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341175 }, { "analysis_explanation": null, "end": 341297, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341292 }, { "analysis_explanation": null, "end": 341414, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341411 }, { "analysis_explanation": null, "end": 341624, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341621 }, { "analysis_explanation": null, "end": 341664, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341657 }, { "analysis_explanation": null, "end": 341680, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341673 }, { "analysis_explanation": null, "end": 341836, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341833 }, { "analysis_explanation": null, "end": 341894, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341889 }, { "analysis_explanation": null, "end": 341995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341992 }, { "analysis_explanation": null, "end": 342087, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 342083 }, { "analysis_explanation": null, "end": 342179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 342176 }, { "analysis_explanation": null, "end": 342773, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 342770 }, { "analysis_explanation": null, "end": 342792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 342788 }, { "analysis_explanation": null, "end": 342916, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 342913 }, { "analysis_explanation": null, "end": 343132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 343129 }, { "analysis_explanation": null, "end": 343732, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 343729 }, { "analysis_explanation": null, "end": 343886, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 343879 }, { "analysis_explanation": null, "end": 344113, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 344110 }, { "analysis_explanation": null, "end": 344499, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 344496 }, { "analysis_explanation": null, "end": 344725, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 344722 }, { "analysis_explanation": null, "end": 345027, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 345016 }, { "analysis_explanation": null, "end": 345419, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 345416 }, { "analysis_explanation": null, "end": 345618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 345615 }, { "analysis_explanation": null, "end": 345676, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 345664 }, { "analysis_explanation": null, "end": 345906, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 345903 }, { "analysis_explanation": null, "end": 345948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 345944 }, { "analysis_explanation": null, "end": 346151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 346148 }, { "analysis_explanation": null, "end": 346160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 346156 }, { "analysis_explanation": null, "end": 346454, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 346435 }, { "analysis_explanation": null, "end": 346501, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 346498 }, { "analysis_explanation": null, "end": 346625, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 346612 }, { "analysis_explanation": null, "end": 346687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 346684 }, { "analysis_explanation": null, "end": 347145, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347142 }, { "analysis_explanation": null, "end": 347201, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347197 }, { "analysis_explanation": null, "end": 347627, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347624 }, { "analysis_explanation": null, "end": 347636, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347632 }, { "analysis_explanation": null, "end": 347688, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347675 }, { "analysis_explanation": null, "end": 347838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347835 }, { "analysis_explanation": null, "end": 348076, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 348072 }, { "analysis_explanation": null, "end": 348087, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 348084 }, { "analysis_explanation": null, "end": 348730, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 348727 }, { "analysis_explanation": null, "end": 348820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 348816 }, { "analysis_explanation": null, "end": 349088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 349085 }, { "analysis_explanation": null, "end": 349250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 349247 }, { "analysis_explanation": null, "end": 349331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 349327 }, { "analysis_explanation": null, "end": 350603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 350600 }, { "analysis_explanation": null, "end": 350671, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 350658 }, { "analysis_explanation": null, "end": 350817, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 350808 }, { "analysis_explanation": null, "end": 351019, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 351016 }, { "analysis_explanation": null, "end": 351052, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 351047 }, { "analysis_explanation": null, "end": 351755, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 351752 }, { "analysis_explanation": null, "end": 351764, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 351760 }, { "analysis_explanation": null, "end": 351813, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 351809 }, { "analysis_explanation": null, "end": 352208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 352205 }, { "analysis_explanation": null, "end": 352418, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 352415 }, { "analysis_explanation": null, "end": 352425, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 352422 }, { "analysis_explanation": null, "end": 353010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353007 }, { "analysis_explanation": null, "end": 353081, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353078 }, { "analysis_explanation": null, "end": 353369, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353366 }, { "analysis_explanation": null, "end": 353406, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353402 }, { "analysis_explanation": null, "end": 353467, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353463 }, { "analysis_explanation": null, "end": 353511, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353508 }, { "analysis_explanation": null, "end": 353640, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353637 }, { "analysis_explanation": null, "end": 353649, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353645 }, { "analysis_explanation": null, "end": 353867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353864 }, { "analysis_explanation": null, "end": 354179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354176 }, { "analysis_explanation": null, "end": 354323, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354319 }, { "analysis_explanation": null, "end": 354567, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354563 }, { "analysis_explanation": null, "end": 354617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354614 }, { "analysis_explanation": null, "end": 354952, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354945 }, { "analysis_explanation": null, "end": 354961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354958 }, { "analysis_explanation": null, "end": 354970, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354966 }, { "analysis_explanation": null, "end": 355408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 355405 }, { "analysis_explanation": null, "end": 355594, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 355591 }, { "analysis_explanation": null, "end": 355754, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 355750 }, { "analysis_explanation": null, "end": 355862, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 355855 }, { "analysis_explanation": null, "end": 355946, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 355943 }, { "analysis_explanation": null, "end": 356479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 356475 }, { "analysis_explanation": null, "end": 356547, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 356544 }, { "analysis_explanation": null, "end": 356766, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 356763 }, { "analysis_explanation": null, "end": 357331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 357328 }, { "analysis_explanation": null, "end": 357401, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 357397 }, { "analysis_explanation": null, "end": 357753, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 357750 }, { "analysis_explanation": null, "end": 357988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 357985 }, { "analysis_explanation": null, "end": 358061, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 358057 }, { "analysis_explanation": null, "end": 358286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 358282 }, { "analysis_explanation": null, "end": 358300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 358297 }, { "analysis_explanation": null, "end": 358572, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 358568 }, { "analysis_explanation": null, "end": 358888, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 358885 }, { "analysis_explanation": null, "end": 358994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 358987 }, { "analysis_explanation": null, "end": 359857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 359845 }, { "analysis_explanation": null, "end": 359975, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 359964 }, { "analysis_explanation": null, "end": 360086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 360083 }, { "analysis_explanation": null, "end": 360458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 360455 }, { "analysis_explanation": null, "end": 360781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 360770 }, { "analysis_explanation": null, "end": 360848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 360836 }, { "analysis_explanation": null, "end": 360861, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 360858 }, { "analysis_explanation": null, "end": 361032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 361029 }, { "analysis_explanation": null, "end": 361633, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 361630 }, { "analysis_explanation": null, "end": 361955, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 361942 }, { "analysis_explanation": null, "end": 362119, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 362113 }, { "analysis_explanation": null, "end": 362648, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 362640 }, { "analysis_explanation": null, "end": 362653, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 362650 }, { "analysis_explanation": null, "end": 363018, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 363012 }, { "analysis_explanation": null, "end": 363115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 363112 }, { "analysis_explanation": null, "end": 364056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 364053 }, { "analysis_explanation": null, "end": 364284, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 364280 }, { "analysis_explanation": null, "end": 364882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 364879 }, { "analysis_explanation": null, "end": 365160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 365157 }, { "analysis_explanation": null, "end": 365584, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 365581 }, { "analysis_explanation": null, "end": 365775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 365772 }, { "analysis_explanation": null, "end": 366703, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 366697 }, { "analysis_explanation": null, "end": 366857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 366854 }, { "analysis_explanation": null, "end": 367035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 367031 }, { "analysis_explanation": null, "end": 367586, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 367583 }, { "analysis_explanation": null, "end": 367853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 367849 }, { "analysis_explanation": null, "end": 368072, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 368069 }, { "analysis_explanation": null, "end": 368639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 368636 }, { "analysis_explanation": null, "end": 368894, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 368890 }, { "analysis_explanation": null, "end": 369709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 369706 }, { "analysis_explanation": null, "end": 369798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 369794 }, { "analysis_explanation": null, "end": 370438, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 370430 }, { "analysis_explanation": null, "end": 370840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 370836 }, { "analysis_explanation": null, "end": 370940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 370931 }, { "analysis_explanation": null, "end": 370960, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 370949 }, { "analysis_explanation": null, "end": 371081, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 371059 }, { "analysis_explanation": null, "end": 371464, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 371458 }, { "analysis_explanation": null, "end": 371875, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 371851 }, { "analysis_explanation": null, "end": 372032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 372029 }, { "analysis_explanation": null, "end": 372793, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 372790 }, { "analysis_explanation": null, "end": 373121, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 373117 }, { "analysis_explanation": null, "end": 373381, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 373378 }, { "analysis_explanation": null, "end": 373938, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 373935 }, { "analysis_explanation": null, "end": 373947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 373943 }, { "analysis_explanation": null, "end": 374415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 374412 }, { "analysis_explanation": null, "end": 374506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 374502 }, { "analysis_explanation": null, "end": 375042, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375039 }, { "analysis_explanation": null, "end": 375051, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375047 }, { "analysis_explanation": null, "end": 375605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375602 }, { "analysis_explanation": null, "end": 375637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375633 }, { "analysis_explanation": null, "end": 375651, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375648 }, { "analysis_explanation": null, "end": 375687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375684 }, { "analysis_explanation": null, "end": 375815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375811 }, { "analysis_explanation": null, "end": 376225, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 376216 }, { "analysis_explanation": null, "end": 376337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 376334 }, { "analysis_explanation": null, "end": 376465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 376462 }, { "analysis_explanation": null, "end": 377209, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 377206 }, { "analysis_explanation": null, "end": 377794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 377791 }, { "analysis_explanation": null, "end": 377840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 377836 }, { "analysis_explanation": null, "end": 378071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 378053 }, { "analysis_explanation": null, "end": 378319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 378316 }, { "analysis_explanation": null, "end": 378352, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 378348 }, { "analysis_explanation": null, "end": 378638, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 378635 }, { "analysis_explanation": null, "end": 378732, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 378728 }, { "analysis_explanation": null, "end": 379037, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 379032 }, { "analysis_explanation": null, "end": 379170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 379167 }, { "analysis_explanation": null, "end": 379459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 379456 }, { "analysis_explanation": null, "end": 379715, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 379711 }, { "analysis_explanation": null, "end": 379865, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 379858 }, { "analysis_explanation": null, "end": 380168, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380154 }, { "analysis_explanation": null, "end": 380254, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380245 }, { "analysis_explanation": null, "end": 380276, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380263 }, { "analysis_explanation": null, "end": 380301, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380293 }, { "analysis_explanation": null, "end": 380453, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380447 }, { "analysis_explanation": null, "end": 380548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380544 }, { "analysis_explanation": null, "end": 380679, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380675 }, { "analysis_explanation": null, "end": 380844, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380836 }, { "analysis_explanation": null, "end": 381576, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 381573 }, { "analysis_explanation": null, "end": 382005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 382002 }, { "analysis_explanation": null, "end": 382496, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 382489 }, { "analysis_explanation": null, "end": 382614, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 382608 }, { "analysis_explanation": null, "end": 382822, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 382819 }, { "analysis_explanation": null, "end": 382841, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 382837 }, { "analysis_explanation": null, "end": 383271, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 383262 }, { "analysis_explanation": null, "end": 383662, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 383655 }, { "analysis_explanation": null, "end": 384519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 384515 }, { "analysis_explanation": null, "end": 385028, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 385023 }, { "analysis_explanation": null, "end": 385082, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 385076 }, { "analysis_explanation": null, "end": 385124, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 385113 }, { "analysis_explanation": null, "end": 385241, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 385235 }, { "analysis_explanation": null, "end": 385613, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 385601 }, { "analysis_explanation": null, "end": 385637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 385634 }, { "analysis_explanation": null, "end": 386691, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 386687 }, { "analysis_explanation": null, "end": 386869, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 386851 }, { "analysis_explanation": null, "end": 386893, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 386886 }, { "analysis_explanation": null, "end": 386943, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 386939 }, { "analysis_explanation": null, "end": 386953, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 386945 }, { "analysis_explanation": null, "end": 387277, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 387268 }, { "analysis_explanation": null, "end": 387561, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 387552 }, { "analysis_explanation": null, "end": 387889, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 387875 }, { "analysis_explanation": null, "end": 387901, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 387893 }, { "analysis_explanation": null, "end": 388059, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 388040 }, { "analysis_explanation": null, "end": 388640, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 388637 }, { "analysis_explanation": null, "end": 388675, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 388669 }, { "analysis_explanation": null, "end": 389717, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 389714 }, { "analysis_explanation": null, "end": 389885, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 389881 }, { "analysis_explanation": null, "end": 390073, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 390068 }, { "analysis_explanation": null, "end": 390137, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 390133 }, { "analysis_explanation": null, "end": 390937, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 390924 }, { "analysis_explanation": null, "end": 391190, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 391186 }, { "analysis_explanation": null, "end": 391262, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 391254 }, { "analysis_explanation": null, "end": 391354, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 391350 }, { "analysis_explanation": null, "end": 391609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 391606 }, { "analysis_explanation": null, "end": 392036, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 392021 }, { "analysis_explanation": null, "end": 392048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 392044 }, { "analysis_explanation": null, "end": 392109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 392106 }, { "analysis_explanation": null, "end": 392338, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 392335 }, { "analysis_explanation": null, "end": 392679, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 392676 }, { "analysis_explanation": null, "end": 392824, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 392819 }, { "analysis_explanation": null, "end": 393028, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 393022 }, { "analysis_explanation": null, "end": 393118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 393114 }, { "analysis_explanation": null, "end": 393707, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 393704 }, { "analysis_explanation": null, "end": 394171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 394168 }, { "analysis_explanation": null, "end": 394254, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 394248 }, { "analysis_explanation": null, "end": 394319, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 394311 }, { "analysis_explanation": null, "end": 394377, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 394372 }, { "analysis_explanation": null, "end": 394442, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 394430 }, { "analysis_explanation": null, "end": 394845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 394842 }, { "analysis_explanation": null, "end": 395001, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 394996 }, { "analysis_explanation": null, "end": 395435, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 395430 }, { "analysis_explanation": null, "end": 395450, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 395446 }, { "analysis_explanation": null, "end": 395731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 395727 }, { "analysis_explanation": null, "end": 395812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 395799 }, { "analysis_explanation": null, "end": 395857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 395852 }, { "analysis_explanation": null, "end": 395898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 395895 }, { "analysis_explanation": null, "end": 396101, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396088 }, { "analysis_explanation": null, "end": 396144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396141 }, { "analysis_explanation": null, "end": 396353, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396350 }, { "analysis_explanation": null, "end": 396530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396526 }, { "analysis_explanation": null, "end": 396729, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396719 }, { "analysis_explanation": null, "end": 396739, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396733 }, { "analysis_explanation": null, "end": 396750, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396741 }, { "analysis_explanation": null, "end": 396791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396788 }, { "analysis_explanation": null, "end": 396861, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396856 }, { "analysis_explanation": null, "end": 396956, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396953 }, { "analysis_explanation": null, "end": 396979, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396965 }, { "analysis_explanation": null, "end": 396999, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396994 }, { "analysis_explanation": null, "end": 397154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 397151 }, { "analysis_explanation": null, "end": 397238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 397234 }, { "analysis_explanation": null, "end": 397320, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 397317 }, { "analysis_explanation": null, "end": 397887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 397884 }, { "analysis_explanation": null, "end": 398004, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 397999 }, { "analysis_explanation": null, "end": 398238, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 398233 }, { "analysis_explanation": null, "end": 398273, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 398270 }, { "analysis_explanation": null, "end": 398362, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 398355 }, { "analysis_explanation": null, "end": 398727, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 398722 }, { "analysis_explanation": null, "end": 399044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 399041 }, { "analysis_explanation": null, "end": 399295, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 399292 }, { "analysis_explanation": null, "end": 399530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 399525 }, { "analysis_explanation": null, "end": 399614, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 399609 }, { "analysis_explanation": null, "end": 399857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 399853 }, { "analysis_explanation": null, "end": 399925, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 399920 }, { "analysis_explanation": null, "end": 400166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 400163 }, { "analysis_explanation": null, "end": 400175, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 400171 }, { "analysis_explanation": null, "end": 400304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 400301 }, { "analysis_explanation": null, "end": 400378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 400374 }, { "analysis_explanation": null, "end": 400693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 400688 }, { "analysis_explanation": null, "end": 400911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 400905 }, { "analysis_explanation": null, "end": 401023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401020 }, { "analysis_explanation": null, "end": 401064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401059 }, { "analysis_explanation": null, "end": 401472, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401466 }, { "analysis_explanation": null, "end": 401511, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401504 }, { "analysis_explanation": null, "end": 401679, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401676 }, { "analysis_explanation": null, "end": 401703, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401699 }, { "analysis_explanation": null, "end": 401808, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401802 }, { "analysis_explanation": null, "end": 401855, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401848 }, { "analysis_explanation": null, "end": 401866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401859 }, { "analysis_explanation": null, "end": 401874, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401868 }, { "analysis_explanation": null, "end": 401890, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401886 }, { "analysis_explanation": null, "end": 401909, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401902 }, { "analysis_explanation": null, "end": 401933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401918 }, { "analysis_explanation": null, "end": 402004, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401987 }, { "analysis_explanation": null, "end": 402063, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402053 }, { "analysis_explanation": null, "end": 402070, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402065 }, { "analysis_explanation": null, "end": 402107, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402099 }, { "analysis_explanation": null, "end": 402135, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402124 }, { "analysis_explanation": null, "end": 402174, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402168 }, { "analysis_explanation": null, "end": 402214, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402208 }, { "analysis_explanation": null, "end": 402240, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402222 }, { "analysis_explanation": null, "end": 402265, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402251 }, { "analysis_explanation": null, "end": 402285, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402278 }, { "analysis_explanation": null, "end": 402355, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402349 }, { "analysis_explanation": null, "end": 402398, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402393 }, { "analysis_explanation": null, "end": 402460, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402454 }, { "analysis_explanation": null, "end": 402485, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402478 }, { "analysis_explanation": null, "end": 402525, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402510 }, { "analysis_explanation": null, "end": 402572, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402564 }, { "analysis_explanation": null, "end": 402578, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402575 }, { "analysis_explanation": null, "end": 402624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402620 }, { "analysis_explanation": null, "end": 402742, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402736 }, { "analysis_explanation": null, "end": 402883, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402879 }, { "analysis_explanation": null, "end": 402905, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402886 }, { "analysis_explanation": null, "end": 402976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402961 }, { "analysis_explanation": null, "end": 403024, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 403020 }, { "analysis_explanation": null, "end": 403052, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 403046 }, { "analysis_explanation": null, "end": 403303, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 403297 }, { "analysis_explanation": null, "end": 403326, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 403315 }, { "analysis_explanation": null, "end": 403359, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 403353 }, { "analysis_explanation": null, "end": 403846, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 403841 }, { "analysis_explanation": null, "end": 404036, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404029 }, { "analysis_explanation": null, "end": 404093, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404083 }, { "analysis_explanation": null, "end": 404198, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404192 }, { "analysis_explanation": null, "end": 404236, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404207 }, { "analysis_explanation": null, "end": 404246, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404240 }, { "analysis_explanation": null, "end": 404270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404265 }, { "analysis_explanation": null, "end": 404375, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404365 }, { "analysis_explanation": null, "end": 404437, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404429 }, { "analysis_explanation": null, "end": 404468, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404465 }, { "analysis_explanation": null, "end": 404725, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404723 }, { "analysis_explanation": null, "end": 404738, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404731 }, { "analysis_explanation": null, "end": 405232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405227 }, { "analysis_explanation": null, "end": 405311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405306 }, { "analysis_explanation": null, "end": 405326, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405316 }, { "analysis_explanation": null, "end": 405335, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405330 }, { "analysis_explanation": null, "end": 405351, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405341 }, { "analysis_explanation": null, "end": 405358, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405354 }, { "analysis_explanation": null, "end": 405383, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405380 }, { "analysis_explanation": null, "end": 405430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405427 }, { "analysis_explanation": null, "end": 405594, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405580 }, { "analysis_explanation": null, "end": 405676, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405669 }, { "analysis_explanation": null, "end": 405790, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405783 }, { "analysis_explanation": null, "end": 405853, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405846 }, { "analysis_explanation": null, "end": 405924, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405917 }, { "analysis_explanation": null, "end": 405957, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405954 }, { "analysis_explanation": null, "end": 406002, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 405978 }, { "analysis_explanation": null, "end": 406016, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406004 }, { "analysis_explanation": null, "end": 406147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406144 }, { "analysis_explanation": null, "end": 406220, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406209 }, { "analysis_explanation": null, "end": 406252, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406237 }, { "analysis_explanation": null, "end": 406284, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406278 }, { "analysis_explanation": null, "end": 406300, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406289 }, { "analysis_explanation": null, "end": 406344, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406337 }, { "analysis_explanation": null, "end": 406405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406399 }, { "analysis_explanation": null, "end": 406432, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406425 }, { "analysis_explanation": null, "end": 406477, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406468 }, { "analysis_explanation": null, "end": 406548, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406538 }, { "analysis_explanation": null, "end": 406597, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406590 }, { "analysis_explanation": null, "end": 406663, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406656 }, { "analysis_explanation": null, "end": 406670, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406666 }, { "analysis_explanation": null, "end": 406703, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406697 }, { "analysis_explanation": null, "end": 406757, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406736 }, { "analysis_explanation": null, "end": 406790, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406781 }, { "analysis_explanation": null, "end": 406979, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406972 }, { "analysis_explanation": null, "end": 407041, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407037 }, { "analysis_explanation": null, "end": 407246, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407236 }, { "analysis_explanation": null, "end": 407350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407336 }, { "analysis_explanation": null, "end": 407380, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407370 }, { "analysis_explanation": null, "end": 407407, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407401 }, { "analysis_explanation": null, "end": 407435, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407431 }, { "analysis_explanation": null, "end": 407630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407625 }, { "analysis_explanation": null, "end": 407675, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407667 }, { "analysis_explanation": null, "end": 407829, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407826 }, { "analysis_explanation": null, "end": 408564, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408561 }, { "analysis_explanation": null, "end": 408578, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408573 }, { "analysis_explanation": null, "end": 408645, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408638 }, { "analysis_explanation": null, "end": 408737, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408730 }, { "analysis_explanation": null, "end": 408751, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408744 }, { "analysis_explanation": null, "end": 408905, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408897 }, { "analysis_explanation": null, "end": 409073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409069 }, { "analysis_explanation": null, "end": 409151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409148 }, { "analysis_explanation": null, "end": 409224, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409221 }, { "analysis_explanation": null, "end": 409299, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409278 }, { "analysis_explanation": null, "end": 409306, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409301 }, { "analysis_explanation": null, "end": 409369, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409363 }, { "analysis_explanation": null, "end": 409947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409943 }, { "analysis_explanation": null, "end": 409976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409973 }, { "analysis_explanation": null, "end": 410348, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410341 }, { "analysis_explanation": null, "end": 410560, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410546 }, { "analysis_explanation": null, "end": 410571, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410564 }, { "analysis_explanation": null, "end": 410623, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410609 }, { "analysis_explanation": null, "end": 410763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410758 }, { "analysis_explanation": null, "end": 411181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 411178 }, { "analysis_explanation": null, "end": 411559, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 411552 }, { "analysis_explanation": null, "end": 411719, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 411712 }, { "analysis_explanation": null, "end": 411752, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 411747 }, { "analysis_explanation": null, "end": 412050, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412046 }, { "analysis_explanation": null, "end": 412144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412141 }, { "analysis_explanation": null, "end": 412345, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412340 }, { "analysis_explanation": null, "end": 412399, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412396 }, { "analysis_explanation": null, "end": 412558, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412554 }, { "analysis_explanation": null, "end": 412787, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412784 }, { "analysis_explanation": null, "end": 412864, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412858 }, { "analysis_explanation": null, "end": 412870, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412867 }, { "analysis_explanation": null, "end": 412958, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412940 }, { "analysis_explanation": null, "end": 413096, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413081 }, { "analysis_explanation": null, "end": 413260, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413254 }, { "analysis_explanation": null, "end": 413267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413263 }, { "analysis_explanation": null, "end": 413319, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413313 }, { "analysis_explanation": null, "end": 413360, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413351 }, { "analysis_explanation": null, "end": 413430, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413424 }, { "analysis_explanation": null, "end": 413539, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413536 }, { "analysis_explanation": null, "end": 413576, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413567 }, { "analysis_explanation": null, "end": 413681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413677 }, { "analysis_explanation": null, "end": 414635, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 414629 }, { "analysis_explanation": null, "end": 414645, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 414638 }, { "analysis_explanation": null, "end": 414977, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 414970 }, { "analysis_explanation": null, "end": 415012, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 415009 }, { "analysis_explanation": null, "end": 415232, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 415227 }, { "analysis_explanation": null, "end": 415625, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 415609 }, { "analysis_explanation": null, "end": 415699, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 415696 }, { "analysis_explanation": null, "end": 415944, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 415941 }, { "analysis_explanation": null, "end": 416022, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 416019 }, { "analysis_explanation": null, "end": 416595, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 416590 }, { "analysis_explanation": null, "end": 417016, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 417013 }, { "analysis_explanation": null, "end": 417063, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 417057 }, { "analysis_explanation": null, "end": 417113, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 417103 }, { "analysis_explanation": null, "end": 417275, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 417272 }, { "analysis_explanation": null, "end": 417762, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 417755 }, { "analysis_explanation": null, "end": 417847, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 417843 }, { "analysis_explanation": null, "end": 418182, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 418178 }, { "analysis_explanation": null, "end": 418501, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 418498 }, { "analysis_explanation": null, "end": 418828, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 418820 }, { "analysis_explanation": null, "end": 418938, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 418932 }, { "analysis_explanation": null, "end": 418975, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 418957 }, { "analysis_explanation": null, "end": 419150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 419135 }, { "analysis_explanation": null, "end": 419169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 419155 }, { "analysis_explanation": null, "end": 419320, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 419313 }, { "analysis_explanation": null, "end": 419533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 419512 }, { "analysis_explanation": null, "end": 420131, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 420125 }, { "analysis_explanation": null, "end": 420706, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 420695 }, { "analysis_explanation": null, "end": 421254, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 421245 }, { "analysis_explanation": null, "end": 421332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 421323 }, { "analysis_explanation": null, "end": 421520, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 421504 }, { "analysis_explanation": null, "end": 421741, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 421735 }, { "analysis_explanation": null, "end": 421825, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 421818 }, { "analysis_explanation": null, "end": 422104, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422099 }, { "analysis_explanation": null, "end": 422481, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422476 }, { "analysis_explanation": null, "end": 422617, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422610 }, { "analysis_explanation": null, "end": 422812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422807 }, { "analysis_explanation": null, "end": 422895, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422889 }, { "analysis_explanation": null, "end": 422908, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422897 }, { "analysis_explanation": null, "end": 423032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423027 }, { "analysis_explanation": null, "end": 423052, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423043 }, { "analysis_explanation": null, "end": 423122, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423117 }, { "analysis_explanation": null, "end": 423279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423274 }, { "analysis_explanation": null, "end": 423312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423301 }, { "analysis_explanation": null, "end": 423372, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423366 }, { "analysis_explanation": null, "end": 423554, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423549 }, { "analysis_explanation": null, "end": 423616, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423611 }, { "analysis_explanation": null, "end": 423780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423775 }, { "analysis_explanation": null, "end": 423936, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423931 }, { "analysis_explanation": null, "end": 424017, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424010 }, { "analysis_explanation": null, "end": 424039, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424034 }, { "analysis_explanation": null, "end": 424161, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424148 }, { "analysis_explanation": null, "end": 424261, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424256 }, { "analysis_explanation": null, "end": 424433, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424430 }, { "analysis_explanation": null, "end": 424441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424436 }, { "analysis_explanation": null, "end": 424619, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424610 }, { "analysis_explanation": null, "end": 424715, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424710 }, { "analysis_explanation": null, "end": 424782, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424777 }, { "analysis_explanation": null, "end": 424883, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424878 }, { "analysis_explanation": null, "end": 425136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 425131 }, { "analysis_explanation": null, "end": 425398, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 425393 }, { "analysis_explanation": null, "end": 425480, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 425475 }, { "analysis_explanation": null, "end": 425820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 425817 }, { "analysis_explanation": null, "end": 425920, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 425914 }, { "analysis_explanation": null, "end": 425968, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 425958 }, { "analysis_explanation": null, "end": 426168, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 426152 }, { "analysis_explanation": null, "end": 426375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 426369 }, { "analysis_explanation": null, "end": 426699, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 426694 }, { "analysis_explanation": null, "end": 426850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 426847 }, { "analysis_explanation": null, "end": 427202, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 427199 }, { "analysis_explanation": null, "end": 427321, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 427316 }, { "analysis_explanation": null, "end": 427440, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 427433 }, { "analysis_explanation": null, "end": 427456, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 427448 }, { "analysis_explanation": null, "end": 427857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 427848 }, { "analysis_explanation": null, "end": 427880, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 427869 }, { "analysis_explanation": null, "end": 428062, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 428053 }, { "analysis_explanation": null, "end": 428252, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 428247 }, { "analysis_explanation": null, "end": 428288, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 428275 }, { "analysis_explanation": null, "end": 428316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 428311 }, { "analysis_explanation": null, "end": 428756, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 428751 }, { "analysis_explanation": null, "end": 428978, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 428975 }, { "analysis_explanation": null, "end": 429117, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429112 }, { "analysis_explanation": null, "end": 429140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429131 }, { "analysis_explanation": null, "end": 429590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429585 }, { "analysis_explanation": null, "end": 429629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429617 }, { "analysis_explanation": null, "end": 429740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429725 }, { "analysis_explanation": null, "end": 430040, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 430033 }, { "analysis_explanation": null, "end": 430251, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 430242 }, { "analysis_explanation": null, "end": 430259, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 430252 }, { "analysis_explanation": null, "end": 430830, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 430824 }, { "analysis_explanation": null, "end": 431038, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431033 }, { "analysis_explanation": null, "end": 431136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431133 }, { "analysis_explanation": null, "end": 431147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431143 }, { "analysis_explanation": null, "end": 431153, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431149 }, { "analysis_explanation": null, "end": 431167, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431159 }, { "analysis_explanation": null, "end": 431277, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431271 }, { "analysis_explanation": null, "end": 431311, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431305 }, { "analysis_explanation": null, "end": 431431, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431425 }, { "analysis_explanation": null, "end": 431441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431434 }, { "analysis_explanation": null, "end": 431522, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431516 }, { "analysis_explanation": null, "end": 431537, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431530 }, { "analysis_explanation": null, "end": 431605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431598 }, { "analysis_explanation": null, "end": 431983, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431978 }, { "analysis_explanation": null, "end": 431998, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431988 }, { "analysis_explanation": null, "end": 432112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 432105 }, { "analysis_explanation": null, "end": 432447, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 432441 }, { "analysis_explanation": null, "end": 432783, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 432776 }, { "analysis_explanation": null, "end": 433010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 433003 }, { "analysis_explanation": null, "end": 433110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 433103 }, { "analysis_explanation": null, "end": 433138, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 433129 }, { "analysis_explanation": null, "end": 433917, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 433899 }, { "analysis_explanation": null, "end": 433970, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 433964 }, { "analysis_explanation": null, "end": 433978, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 433972 }, { "analysis_explanation": null, "end": 434230, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 434226 }, { "analysis_explanation": null, "end": 434630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 434627 }, { "analysis_explanation": null, "end": 434730, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 434726 }, { "analysis_explanation": null, "end": 434768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 434764 }, { "analysis_explanation": null, "end": 434925, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 434921 }, { "analysis_explanation": null, "end": 435092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435076 }, { "analysis_explanation": null, "end": 435123, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435119 }, { "analysis_explanation": null, "end": 435342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435339 }, { "analysis_explanation": null, "end": 435398, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435394 }, { "analysis_explanation": null, "end": 435540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435537 }, { "analysis_explanation": null, "end": 435886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435882 }, { "analysis_explanation": null, "end": 436314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436310 }, { "analysis_explanation": null, "end": 436484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436480 }, { "analysis_explanation": null, "end": 436518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436515 }, { "analysis_explanation": null, "end": 436775, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436769 }, { "analysis_explanation": null, "end": 436852, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436843 }, { "analysis_explanation": null, "end": 436895, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436889 }, { "analysis_explanation": null, "end": 436928, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436919 }, { "analysis_explanation": null, "end": 437024, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437015 }, { "analysis_explanation": null, "end": 437030, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437026 }, { "analysis_explanation": null, "end": 437080, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437065 }, { "analysis_explanation": null, "end": 437089, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437081 }, { "analysis_explanation": null, "end": 437118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437115 }, { "analysis_explanation": null, "end": 437370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437366 }, { "analysis_explanation": null, "end": 437518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437515 }, { "analysis_explanation": null, "end": 437702, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437696 }, { "analysis_explanation": null, "end": 437945, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437942 }, { "analysis_explanation": null, "end": 438022, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438016 }, { "analysis_explanation": null, "end": 438448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438440 }, { "analysis_explanation": null, "end": 438630, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438624 }, { "analysis_explanation": null, "end": 438655, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438646 }, { "analysis_explanation": null, "end": 438723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438718 }, { "analysis_explanation": null, "end": 438795, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438787 }, { "analysis_explanation": null, "end": 438878, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438871 }, { "analysis_explanation": null, "end": 439029, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439023 }, { "analysis_explanation": null, "end": 439063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439060 }, { "analysis_explanation": null, "end": 439072, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439068 }, { "analysis_explanation": null, "end": 439276, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439269 }, { "analysis_explanation": null, "end": 439461, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439452 }, { "analysis_explanation": null, "end": 439487, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439462 }, { "analysis_explanation": null, "end": 439532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439519 }, { "analysis_explanation": null, "end": 439848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439845 }, { "analysis_explanation": null, "end": 439857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439853 }, { "analysis_explanation": null, "end": 439932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439929 }, { "analysis_explanation": null, "end": 440014, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440008 }, { "analysis_explanation": null, "end": 440232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440229 }, { "analysis_explanation": null, "end": 440274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440271 }, { "analysis_explanation": null, "end": 440340, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440336 }, { "analysis_explanation": null, "end": 440432, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440428 }, { "analysis_explanation": null, "end": 440481, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440471 }, { "analysis_explanation": null, "end": 440678, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440673 }, { "analysis_explanation": null, "end": 440695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440692 }, { "analysis_explanation": null, "end": 440819, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440810 }, { "analysis_explanation": null, "end": 440868, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440862 }, { "analysis_explanation": null, "end": 440984, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440980 }, { "analysis_explanation": null, "end": 441111, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 441105 }, { "analysis_explanation": null, "end": 441248, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 441242 }, { "analysis_explanation": null, "end": 441514, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 441503 }, { "analysis_explanation": null, "end": 441848, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 441834 }, { "analysis_explanation": null, "end": 441855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 441851 }, { "analysis_explanation": null, "end": 442046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442043 }, { "analysis_explanation": null, "end": 442179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442176 }, { "analysis_explanation": null, "end": 442429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442410 }, { "analysis_explanation": null, "end": 442548, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442539 }, { "analysis_explanation": null, "end": 442609, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442602 }, { "analysis_explanation": null, "end": 442646, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442639 }, { "analysis_explanation": null, "end": 442758, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442755 }, { "analysis_explanation": null, "end": 442792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442789 }, { "analysis_explanation": null, "end": 442966, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442962 }, { "analysis_explanation": null, "end": 443023, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443017 }, { "analysis_explanation": null, "end": 443192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443189 }, { "analysis_explanation": null, "end": 443315, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443303 }, { "analysis_explanation": null, "end": 443411, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443408 }, { "analysis_explanation": null, "end": 443448, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443435 }, { "analysis_explanation": null, "end": 443462, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443450 }, { "analysis_explanation": null, "end": 443483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443480 }, { "analysis_explanation": null, "end": 443492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443488 }, { "analysis_explanation": null, "end": 443577, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443573 }, { "analysis_explanation": null, "end": 443604, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443579 }, { "analysis_explanation": null, "end": 443696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443687 }, { "analysis_explanation": null, "end": 443938, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443934 }, { "analysis_explanation": null, "end": 444115, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 444107 }, { "analysis_explanation": null, "end": 444156, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 444137 }, { "analysis_explanation": null, "end": 444337, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 444330 }, { "analysis_explanation": null, "end": 444544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 444541 }, { "analysis_explanation": null, "end": 444897, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 444890 }, { "analysis_explanation": null, "end": 445166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445162 }, { "analysis_explanation": null, "end": 445511, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445508 }, { "analysis_explanation": null, "end": 445520, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445516 }, { "analysis_explanation": null, "end": 445681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445678 }, { "analysis_explanation": null, "end": 445751, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445747 }, { "analysis_explanation": null, "end": 445826, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445819 }, { "analysis_explanation": null, "end": 445885, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445878 }, { "analysis_explanation": null, "end": 445918, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445914 }, { "analysis_explanation": null, "end": 445939, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 445935 }, { "analysis_explanation": null, "end": 446174, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446166 }, { "analysis_explanation": null, "end": 446248, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446238 }, { "analysis_explanation": null, "end": 446254, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446251 }, { "analysis_explanation": null, "end": 446298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446294 }, { "analysis_explanation": null, "end": 446526, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446523 }, { "analysis_explanation": null, "end": 446682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446670 }, { "analysis_explanation": null, "end": 446806, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446785 }, { "analysis_explanation": null, "end": 446951, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 446947 }, { "analysis_explanation": null, "end": 447484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 447481 }, { "analysis_explanation": null, "end": 447623, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 447620 }, { "analysis_explanation": null, "end": 447789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 447785 }, { "analysis_explanation": null, "end": 447913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 447910 }, { "analysis_explanation": null, "end": 448096, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 448089 }, { "analysis_explanation": null, "end": 448249, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 448245 }, { "analysis_explanation": null, "end": 448433, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 448427 }, { "analysis_explanation": null, "end": 448537, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 448532 }, { "analysis_explanation": null, "end": 448553, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 448546 }, { "analysis_explanation": null, "end": 448621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 448618 }, { "analysis_explanation": null, "end": 448668, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 448662 }, { "analysis_explanation": null, "end": 448896, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 448893 }, { "analysis_explanation": null, "end": 449021, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449017 }, { "analysis_explanation": null, "end": 449691, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449685 }, { "analysis_explanation": null, "end": 449762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449759 }, { "analysis_explanation": null, "end": 449856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449852 }, { "analysis_explanation": null, "end": 450049, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450046 }, { "analysis_explanation": null, "end": 450116, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450112 }, { "analysis_explanation": null, "end": 450285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450282 }, { "analysis_explanation": null, "end": 450364, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450358 }, { "analysis_explanation": null, "end": 450474, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450470 }, { "analysis_explanation": null, "end": 450595, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450592 }, { "analysis_explanation": null, "end": 450693, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450683 }, { "analysis_explanation": null, "end": 450767, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450763 }, { "analysis_explanation": null, "end": 450950, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450947 }, { "analysis_explanation": null, "end": 451115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451111 }, { "analysis_explanation": null, "end": 451189, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451186 }, { "analysis_explanation": null, "end": 451221, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451213 }, { "analysis_explanation": null, "end": 451438, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451435 }, { "analysis_explanation": null, "end": 451474, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451470 }, { "analysis_explanation": null, "end": 451687, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451683 }, { "analysis_explanation": null, "end": 451781, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451755 }, { "analysis_explanation": null, "end": 451801, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451798 }, { "analysis_explanation": null, "end": 451841, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451837 }, { "analysis_explanation": null, "end": 451932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451929 }, { "analysis_explanation": null, "end": 452033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452029 }, { "analysis_explanation": null, "end": 452083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452080 }, { "analysis_explanation": null, "end": 452177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452174 }, { "analysis_explanation": null, "end": 452199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452196 }, { "analysis_explanation": null, "end": 452233, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452229 }, { "analysis_explanation": null, "end": 452283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452280 }, { "analysis_explanation": null, "end": 452381, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452362 }, { "analysis_explanation": null, "end": 452621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452618 }, { "analysis_explanation": null, "end": 452949, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452946 }, { "analysis_explanation": null, "end": 453225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453219 }, { "analysis_explanation": null, "end": 453394, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453388 }, { "analysis_explanation": null, "end": 453536, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453529 }, { "analysis_explanation": null, "end": 453542, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453538 }, { "analysis_explanation": null, "end": 453591, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453587 }, { "analysis_explanation": null, "end": 453629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453625 }, { "analysis_explanation": null, "end": 453693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453690 }, { "analysis_explanation": null, "end": 453841, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453837 }, { "analysis_explanation": null, "end": 453848, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453844 }, { "analysis_explanation": null, "end": 453867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453864 }, { "analysis_explanation": null, "end": 454372, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 454369 }, { "analysis_explanation": null, "end": 454397, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 454393 }, { "analysis_explanation": null, "end": 454477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 454474 }, { "analysis_explanation": null, "end": 454747, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 454743 }, { "analysis_explanation": null, "end": 454835, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 454832 }, { "analysis_explanation": null, "end": 454888, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 454884 }, { "analysis_explanation": null, "end": 455062, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 455058 }, { "analysis_explanation": null, "end": 455197, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 455194 }, { "analysis_explanation": null, "end": 455409, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 455406 }, { "analysis_explanation": null, "end": 455663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 455660 }, { "analysis_explanation": null, "end": 455895, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 455891 }, { "analysis_explanation": null, "end": 455935, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 455932 }, { "analysis_explanation": null, "end": 456030, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456022 }, { "analysis_explanation": null, "end": 456057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456054 }, { "analysis_explanation": null, "end": 456364, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456360 }, { "analysis_explanation": null, "end": 456371, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456367 }, { "analysis_explanation": null, "end": 456489, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456485 }, { "analysis_explanation": null, "end": 456743, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456734 }, { "analysis_explanation": null, "end": 456757, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456747 }, { "analysis_explanation": null, "end": 456764, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456760 }, { "analysis_explanation": null, "end": 456895, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456889 }, { "analysis_explanation": null, "end": 457148, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 457137 }, { "analysis_explanation": null, "end": 457197, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 457190 }, { "analysis_explanation": null, "end": 457326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 457321 }, { "analysis_explanation": null, "end": 457333, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 457329 }, { "analysis_explanation": null, "end": 457347, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 457344 }, { "analysis_explanation": null, "end": 457358, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 457354 }, { "analysis_explanation": null, "end": 457391, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 457387 }, { "analysis_explanation": null, "end": 457610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 457607 }, { "analysis_explanation": null, "end": 458033, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 458029 }, { "analysis_explanation": null, "end": 458088, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 458072 }, { "analysis_explanation": null, "end": 458186, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 458183 }, { "analysis_explanation": null, "end": 458224, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 458220 }, { "analysis_explanation": null, "end": 458344, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 458338 }, { "analysis_explanation": null, "end": 458528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 458525 }, { "analysis_explanation": null, "end": 458824, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 458821 }, { "analysis_explanation": null, "end": 458969, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 458965 }, { "analysis_explanation": null, "end": 459023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459020 }, { "analysis_explanation": null, "end": 459214, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459210 }, { "analysis_explanation": null, "end": 459465, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459440 }, { "analysis_explanation": null, "end": 459831, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459828 }, { "analysis_explanation": null, "end": 459955, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459951 }, { "analysis_explanation": null, "end": 460641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460638 }, { "analysis_explanation": null, "end": 460786, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460782 }, { "analysis_explanation": null, "end": 460812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460809 }, { "analysis_explanation": null, "end": 460932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460929 }, { "analysis_explanation": null, "end": 461169, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 461166 }, { "analysis_explanation": null, "end": 461636, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 461633 }, { "analysis_explanation": null, "end": 462134, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 462131 }, { "analysis_explanation": null, "end": 462281, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 462274 }, { "analysis_explanation": null, "end": 463021, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 463018 }, { "analysis_explanation": null, "end": 463303, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 463296 }, { "analysis_explanation": null, "end": 463364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 463361 }, { "analysis_explanation": null, "end": 463377, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 463373 }, { "analysis_explanation": null, "end": 463676, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 463673 }, { "analysis_explanation": null, "end": 463903, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 463899 }, { "analysis_explanation": null, "end": 463928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 463925 }, { "analysis_explanation": null, "end": 464109, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464098 }, { "analysis_explanation": null, "end": 464232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464229 }, { "analysis_explanation": null, "end": 464407, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464402 }, { "analysis_explanation": null, "end": 464413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464410 }, { "analysis_explanation": null, "end": 464548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464545 }, { "analysis_explanation": null, "end": 464838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464834 }, { "analysis_explanation": null, "end": 464970, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464966 }, { "analysis_explanation": null, "end": 465005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 465002 }, { "analysis_explanation": null, "end": 465642, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 465639 }, { "analysis_explanation": null, "end": 465710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 465707 }, { "analysis_explanation": null, "end": 466078, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466067 }, { "analysis_explanation": null, "end": 466310, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466307 }, { "analysis_explanation": null, "end": 466441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466438 }, { "analysis_explanation": null, "end": 466714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466710 }, { "analysis_explanation": null, "end": 466736, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466733 }, { "analysis_explanation": null, "end": 466899, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466885 }, { "analysis_explanation": null, "end": 466939, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466931 }, { "analysis_explanation": null, "end": 467053, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 467050 }, { "analysis_explanation": null, "end": 467127, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 467114 }, { "analysis_explanation": null, "end": 467557, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 467553 }, { "analysis_explanation": null, "end": 467694, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 467691 }, { "analysis_explanation": null, "end": 467931, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 467928 }, { "analysis_explanation": null, "end": 468311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 468308 }, { "analysis_explanation": null, "end": 468619, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 468616 }, { "analysis_explanation": null, "end": 468658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 468645 }, { "analysis_explanation": null, "end": 468839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 468836 }, { "analysis_explanation": null, "end": 469133, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 469129 }, { "analysis_explanation": null, "end": 469225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 469222 }, { "analysis_explanation": null, "end": 469395, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 469392 }, { "analysis_explanation": null, "end": 469413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 469410 }, { "analysis_explanation": null, "end": 469647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 469644 }, { "analysis_explanation": null, "end": 469770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 469767 }, { "analysis_explanation": null, "end": 470006, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 470003 }, { "analysis_explanation": null, "end": 470429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 470426 }, { "analysis_explanation": null, "end": 470529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 470525 }, { "analysis_explanation": null, "end": 470542, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 470539 }, { "analysis_explanation": null, "end": 470603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 470598 }, { "analysis_explanation": null, "end": 471066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471063 }, { "analysis_explanation": null, "end": 471246, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471243 }, { "analysis_explanation": null, "end": 471306, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471301 }, { "analysis_explanation": null, "end": 471315, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471311 }, { "analysis_explanation": null, "end": 471469, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471464 }, { "analysis_explanation": null, "end": 471642, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471637 }, { "analysis_explanation": null, "end": 471783, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471778 }, { "analysis_explanation": null, "end": 471801, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471795 }, { "analysis_explanation": null, "end": 471931, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471928 }, { "analysis_explanation": null, "end": 471961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471958 }, { "analysis_explanation": null, "end": 472244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 472240 }, { "analysis_explanation": null, "end": 472386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 472383 }, { "analysis_explanation": null, "end": 472488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 472482 }, { "analysis_explanation": null, "end": 472988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 472983 }, { "analysis_explanation": null, "end": 473081, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473068 }, { "analysis_explanation": null, "end": 473115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473112 }, { "analysis_explanation": null, "end": 473292, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473289 }, { "analysis_explanation": null, "end": 473406, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473402 }, { "analysis_explanation": null, "end": 473455, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473448 }, { "analysis_explanation": null, "end": 473502, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473499 }, { "analysis_explanation": null, "end": 473827, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473824 }, { "analysis_explanation": null, "end": 473834, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473830 }, { "analysis_explanation": null, "end": 473850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473847 }, { "analysis_explanation": null, "end": 473866, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473861 }, { "analysis_explanation": null, "end": 474130, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474125 }, { "analysis_explanation": null, "end": 474240, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474236 }, { "analysis_explanation": null, "end": 474261, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474256 }, { "analysis_explanation": null, "end": 474287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474284 }, { "analysis_explanation": null, "end": 474315, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474312 }, { "analysis_explanation": null, "end": 474356, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474353 }, { "analysis_explanation": null, "end": 474371, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474367 }, { "analysis_explanation": null, "end": 474463, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474458 }, { "analysis_explanation": null, "end": 474681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474676 }, { "analysis_explanation": null, "end": 474777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474774 }, { "analysis_explanation": null, "end": 474796, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474793 }, { "analysis_explanation": null, "end": 474806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474802 }, { "analysis_explanation": null, "end": 475001, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474998 }, { "analysis_explanation": null, "end": 475094, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475089 }, { "analysis_explanation": null, "end": 475147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475144 }, { "analysis_explanation": null, "end": 475300, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475294 }, { "analysis_explanation": null, "end": 475305, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475302 }, { "analysis_explanation": null, "end": 475385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475382 }, { "analysis_explanation": null, "end": 475433, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475427 }, { "analysis_explanation": null, "end": 475728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475725 }, { "analysis_explanation": null, "end": 475889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475875 }, { "analysis_explanation": null, "end": 475898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475895 }, { "analysis_explanation": null, "end": 475953, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475947 }, { "analysis_explanation": null, "end": 476123, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476120 }, { "analysis_explanation": null, "end": 476225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476222 }, { "analysis_explanation": null, "end": 476253, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476250 }, { "analysis_explanation": null, "end": 476331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476326 }, { "analysis_explanation": null, "end": 476366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476362 }, { "analysis_explanation": null, "end": 476371, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476368 }, { "analysis_explanation": null, "end": 476604, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476588 }, { "analysis_explanation": null, "end": 476811, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476806 }, { "analysis_explanation": null, "end": 476822, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476816 }, { "analysis_explanation": null, "end": 477007, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477003 }, { "analysis_explanation": null, "end": 477025, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477011 }, { "analysis_explanation": null, "end": 477034, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477028 }, { "analysis_explanation": null, "end": 477086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477083 }, { "analysis_explanation": null, "end": 477141, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477134 }, { "analysis_explanation": null, "end": 477191, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477173 }, { "analysis_explanation": null, "end": 477204, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477195 }, { "analysis_explanation": null, "end": 477256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477253 }, { "analysis_explanation": null, "end": 477375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477372 }, { "analysis_explanation": null, "end": 477507, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477499 }, { "analysis_explanation": null, "end": 477528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477519 }, { "analysis_explanation": null, "end": 477641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477638 }, { "analysis_explanation": null, "end": 477669, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477665 }, { "analysis_explanation": null, "end": 477759, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477756 }, { "analysis_explanation": null, "end": 477916, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477907 }, { "analysis_explanation": null, "end": 477976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 477973 }, { "analysis_explanation": null, "end": 478024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478015 }, { "analysis_explanation": null, "end": 478168, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478162 }, { "analysis_explanation": null, "end": 478448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478439 }, { "analysis_explanation": null, "end": 478464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478460 }, { "analysis_explanation": null, "end": 478525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478516 }, { "analysis_explanation": null, "end": 478613, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478610 }, { "analysis_explanation": null, "end": 478622, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478618 }, { "analysis_explanation": null, "end": 478748, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478739 }, { "analysis_explanation": null, "end": 478799, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478796 }, { "analysis_explanation": null, "end": 479571, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 479563 }, { "analysis_explanation": null, "end": 480053, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480050 }, { "analysis_explanation": null, "end": 480210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480204 }, { "analysis_explanation": null, "end": 480282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480277 }, { "analysis_explanation": null, "end": 480404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480401 }, { "analysis_explanation": null, "end": 480413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480409 }, { "analysis_explanation": null, "end": 480484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480475 }, { "analysis_explanation": null, "end": 480542, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480538 }, { "analysis_explanation": null, "end": 480594, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480591 }, { "analysis_explanation": null, "end": 480618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480614 }, { "analysis_explanation": null, "end": 481051, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481048 }, { "analysis_explanation": null, "end": 481060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481056 }, { "analysis_explanation": null, "end": 481128, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481115 }, { "analysis_explanation": null, "end": 481203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481182 }, { "analysis_explanation": null, "end": 481661, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481652 }, { "analysis_explanation": null, "end": 481798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481795 }, { "analysis_explanation": null, "end": 481807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481803 }, { "analysis_explanation": null, "end": 481856, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481851 }, { "analysis_explanation": null, "end": 482097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482094 }, { "analysis_explanation": null, "end": 482417, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482414 }, { "analysis_explanation": null, "end": 482646, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482642 }, { "analysis_explanation": null, "end": 482914, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482910 }, { "analysis_explanation": null, "end": 482962, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482957 }, { "analysis_explanation": null, "end": 482974, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482966 }, { "analysis_explanation": null, "end": 483045, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 483042 }, { "analysis_explanation": null, "end": 483072, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 483061 }, { "analysis_explanation": null, "end": 483349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 483346 }, { "analysis_explanation": null, "end": 483559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 483551 }, { "analysis_explanation": null, "end": 483596, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 483588 }, { "analysis_explanation": null, "end": 483856, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 483853 }, { "analysis_explanation": null, "end": 484010, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 484001 }, { "analysis_explanation": null, "end": 484419, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 484416 }, { "analysis_explanation": null, "end": 484608, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 484591 }, { "analysis_explanation": null, "end": 484635, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 484620 }, { "analysis_explanation": null, "end": 484741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 484738 }, { "analysis_explanation": null, "end": 484776, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 484766 }, { "analysis_explanation": null, "end": 485013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 485010 }, { "analysis_explanation": null, "end": 485101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 485093 }, { "analysis_explanation": null, "end": 485636, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 485633 }, { "analysis_explanation": null, "end": 485645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 485641 }, { "analysis_explanation": null, "end": 485807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 485804 }, { "analysis_explanation": null, "end": 486016, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 486012 }, { "analysis_explanation": null, "end": 486146, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 486141 }, { "analysis_explanation": null, "end": 486765, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 486761 }, { "analysis_explanation": null, "end": 486922, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 486905 }, { "analysis_explanation": null, "end": 487158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487147 }, { "analysis_explanation": null, "end": 487251, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487246 }, { "analysis_explanation": null, "end": 487285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487276 }, { "analysis_explanation": null, "end": 487319, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487309 }, { "analysis_explanation": null, "end": 487341, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487329 }, { "analysis_explanation": null, "end": 487371, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487365 }, { "analysis_explanation": null, "end": 487524, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487515 }, { "analysis_explanation": null, "end": 487671, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487662 }, { "analysis_explanation": null, "end": 487789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487784 }, { "analysis_explanation": null, "end": 487814, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487810 }, { "analysis_explanation": null, "end": 487937, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487928 }, { "analysis_explanation": null, "end": 488310, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 488303 }, { "analysis_explanation": null, "end": 488687, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 488678 }, { "analysis_explanation": null, "end": 489006, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 488999 }, { "analysis_explanation": null, "end": 489023, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489011 }, { "analysis_explanation": null, "end": 489084, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489076 }, { "analysis_explanation": null, "end": 489098, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489085 }, { "analysis_explanation": null, "end": 489159, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489140 }, { "analysis_explanation": null, "end": 489290, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489285 }, { "analysis_explanation": null, "end": 489305, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489295 }, { "analysis_explanation": null, "end": 489394, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489376 }, { "analysis_explanation": null, "end": 489500, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489497 }, { "analysis_explanation": null, "end": 489678, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489673 }, { "analysis_explanation": null, "end": 489852, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489848 }, { "analysis_explanation": null, "end": 489873, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489857 }, { "analysis_explanation": null, "end": 489899, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489895 }, { "analysis_explanation": null, "end": 489943, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489936 }, { "analysis_explanation": null, "end": 490092, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490073 }, { "analysis_explanation": null, "end": 490122, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490115 }, { "analysis_explanation": null, "end": 490134, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490127 }, { "analysis_explanation": null, "end": 490177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490161 }, { "analysis_explanation": null, "end": 490276, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490267 }, { "analysis_explanation": null, "end": 490486, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490483 }, { "analysis_explanation": null, "end": 490651, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490642 }, { "analysis_explanation": null, "end": 490754, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490747 }, { "analysis_explanation": null, "end": 490761, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490755 }, { "analysis_explanation": null, "end": 490840, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490834 }, { "analysis_explanation": null, "end": 490870, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490867 }, { "analysis_explanation": null, "end": 491023, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 491014 }, { "analysis_explanation": null, "end": 491052, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 491048 }, { "analysis_explanation": null, "end": 491220, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 491214 }, { "analysis_explanation": null, "end": 491240, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 491229 }, { "analysis_explanation": null, "end": 491254, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 491247 }, { "analysis_explanation": null, "end": 491409, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 491400 }, { "analysis_explanation": null, "end": 491641, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 491637 }, { "analysis_explanation": null, "end": 492081, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492073 }, { "analysis_explanation": null, "end": 492103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492098 }, { "analysis_explanation": null, "end": 492129, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492120 }, { "analysis_explanation": null, "end": 492277, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492256 }, { "analysis_explanation": null, "end": 492458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492455 }, { "analysis_explanation": null, "end": 492769, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492765 }, { "analysis_explanation": null, "end": 492822, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492818 }, { "analysis_explanation": null, "end": 492850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492845 }, { "analysis_explanation": null, "end": 493037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493032 }, { "analysis_explanation": null, "end": 493044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493041 }, { "analysis_explanation": null, "end": 493128, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493123 }, { "analysis_explanation": null, "end": 493193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493190 }, { "analysis_explanation": null, "end": 493282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493277 }, { "analysis_explanation": null, "end": 493353, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493350 }, { "analysis_explanation": null, "end": 493391, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493386 }, { "analysis_explanation": null, "end": 493426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493415 }, { "analysis_explanation": null, "end": 493792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493788 }, { "analysis_explanation": null, "end": 493801, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493798 }, { "analysis_explanation": null, "end": 493842, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493837 }, { "analysis_explanation": null, "end": 494047, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 494042 }, { "analysis_explanation": null, "end": 494429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 494426 }, { "analysis_explanation": null, "end": 494488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 494477 }, { "analysis_explanation": null, "end": 494698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 494695 }, { "analysis_explanation": null, "end": 494787, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 494783 }, { "analysis_explanation": null, "end": 494967, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 494964 }, { "analysis_explanation": null, "end": 495059, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495054 }, { "analysis_explanation": null, "end": 495114, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495110 }, { "analysis_explanation": null, "end": 495381, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495376 }, { "analysis_explanation": null, "end": 495408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495405 }, { "analysis_explanation": null, "end": 495610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495598 }, { "analysis_explanation": null, "end": 495839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495832 }, { "analysis_explanation": null, "end": 495937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495929 }, { "analysis_explanation": null, "end": 496238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496235 }, { "analysis_explanation": null, "end": 496320, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496306 }, { "analysis_explanation": null, "end": 496398, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496389 }, { "analysis_explanation": null, "end": 496531, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496528 }, { "analysis_explanation": null, "end": 496596, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496585 }, { "analysis_explanation": null, "end": 496841, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496832 }, { "analysis_explanation": null, "end": 496853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496846 }, { "analysis_explanation": null, "end": 497009, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 497000 }, { "analysis_explanation": null, "end": 497211, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 497206 }, { "analysis_explanation": null, "end": 497242, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 497238 }, { "analysis_explanation": null, "end": 497351, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 497340 }, { "analysis_explanation": null, "end": 497612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 497609 }, { "analysis_explanation": null, "end": 497698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 497691 }, { "analysis_explanation": null, "end": 498487, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 498480 }, { "analysis_explanation": null, "end": 498499, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 498496 }, { "analysis_explanation": null, "end": 498568, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 498564 }, { "analysis_explanation": null, "end": 498724, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 498721 }, { "analysis_explanation": null, "end": 498746, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 498737 }, { "analysis_explanation": null, "end": 498924, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 498915 }, { "analysis_explanation": null, "end": 499125, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499120 }, { "analysis_explanation": null, "end": 499196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499193 }, { "analysis_explanation": null, "end": 499201, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499198 }, { "analysis_explanation": null, "end": 499235, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499231 }, { "analysis_explanation": null, "end": 499301, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499292 }, { "analysis_explanation": null, "end": 499508, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499495 }, { "analysis_explanation": null, "end": 499574, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499568 }, { "analysis_explanation": null, "end": 499585, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499576 }, { "analysis_explanation": null, "end": 499740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499737 }, { "analysis_explanation": null, "end": 499888, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499881 }, { "analysis_explanation": null, "end": 500046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500043 }, { "analysis_explanation": null, "end": 500136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500127 }, { "analysis_explanation": null, "end": 500242, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500235 }, { "analysis_explanation": null, "end": 500523, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500520 }, { "analysis_explanation": null, "end": 500599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500588 }, { "analysis_explanation": null, "end": 500734, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500705 }, { "analysis_explanation": null, "end": 500806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500803 }, { "analysis_explanation": null, "end": 500862, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500855 }, { "analysis_explanation": null, "end": 500995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500988 }, { "analysis_explanation": null, "end": 501052, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 501049 }, { "analysis_explanation": null, "end": 501229, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 501221 }, { "analysis_explanation": null, "end": 501283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 501280 }, { "analysis_explanation": null, "end": 501584, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 501578 }, { "analysis_explanation": null, "end": 501605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 501602 }, { "analysis_explanation": null, "end": 501812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 501795 }, { "analysis_explanation": null, "end": 502082, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 502075 }, { "analysis_explanation": null, "end": 502117, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 502111 }, { "analysis_explanation": null, "end": 502152, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 502145 }, { "analysis_explanation": null, "end": 502337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 502334 }, { "analysis_explanation": null, "end": 502409, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 502403 }, { "analysis_explanation": null, "end": 502519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 502516 }, { "analysis_explanation": null, "end": 502578, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 502569 }, { "analysis_explanation": null, "end": 503129, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 503122 }, { "analysis_explanation": null, "end": 503364, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 503360 }, { "analysis_explanation": null, "end": 503561, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 503554 }, { "analysis_explanation": null, "end": 503575, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 503571 }, { "analysis_explanation": null, "end": 503687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 503678 }, { "analysis_explanation": null, "end": 503902, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 503899 }, { "analysis_explanation": null, "end": 503918, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 503911 }, { "analysis_explanation": null, "end": 504280, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 504273 }, { "analysis_explanation": null, "end": 504294, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 504291 }, { "analysis_explanation": null, "end": 504396, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 504393 }, { "analysis_explanation": null, "end": 504692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 504683 }, { "analysis_explanation": null, "end": 504872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 504863 }, { "analysis_explanation": null, "end": 505066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505061 }, { "analysis_explanation": null, "end": 505101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505097 }, { "analysis_explanation": null, "end": 505109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505106 }, { "analysis_explanation": null, "end": 505492, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505487 }, { "analysis_explanation": null, "end": 505497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505494 }, { "analysis_explanation": null, "end": 505525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505520 }, { "analysis_explanation": null, "end": 505750, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505747 }, { "analysis_explanation": null, "end": 505798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505793 }, { "analysis_explanation": null, "end": 505873, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505870 }, { "analysis_explanation": null, "end": 505946, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505941 }, { "analysis_explanation": null, "end": 506180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 506177 }, { "analysis_explanation": null, "end": 506401, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 506392 }, { "analysis_explanation": null, "end": 506525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 506522 }, { "analysis_explanation": null, "end": 506535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 506531 }, { "analysis_explanation": null, "end": 506645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 506640 }, { "analysis_explanation": null, "end": 506802, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 506795 }, { "analysis_explanation": null, "end": 507547, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 507543 }, { "analysis_explanation": null, "end": 507700, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 507695 }, { "analysis_explanation": null, "end": 508009, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 508006 }, { "analysis_explanation": null, "end": 508565, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 508556 }, { "analysis_explanation": null, "end": 508587, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 508578 }, { "analysis_explanation": null, "end": 508867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 508858 }, { "analysis_explanation": null, "end": 509045, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509036 }, { "analysis_explanation": null, "end": 509273, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509264 }, { "analysis_explanation": null, "end": 509372, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509369 }, { "analysis_explanation": null, "end": 509750, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509739 }, { "analysis_explanation": null, "end": 509823, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509814 }, { "analysis_explanation": null, "end": 509853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509846 }, { "analysis_explanation": null, "end": 509938, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509933 }, { "analysis_explanation": null, "end": 509972, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509969 }, { "analysis_explanation": null, "end": 510032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 510029 }, { "analysis_explanation": null, "end": 510393, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 510390 }, { "analysis_explanation": null, "end": 510402, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 510398 }, { "analysis_explanation": null, "end": 510818, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 510813 }, { "analysis_explanation": null, "end": 510932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 510929 }, { "analysis_explanation": null, "end": 510941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 510937 }, { "analysis_explanation": null, "end": 511621, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 511613 }, { "analysis_explanation": null, "end": 511692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 511689 }, { "analysis_explanation": null, "end": 511931, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 511923 }, { "analysis_explanation": null, "end": 512092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512089 }, { "analysis_explanation": null, "end": 512228, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512224 }, { "analysis_explanation": null, "end": 512704, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512701 }, { "analysis_explanation": null, "end": 512834, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512827 }, { "analysis_explanation": null, "end": 512921, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512917 }, { "analysis_explanation": null, "end": 512955, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512947 }, { "analysis_explanation": null, "end": 512997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512982 }, { "analysis_explanation": null, "end": 513083, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513066 }, { "analysis_explanation": null, "end": 513119, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513102 }, { "analysis_explanation": null, "end": 513192, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513183 }, { "analysis_explanation": null, "end": 513512, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513502 }, { "analysis_explanation": null, "end": 513739, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513735 }, { "analysis_explanation": null, "end": 513772, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513752 }, { "analysis_explanation": null, "end": 513821, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513814 }, { "analysis_explanation": null, "end": 513875, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513869 }, { "analysis_explanation": null, "end": 513932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513923 }, { "analysis_explanation": null, "end": 514091, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514082 }, { "analysis_explanation": null, "end": 514237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514233 }, { "analysis_explanation": null, "end": 514445, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514435 }, { "analysis_explanation": null, "end": 514479, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514475 }, { "analysis_explanation": null, "end": 514493, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514483 }, { "analysis_explanation": null, "end": 514676, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514670 }, { "analysis_explanation": null, "end": 514774, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514770 }, { "analysis_explanation": null, "end": 514791, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514784 }, { "analysis_explanation": null, "end": 514805, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514796 }, { "analysis_explanation": null, "end": 514922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514905 }, { "analysis_explanation": null, "end": 514986, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514976 }, { "analysis_explanation": null, "end": 515024, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515004 }, { "analysis_explanation": null, "end": 515093, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515087 }, { "analysis_explanation": null, "end": 515118, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515113 }, { "analysis_explanation": null, "end": 515215, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515199 }, { "analysis_explanation": null, "end": 515286, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515277 }, { "analysis_explanation": null, "end": 515505, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515495 }, { "analysis_explanation": null, "end": 515545, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515540 }, { "analysis_explanation": null, "end": 515853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515849 }, { "analysis_explanation": null, "end": 515909, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515906 }, { "analysis_explanation": null, "end": 516103, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516093 }, { "analysis_explanation": null, "end": 516448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516441 }, { "analysis_explanation": null, "end": 516471, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516466 }, { "analysis_explanation": null, "end": 516544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516533 }, { "analysis_explanation": null, "end": 516791, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516787 }, { "analysis_explanation": null, "end": 516842, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516836 }, { "analysis_explanation": null, "end": 516948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516943 }, { "analysis_explanation": null, "end": 516955, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 516950 }, { "analysis_explanation": null, "end": 517018, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517009 }, { "analysis_explanation": null, "end": 517165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517153 }, { "analysis_explanation": null, "end": 517256, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517249 }, { "analysis_explanation": null, "end": 517384, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517381 }, { "analysis_explanation": null, "end": 517429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517425 }, { "analysis_explanation": null, "end": 517529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517516 }, { "analysis_explanation": null, "end": 517545, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517534 }, { "analysis_explanation": null, "end": 517583, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517569 }, { "analysis_explanation": null, "end": 517649, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517642 }, { "analysis_explanation": null, "end": 517719, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517712 }, { "analysis_explanation": null, "end": 517902, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517897 }, { "analysis_explanation": null, "end": 517994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517989 }, { "analysis_explanation": null, "end": 518009, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517999 }, { "analysis_explanation": null, "end": 518029, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518023 }, { "analysis_explanation": null, "end": 518098, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518093 }, { "analysis_explanation": null, "end": 518138, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518130 }, { "analysis_explanation": null, "end": 518609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518606 }, { "analysis_explanation": null, "end": 518812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518809 }, { "analysis_explanation": null, "end": 518939, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518930 }, { "analysis_explanation": null, "end": 518960, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518953 }, { "analysis_explanation": null, "end": 519506, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 519503 }, { "analysis_explanation": null, "end": 519658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 519655 }, { "analysis_explanation": null, "end": 519784, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 519772 }, { "analysis_explanation": null, "end": 519827, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 519816 }, { "analysis_explanation": null, "end": 519976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 519962 }, { "analysis_explanation": null, "end": 520069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 520066 }, { "analysis_explanation": null, "end": 520483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 520464 }, { "analysis_explanation": null, "end": 520770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 520767 }, { "analysis_explanation": null, "end": 520886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 520882 }, { "analysis_explanation": null, "end": 521172, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 521165 }, { "analysis_explanation": null, "end": 521404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 521401 }, { "analysis_explanation": null, "end": 521412, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 521407 }, { "analysis_explanation": null, "end": 521495, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 521492 }, { "analysis_explanation": null, "end": 521608, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 521604 }, { "analysis_explanation": null, "end": 521672, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 521668 }, { "analysis_explanation": null, "end": 522177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 522173 }, { "analysis_explanation": null, "end": 522352, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 522343 }, { "analysis_explanation": null, "end": 522457, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 522448 }, { "analysis_explanation": null, "end": 523023, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523006 }, { "analysis_explanation": null, "end": 523243, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523240 }, { "analysis_explanation": null, "end": 523328, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523319 }, { "analysis_explanation": null, "end": 523639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523622 }, { "analysis_explanation": null, "end": 523870, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523861 }, { "analysis_explanation": null, "end": 524171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 524168 }, { "analysis_explanation": null, "end": 524399, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 524379 }, { "analysis_explanation": null, "end": 524798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 524795 }, { "analysis_explanation": null, "end": 524961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 524949 }, { "analysis_explanation": null, "end": 525063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 525054 }, { "analysis_explanation": null, "end": 525185, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 525176 }, { "analysis_explanation": null, "end": 525605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 525602 }, { "analysis_explanation": null, "end": 525614, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 525610 }, { "analysis_explanation": null, "end": 525790, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 525784 }, { "analysis_explanation": null, "end": 525869, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 525866 }, { "analysis_explanation": null, "end": 526038, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 526031 }, { "analysis_explanation": null, "end": 526143, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 526126 }, { "analysis_explanation": null, "end": 526175, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 526168 }, { "analysis_explanation": null, "end": 526394, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 526385 }, { "analysis_explanation": null, "end": 526569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 526562 }, { "analysis_explanation": null, "end": 526659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 526650 }, { "analysis_explanation": null, "end": 527032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527023 }, { "analysis_explanation": null, "end": 527146, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527137 }, { "analysis_explanation": null, "end": 527359, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527350 }, { "analysis_explanation": null, "end": 527393, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527373 }, { "analysis_explanation": null, "end": 527714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527710 }, { "analysis_explanation": null, "end": 527796, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527791 }, { "analysis_explanation": null, "end": 527964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527961 }, { "analysis_explanation": null, "end": 527981, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527977 }, { "analysis_explanation": null, "end": 528126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 528122 }, { "analysis_explanation": null, "end": 528252, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 528249 }, { "analysis_explanation": null, "end": 528782, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 528779 }, { "analysis_explanation": null, "end": 528883, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 528880 }, { "analysis_explanation": null, "end": 529044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 529036 }, { "analysis_explanation": null, "end": 529397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 529391 }, { "analysis_explanation": null, "end": 529405, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 529398 }, { "analysis_explanation": null, "end": 529489, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 529481 }, { "analysis_explanation": null, "end": 529523, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 529516 }, { "analysis_explanation": null, "end": 529736, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 529733 }, { "analysis_explanation": null, "end": 530072, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 530068 }, { "analysis_explanation": null, "end": 530110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 530105 }, { "analysis_explanation": null, "end": 530162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 530158 }, { "analysis_explanation": null, "end": 531149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531145 }, { "analysis_explanation": null, "end": 531227, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531224 }, { "analysis_explanation": null, "end": 531370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531362 }, { "analysis_explanation": null, "end": 531418, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531411 }, { "analysis_explanation": null, "end": 531600, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531593 }, { "analysis_explanation": null, "end": 531813, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531810 }, { "analysis_explanation": null, "end": 531909, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531894 }, { "analysis_explanation": null, "end": 531940, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531934 }, { "analysis_explanation": null, "end": 532000, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531997 }, { "analysis_explanation": null, "end": 532374, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 532370 }, { "analysis_explanation": null, "end": 532778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 532774 }, { "analysis_explanation": null, "end": 532805, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 532802 }, { "analysis_explanation": null, "end": 533075, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 533063 }, { "analysis_explanation": null, "end": 533635, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 533622 }, { "analysis_explanation": null, "end": 534225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 534219 }, { "analysis_explanation": null, "end": 534361, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 534357 }, { "analysis_explanation": null, "end": 534877, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 534866 }, { "analysis_explanation": null, "end": 534940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 534926 }, { "analysis_explanation": null, "end": 535030, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 535025 }, { "analysis_explanation": null, "end": 535867, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 535845 }, { "analysis_explanation": null, "end": 535881, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 535869 }, { "analysis_explanation": null, "end": 536038, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 536034 }, { "analysis_explanation": null, "end": 536077, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 536064 }, { "analysis_explanation": null, "end": 537099, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537086 }, { "analysis_explanation": null, "end": 537153, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537148 }, { "analysis_explanation": null, "end": 537168, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537158 }, { "analysis_explanation": null, "end": 537431, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537398 }, { "analysis_explanation": null, "end": 537692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537689 }, { "analysis_explanation": null, "end": 537810, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537803 }, { "analysis_explanation": null, "end": 537836, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537831 }, { "analysis_explanation": null, "end": 537994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537991 }, { "analysis_explanation": null, "end": 538628, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 538625 }, { "analysis_explanation": null, "end": 539364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 539361 }, { "analysis_explanation": null, "end": 539903, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 539900 }, { "analysis_explanation": null, "end": 540659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 540656 }, { "analysis_explanation": null, "end": 540682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 540677 }, { "analysis_explanation": null, "end": 540905, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 540902 }, { "analysis_explanation": null, "end": 541443, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 541436 }, { "analysis_explanation": null, "end": 542022, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542018 }, { "analysis_explanation": null, "end": 542101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542098 }, { "analysis_explanation": null, "end": 542505, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542495 }, { "analysis_explanation": null, "end": 542593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542590 }, { "analysis_explanation": null, "end": 542623, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542617 }, { "analysis_explanation": null, "end": 542771, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542768 }, { "analysis_explanation": null, "end": 543043, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 543023 }, { "analysis_explanation": null, "end": 543075, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 543072 }, { "analysis_explanation": null, "end": 544038, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544031 }, { "analysis_explanation": null, "end": 544088, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544064 }, { "analysis_explanation": null, "end": 544110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544106 }, { "analysis_explanation": null, "end": 544179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544174 }, { "analysis_explanation": null, "end": 544237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544234 }, { "analysis_explanation": null, "end": 544391, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544388 }, { "analysis_explanation": null, "end": 544737, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544730 }, { "analysis_explanation": null, "end": 544751, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544742 }, { "analysis_explanation": null, "end": 544787, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544784 }, { "analysis_explanation": null, "end": 544929, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544926 }, { "analysis_explanation": null, "end": 545133, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545126 }, { "analysis_explanation": null, "end": 545341, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545338 }, { "analysis_explanation": null, "end": 545473, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545469 }, { "analysis_explanation": null, "end": 545487, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545483 }, { "analysis_explanation": null, "end": 545517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545508 }, { "analysis_explanation": null, "end": 545540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545537 }, { "analysis_explanation": null, "end": 545558, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545551 }, { "analysis_explanation": null, "end": 545634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545631 }, { "analysis_explanation": null, "end": 545675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545663 }, { "analysis_explanation": null, "end": 545786, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545781 }, { "analysis_explanation": null, "end": 545900, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545893 }, { "analysis_explanation": null, "end": 545941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545938 }, { "analysis_explanation": null, "end": 545950, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545946 }, { "analysis_explanation": null, "end": 546037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546028 }, { "analysis_explanation": null, "end": 546094, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546087 }, { "analysis_explanation": null, "end": 546170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546161 }, { "analysis_explanation": null, "end": 546240, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546237 }, { "analysis_explanation": null, "end": 546245, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546242 }, { "analysis_explanation": null, "end": 546548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546541 }, { "analysis_explanation": null, "end": 546660, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546651 }, { "analysis_explanation": null, "end": 546765, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546759 }, { "analysis_explanation": null, "end": 546894, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546885 }, { "analysis_explanation": null, "end": 546956, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546934 }, { "analysis_explanation": null, "end": 547084, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547063 }, { "analysis_explanation": null, "end": 547163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547160 }, { "analysis_explanation": null, "end": 547423, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547406 }, { "analysis_explanation": null, "end": 547520, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547517 }, { "analysis_explanation": null, "end": 547787, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547780 }, { "analysis_explanation": null, "end": 547806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547800 }, { "analysis_explanation": null, "end": 547825, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547818 }, { "analysis_explanation": null, "end": 547919, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547912 }, { "analysis_explanation": null, "end": 548463, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 548454 }, { "analysis_explanation": null, "end": 548758, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 548749 }, { "analysis_explanation": null, "end": 549064, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549058 }, { "analysis_explanation": null, "end": 549396, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549389 }, { "analysis_explanation": null, "end": 549488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549484 }, { "analysis_explanation": null, "end": 549590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549587 }, { "analysis_explanation": null, "end": 549610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549605 }, { "analysis_explanation": null, "end": 549655, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549651 }, { "analysis_explanation": null, "end": 549879, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549874 }, { "analysis_explanation": null, "end": 549891, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549887 }, { "analysis_explanation": null, "end": 549994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549985 }, { "analysis_explanation": null, "end": 550019, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 550014 }, { "analysis_explanation": null, "end": 550284, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 550281 }, { "analysis_explanation": null, "end": 550300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 550296 }, { "analysis_explanation": null, "end": 550587, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 550584 }, { "analysis_explanation": null, "end": 550762, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 550755 }, { "analysis_explanation": null, "end": 551373, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551365 }, { "analysis_explanation": null, "end": 551575, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551565 }, { "analysis_explanation": null, "end": 551590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551581 }, { "analysis_explanation": null, "end": 551673, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551666 }, { "analysis_explanation": null, "end": 551789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551786 }, { "analysis_explanation": null, "end": 551891, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551885 }, { "analysis_explanation": null, "end": 551933, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551926 }, { "analysis_explanation": null, "end": 552144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 552141 }, { "analysis_explanation": null, "end": 552630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 552627 }, { "analysis_explanation": null, "end": 552678, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 552674 }, { "analysis_explanation": null, "end": 552734, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 552729 }, { "analysis_explanation": null, "end": 552905, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 552902 }, { "analysis_explanation": null, "end": 553086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553077 }, { "analysis_explanation": null, "end": 553249, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553246 }, { "analysis_explanation": null, "end": 553324, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553315 }, { "analysis_explanation": null, "end": 553483, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553476 }, { "analysis_explanation": null, "end": 553717, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553710 }, { "analysis_explanation": null, "end": 553763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553760 }, { "analysis_explanation": null, "end": 553929, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553918 }, { "analysis_explanation": null, "end": 553972, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553963 }, { "analysis_explanation": null, "end": 554005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553996 }, { "analysis_explanation": null, "end": 554049, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 554045 }, { "analysis_explanation": null, "end": 554311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 554302 }, { "analysis_explanation": null, "end": 554459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 554450 }, { "analysis_explanation": null, "end": 554705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 554702 }, { "analysis_explanation": null, "end": 555073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 555070 }, { "analysis_explanation": null, "end": 555455, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 555451 }, { "analysis_explanation": null, "end": 555747, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 555742 }, { "analysis_explanation": null, "end": 556332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 556327 }, { "analysis_explanation": null, "end": 556369, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 556365 }, { "analysis_explanation": null, "end": 556387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 556380 }, { "analysis_explanation": null, "end": 556611, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 556608 }, { "analysis_explanation": null, "end": 556844, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 556841 }, { "analysis_explanation": null, "end": 557020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 557011 }, { "analysis_explanation": null, "end": 557416, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 557413 }, { "analysis_explanation": null, "end": 557446, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 557442 }, { "analysis_explanation": null, "end": 559582, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 559579 }, { "analysis_explanation": null, "end": 561150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561143 }, { "analysis_explanation": null, "end": 561229, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561221 }, { "analysis_explanation": null, "end": 561451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561447 }, { "analysis_explanation": null, "end": 561457, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561454 }, { "analysis_explanation": null, "end": 561949, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561936 }, { "analysis_explanation": null, "end": 561954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561950 }, { "analysis_explanation": null, "end": 561964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561956 }, { "analysis_explanation": null, "end": 561976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561968 }, { "analysis_explanation": null, "end": 562066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 562059 }, { "analysis_explanation": null, "end": 562158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 562151 }, { "analysis_explanation": null, "end": 562478, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 562475 }, { "analysis_explanation": null, "end": 562744, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 562741 }, { "analysis_explanation": null, "end": 563244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 563241 }, { "analysis_explanation": null, "end": 563287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 563282 }, { "analysis_explanation": null, "end": 563402, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 563396 }, { "analysis_explanation": null, "end": 563678, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 563673 }, { "analysis_explanation": null, "end": 563858, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 563854 }, { "analysis_explanation": null, "end": 563960, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 563955 }, { "analysis_explanation": null, "end": 563986, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 563980 }, { "analysis_explanation": null, "end": 564055, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564052 }, { "analysis_explanation": null, "end": 564142, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564137 }, { "analysis_explanation": null, "end": 564531, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564526 }, { "analysis_explanation": null, "end": 564654, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564647 }, { "analysis_explanation": null, "end": 564688, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564681 }, { "analysis_explanation": null, "end": 564817, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564808 }, { "analysis_explanation": null, "end": 564847, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564844 }, { "analysis_explanation": null, "end": 564973, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564966 }, { "analysis_explanation": null, "end": 565155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 565152 }, { "analysis_explanation": null, "end": 565296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 565291 }, { "analysis_explanation": null, "end": 565920, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 565913 }, { "analysis_explanation": null, "end": 565962, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 565958 }, { "analysis_explanation": null, "end": 565986, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 565983 }, { "analysis_explanation": null, "end": 566021, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566014 }, { "analysis_explanation": null, "end": 566104, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566095 }, { "analysis_explanation": null, "end": 566166, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566154 }, { "analysis_explanation": null, "end": 566372, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566366 }, { "analysis_explanation": null, "end": 566404, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566397 }, { "analysis_explanation": null, "end": 566415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566412 }, { "analysis_explanation": null, "end": 566569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566565 }, { "analysis_explanation": null, "end": 566693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566684 }, { "analysis_explanation": null, "end": 566782, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566777 }, { "analysis_explanation": null, "end": 566808, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566805 }, { "analysis_explanation": null, "end": 566857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566850 }, { "analysis_explanation": null, "end": 566878, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566871 }, { "analysis_explanation": null, "end": 566918, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566913 }, { "analysis_explanation": null, "end": 567020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567017 }, { "analysis_explanation": null, "end": 567080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567077 }, { "analysis_explanation": null, "end": 567182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567179 }, { "analysis_explanation": null, "end": 567402, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567395 }, { "analysis_explanation": null, "end": 567451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567448 }, { "analysis_explanation": null, "end": 567697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567694 }, { "analysis_explanation": null, "end": 567817, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567808 }, { "analysis_explanation": null, "end": 567870, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567865 }, { "analysis_explanation": null, "end": 567932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567929 }, { "analysis_explanation": null, "end": 567995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567992 }, { "analysis_explanation": null, "end": 568260, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 568257 }, { "analysis_explanation": null, "end": 568670, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 568667 }, { "analysis_explanation": null, "end": 568689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 568685 }, { "analysis_explanation": null, "end": 568962, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 568957 }, { "analysis_explanation": null, "end": 569080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 569077 }, { "analysis_explanation": null, "end": 569622, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 569609 }, { "analysis_explanation": null, "end": 569653, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 569638 }, { "analysis_explanation": null, "end": 569740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 569737 }, { "analysis_explanation": null, "end": 569864, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 569846 }, { "analysis_explanation": null, "end": 570083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 570080 }, { "analysis_explanation": null, "end": 570290, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 570285 }, { "analysis_explanation": null, "end": 570493, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 570484 }, { "analysis_explanation": null, "end": 570626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 570623 }, { "analysis_explanation": null, "end": 570766, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 570763 }, { "analysis_explanation": null, "end": 570933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 570930 }, { "analysis_explanation": null, "end": 571024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571019 }, { "analysis_explanation": null, "end": 571230, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571221 }, { "analysis_explanation": null, "end": 571405, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571402 }, { "analysis_explanation": null, "end": 571491, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571486 }, { "analysis_explanation": null, "end": 571711, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571706 }, { "analysis_explanation": null, "end": 571784, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571777 }, { "analysis_explanation": null, "end": 571847, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571842 }, { "analysis_explanation": null, "end": 572032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572025 }, { "analysis_explanation": null, "end": 572063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572058 }, { "analysis_explanation": null, "end": 572143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572140 }, { "analysis_explanation": null, "end": 572402, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572397 }, { "analysis_explanation": null, "end": 572415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572408 }, { "analysis_explanation": null, "end": 572519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572516 }, { "analysis_explanation": null, "end": 572681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572678 }, { "analysis_explanation": null, "end": 572693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572688 }, { "analysis_explanation": null, "end": 572744, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572741 }, { "analysis_explanation": null, "end": 572799, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572796 }, { "analysis_explanation": null, "end": 573054, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 573049 }, { "analysis_explanation": null, "end": 573113, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 573105 }, { "analysis_explanation": null, "end": 573300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 573297 }, { "analysis_explanation": null, "end": 573386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 573383 }, { "analysis_explanation": null, "end": 573442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 573437 }, { "analysis_explanation": null, "end": 573705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 573702 }, { "analysis_explanation": null, "end": 574008, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574005 }, { "analysis_explanation": null, "end": 574154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574145 }, { "analysis_explanation": null, "end": 574258, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574253 }, { "analysis_explanation": null, "end": 574410, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574407 }, { "analysis_explanation": null, "end": 574453, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574448 }, { "analysis_explanation": null, "end": 574475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574472 }, { "analysis_explanation": null, "end": 574552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574549 }, { "analysis_explanation": null, "end": 574852, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574847 }, { "analysis_explanation": null, "end": 575014, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575009 }, { "analysis_explanation": null, "end": 575024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575016 }, { "analysis_explanation": null, "end": 575086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575081 }, { "analysis_explanation": null, "end": 575168, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575165 }, { "analysis_explanation": null, "end": 575272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575269 }, { "analysis_explanation": null, "end": 575493, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575488 }, { "analysis_explanation": null, "end": 575541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575534 }, { "analysis_explanation": null, "end": 575695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575690 }, { "analysis_explanation": null, "end": 575847, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575842 }, { "analysis_explanation": null, "end": 576077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576072 }, { "analysis_explanation": null, "end": 576237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576228 }, { "analysis_explanation": null, "end": 576265, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576258 }, { "analysis_explanation": null, "end": 576316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576311 }, { "analysis_explanation": null, "end": 576349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576342 }, { "analysis_explanation": null, "end": 576672, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576667 }, { "analysis_explanation": null, "end": 576753, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576748 }, { "analysis_explanation": null, "end": 577015, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577008 }, { "analysis_explanation": null, "end": 577094, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577089 }, { "analysis_explanation": null, "end": 577160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577153 }, { "analysis_explanation": null, "end": 577238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577235 }, { "analysis_explanation": null, "end": 577299, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577296 }, { "analysis_explanation": null, "end": 577385, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577378 }, { "analysis_explanation": null, "end": 577432, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577427 }, { "analysis_explanation": null, "end": 577705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577702 }, { "analysis_explanation": null, "end": 577751, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577744 }, { "analysis_explanation": null, "end": 577908, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577894 }, { "analysis_explanation": null, "end": 577983, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577980 }, { "analysis_explanation": null, "end": 578117, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 578100 }, { "analysis_explanation": null, "end": 578458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 578455 }, { "analysis_explanation": null, "end": 578721, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 578715 }, { "analysis_explanation": null, "end": 578974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 578971 }, { "analysis_explanation": null, "end": 579115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 579108 }, { "analysis_explanation": null, "end": 579241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 579234 }, { "analysis_explanation": null, "end": 579266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 579263 }, { "analysis_explanation": null, "end": 579702, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 579694 }, { "analysis_explanation": null, "end": 579799, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 579796 }, { "analysis_explanation": null, "end": 580108, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 580103 }, { "analysis_explanation": null, "end": 580358, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 580353 }, { "analysis_explanation": null, "end": 580604, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 580600 }, { "analysis_explanation": null, "end": 580756, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 580737 }, { "analysis_explanation": null, "end": 580819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 580816 }, { "analysis_explanation": null, "end": 580871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 580863 }, { "analysis_explanation": null, "end": 580924, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 580921 }, { "analysis_explanation": null, "end": 581037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581034 }, { "analysis_explanation": null, "end": 581159, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581151 }, { "analysis_explanation": null, "end": 581219, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581211 }, { "analysis_explanation": null, "end": 581426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581418 }, { "analysis_explanation": null, "end": 581611, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581608 }, { "analysis_explanation": null, "end": 581641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581633 }, { "analysis_explanation": null, "end": 581982, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581974 }, { "analysis_explanation": null, "end": 582014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582011 }, { "analysis_explanation": null, "end": 582069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582056 }, { "analysis_explanation": null, "end": 582087, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582080 }, { "analysis_explanation": null, "end": 582109, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582102 }, { "analysis_explanation": null, "end": 582175, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582168 }, { "analysis_explanation": null, "end": 582225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582220 }, { "analysis_explanation": null, "end": 582320, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582312 }, { "analysis_explanation": null, "end": 582382, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582374 }, { "analysis_explanation": null, "end": 582623, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582614 }, { "analysis_explanation": null, "end": 582647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582639 }, { "analysis_explanation": null, "end": 582900, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582883 }, { "analysis_explanation": null, "end": 582911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582903 }, { "analysis_explanation": null, "end": 583085, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583082 }, { "analysis_explanation": null, "end": 583100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583092 }, { "analysis_explanation": null, "end": 583148, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583145 }, { "analysis_explanation": null, "end": 583196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583188 }, { "analysis_explanation": null, "end": 583282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583274 }, { "analysis_explanation": null, "end": 583597, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583594 }, { "analysis_explanation": null, "end": 583630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583622 }, { "analysis_explanation": null, "end": 583856, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583847 }, { "analysis_explanation": null, "end": 584153, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584150 }, { "analysis_explanation": null, "end": 584248, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584242 }, { "analysis_explanation": null, "end": 584262, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584253 }, { "analysis_explanation": null, "end": 584287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584283 }, { "analysis_explanation": null, "end": 584461, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584453 }, { "analysis_explanation": null, "end": 584606, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584603 }, { "analysis_explanation": null, "end": 584635, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584628 }, { "analysis_explanation": null, "end": 584824, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584818 }, { "analysis_explanation": null, "end": 585151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585143 }, { "analysis_explanation": null, "end": 585223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585220 }, { "analysis_explanation": null, "end": 585444, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585431 }, { "analysis_explanation": null, "end": 585539, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585524 }, { "analysis_explanation": null, "end": 585611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585604 }, { "analysis_explanation": null, "end": 585846, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585839 }, { "analysis_explanation": null, "end": 586128, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586119 }, { "analysis_explanation": null, "end": 586258, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586255 }, { "analysis_explanation": null, "end": 586327, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586319 }, { "analysis_explanation": null, "end": 586603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586590 }, { "analysis_explanation": null, "end": 586658, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586652 }, { "analysis_explanation": null, "end": 586678, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586673 }, { "analysis_explanation": null, "end": 586688, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586679 }, { "analysis_explanation": null, "end": 586962, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586954 }, { "analysis_explanation": null, "end": 588013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588010 }, { "analysis_explanation": null, "end": 588028, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588020 }, { "analysis_explanation": null, "end": 588152, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588146 }, { "analysis_explanation": null, "end": 588322, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588314 }, { "analysis_explanation": null, "end": 588399, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588392 }, { "analysis_explanation": null, "end": 588452, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588447 }, { "analysis_explanation": null, "end": 588479, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588472 }, { "analysis_explanation": null, "end": 588496, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588488 }, { "analysis_explanation": null, "end": 588526, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588521 }, { "analysis_explanation": null, "end": 588750, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588747 }, { "analysis_explanation": null, "end": 588897, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588885 }, { "analysis_explanation": null, "end": 588929, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588921 }, { "analysis_explanation": null, "end": 588965, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588959 }, { "analysis_explanation": null, "end": 588975, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588972 }, { "analysis_explanation": null, "end": 589014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 589006 }, { "analysis_explanation": null, "end": 589101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 589098 }, { "analysis_explanation": null, "end": 589139, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 589129 }, { "analysis_explanation": null, "end": 589388, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 589380 }, { "analysis_explanation": null, "end": 589517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 589514 }, { "analysis_explanation": null, "end": 589540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 589532 }, { "analysis_explanation": null, "end": 589936, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 589927 }, { "analysis_explanation": null, "end": 590156, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 590153 }, { "analysis_explanation": null, "end": 590309, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 590305 }, { "analysis_explanation": null, "end": 590798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 590790 }, { "analysis_explanation": null, "end": 590937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 590928 }, { "analysis_explanation": null, "end": 591188, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 591184 }, { "analysis_explanation": null, "end": 591697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 591688 }, { "analysis_explanation": null, "end": 591744, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 591740 }, { "analysis_explanation": null, "end": 591865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 591856 }, { "analysis_explanation": null, "end": 592142, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 592135 }, { "analysis_explanation": null, "end": 592281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 592277 }, { "analysis_explanation": null, "end": 592356, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 592353 }, { "analysis_explanation": null, "end": 592397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 592386 }, { "analysis_explanation": null, "end": 592519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 592515 }, { "analysis_explanation": null, "end": 592870, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 592858 }, { "analysis_explanation": null, "end": 593030, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593012 }, { "analysis_explanation": null, "end": 593085, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593080 }, { "analysis_explanation": null, "end": 593098, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593092 }, { "analysis_explanation": null, "end": 593186, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593178 }, { "analysis_explanation": null, "end": 593217, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593210 }, { "analysis_explanation": null, "end": 593325, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593313 }, { "analysis_explanation": null, "end": 593506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593502 }, { "analysis_explanation": null, "end": 593551, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593542 }, { "analysis_explanation": null, "end": 593686, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593682 }, { "analysis_explanation": null, "end": 593717, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593714 }, { "analysis_explanation": null, "end": 593842, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593833 }, { "analysis_explanation": null, "end": 594388, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 594384 }, { "analysis_explanation": null, "end": 594503, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 594494 }, { "analysis_explanation": null, "end": 594602, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 594598 }, { "analysis_explanation": null, "end": 594863, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 594857 }, { "analysis_explanation": null, "end": 595013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595007 }, { "analysis_explanation": null, "end": 595026, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595022 }, { "analysis_explanation": null, "end": 595046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595043 }, { "analysis_explanation": null, "end": 595102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595098 }, { "analysis_explanation": null, "end": 595144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595138 }, { "analysis_explanation": null, "end": 595265, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595260 }, { "analysis_explanation": null, "end": 595352, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595345 }, { "analysis_explanation": null, "end": 595391, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595385 }, { "analysis_explanation": null, "end": 595432, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595425 }, { "analysis_explanation": null, "end": 595439, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595435 }, { "analysis_explanation": null, "end": 595664, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595658 }, { "analysis_explanation": null, "end": 595701, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595690 }, { "analysis_explanation": null, "end": 595763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595757 }, { "analysis_explanation": null, "end": 596141, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 596137 }, { "analysis_explanation": null, "end": 596162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 596158 }, { "analysis_explanation": null, "end": 596297, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 596288 }, { "analysis_explanation": null, "end": 596438, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 596434 }, { "analysis_explanation": null, "end": 596490, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 596486 }, { "analysis_explanation": null, "end": 596706, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 596695 }, { "analysis_explanation": null, "end": 596778, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 596756 }, { "analysis_explanation": null, "end": 597597, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 597587 }, { "analysis_explanation": null, "end": 597811, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 597804 }, { "analysis_explanation": null, "end": 597819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 597815 }, { "analysis_explanation": null, "end": 597891, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 597882 }, { "analysis_explanation": null, "end": 597921, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 597915 }, { "analysis_explanation": null, "end": 597928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 597924 }, { "analysis_explanation": null, "end": 598127, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598121 }, { "analysis_explanation": null, "end": 598186, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598182 }, { "analysis_explanation": null, "end": 598214, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598210 }, { "analysis_explanation": null, "end": 598335, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598331 }, { "analysis_explanation": null, "end": 598508, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598498 }, { "analysis_explanation": null, "end": 598811, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598801 }, { "analysis_explanation": null, "end": 598832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598818 }, { "analysis_explanation": null, "end": 598888, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598880 }, { "analysis_explanation": null, "end": 598926, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598910 }, { "analysis_explanation": null, "end": 599136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 599132 }, { "analysis_explanation": null, "end": 599403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 599399 }, { "analysis_explanation": null, "end": 599667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 599662 }, { "analysis_explanation": null, "end": 599682, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 599672 }, { "analysis_explanation": null, "end": 599728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 599709 }, { "analysis_explanation": null, "end": 600011, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 600006 }, { "analysis_explanation": null, "end": 600297, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 600292 }, { "analysis_explanation": null, "end": 600365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 600361 }, { "analysis_explanation": null, "end": 600498, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 600491 }, { "analysis_explanation": null, "end": 600776, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 600772 }, { "analysis_explanation": null, "end": 600902, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 600898 }, { "analysis_explanation": null, "end": 600953, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 600939 }, { "analysis_explanation": null, "end": 601358, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 601349 }, { "analysis_explanation": null, "end": 602273, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 602264 }, { "analysis_explanation": null, "end": 602698, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 602689 }, { "analysis_explanation": null, "end": 602733, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 602729 }, { "analysis_explanation": null, "end": 602953, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 602948 }, { "analysis_explanation": null, "end": 602983, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 602976 }, { "analysis_explanation": null, "end": 603094, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 603090 }, { "analysis_explanation": null, "end": 603106, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 603097 }, { "analysis_explanation": null, "end": 603628, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 603619 }, { "analysis_explanation": null, "end": 603799, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 603790 }, { "analysis_explanation": null, "end": 603845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 603841 }, { "analysis_explanation": null, "end": 604203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 604195 }, { "analysis_explanation": null, "end": 604215, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 604206 }, { "analysis_explanation": null, "end": 604603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 604599 }, { "analysis_explanation": null, "end": 605441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 605427 }, { "analysis_explanation": null, "end": 605539, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 605535 }, { "analysis_explanation": null, "end": 605970, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 605967 }, { "analysis_explanation": null, "end": 606193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606189 }, { "analysis_explanation": null, "end": 606306, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606303 }, { "analysis_explanation": null, "end": 606352, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606343 }, { "analysis_explanation": null, "end": 606485, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606481 }, { "analysis_explanation": null, "end": 606527, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606519 }, { "analysis_explanation": null, "end": 606623, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606620 }, { "analysis_explanation": null, "end": 606638, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606630 }, { "analysis_explanation": null, "end": 606694, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606685 }, { "analysis_explanation": null, "end": 606740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606737 }, { "analysis_explanation": null, "end": 606896, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606893 }, { "analysis_explanation": null, "end": 607103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607100 }, { "analysis_explanation": null, "end": 607196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607188 }, { "analysis_explanation": null, "end": 607210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607207 }, { "analysis_explanation": null, "end": 607332, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607323 }, { "analysis_explanation": null, "end": 607338, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607334 }, { "analysis_explanation": null, "end": 607616, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607608 }, { "analysis_explanation": null, "end": 607714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607711 }, { "analysis_explanation": null, "end": 607729, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607721 }, { "analysis_explanation": null, "end": 607793, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607790 }, { "analysis_explanation": null, "end": 607864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607860 }, { "analysis_explanation": null, "end": 608613, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608609 }, { "analysis_explanation": null, "end": 608675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608672 }, { "analysis_explanation": null, "end": 608699, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608696 }, { "analysis_explanation": null, "end": 608711, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608708 }, { "analysis_explanation": null, "end": 608881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608873 }, { "analysis_explanation": null, "end": 608891, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608888 }, { "analysis_explanation": null, "end": 608930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608921 }, { "analysis_explanation": null, "end": 608966, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608958 }, { "analysis_explanation": null, "end": 609020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609011 }, { "analysis_explanation": null, "end": 609244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609241 }, { "analysis_explanation": null, "end": 609270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609261 }, { "analysis_explanation": null, "end": 609346, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609339 }, { "analysis_explanation": null, "end": 609385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609380 }, { "analysis_explanation": null, "end": 609556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609552 }, { "analysis_explanation": null, "end": 609614, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609605 }, { "analysis_explanation": null, "end": 609707, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609699 }, { "analysis_explanation": null, "end": 609752, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609749 }, { "analysis_explanation": null, "end": 609859, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609854 }, { "analysis_explanation": null, "end": 610071, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 610067 }, { "analysis_explanation": null, "end": 610162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 610159 }, { "analysis_explanation": null, "end": 610259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 610256 }, { "analysis_explanation": null, "end": 611461, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 611455 }, { "analysis_explanation": null, "end": 611486, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 611478 }, { "analysis_explanation": null, "end": 611539, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 611533 }, { "analysis_explanation": null, "end": 612002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 611995 }, { "analysis_explanation": null, "end": 612103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 612094 }, { "analysis_explanation": null, "end": 612184, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 612177 }, { "analysis_explanation": null, "end": 612221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 612214 }, { "analysis_explanation": null, "end": 612334, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 612327 }, { "analysis_explanation": null, "end": 612771, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 612768 }, { "analysis_explanation": null, "end": 612959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 612956 }, { "analysis_explanation": null, "end": 612990, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 612978 }, { "analysis_explanation": null, "end": 613290, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 613285 }, { "analysis_explanation": null, "end": 613305, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 613295 }, { "analysis_explanation": null, "end": 613714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 613710 }, { "analysis_explanation": null, "end": 613843, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 613838 }, { "analysis_explanation": null, "end": 613913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 613906 }, { "analysis_explanation": null, "end": 614170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 614158 }, { "analysis_explanation": null, "end": 614188, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 614179 }, { "analysis_explanation": null, "end": 614381, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 614374 }, { "analysis_explanation": null, "end": 614788, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 614780 }, { "analysis_explanation": null, "end": 615671, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 615657 }, { "analysis_explanation": null, "end": 616852, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 616840 }, { "analysis_explanation": null, "end": 617492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 617489 }, { "analysis_explanation": null, "end": 617926, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 617918 }, { "analysis_explanation": null, "end": 617991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 617988 }, { "analysis_explanation": null, "end": 618048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618045 }, { "analysis_explanation": null, "end": 618090, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618081 }, { "analysis_explanation": null, "end": 618170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618167 }, { "analysis_explanation": null, "end": 618254, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618250 }, { "analysis_explanation": null, "end": 618423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618420 }, { "analysis_explanation": null, "end": 618460, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618454 }, { "analysis_explanation": null, "end": 618859, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618851 }, { "analysis_explanation": null, "end": 618868, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618865 }, { "analysis_explanation": null, "end": 618943, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618940 }, { "analysis_explanation": null, "end": 619276, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 619273 }, { "analysis_explanation": null, "end": 619479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 619471 }, { "analysis_explanation": null, "end": 619547, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 619543 }, { "analysis_explanation": null, "end": 619602, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 619599 }, { "analysis_explanation": null, "end": 619613, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 619609 }, { "analysis_explanation": null, "end": 619893, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 619890 }, { "analysis_explanation": null, "end": 620050, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620046 }, { "analysis_explanation": null, "end": 620120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620101 }, { "analysis_explanation": null, "end": 620149, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620131 }, { "analysis_explanation": null, "end": 620563, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620555 }, { "analysis_explanation": null, "end": 620582, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620578 }, { "analysis_explanation": null, "end": 620771, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620764 }, { "analysis_explanation": null, "end": 620813, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620806 }, { "analysis_explanation": null, "end": 620854, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620851 }, { "analysis_explanation": null, "end": 621204, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 621197 }, { "analysis_explanation": null, "end": 621648, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 621645 }, { "analysis_explanation": null, "end": 621715, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 621707 }, { "analysis_explanation": null, "end": 621865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 621861 }, { "analysis_explanation": null, "end": 621875, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 621872 }, { "analysis_explanation": null, "end": 622314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 622311 }, { "analysis_explanation": null, "end": 622495, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 622492 }, { "analysis_explanation": null, "end": 622703, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 622699 }, { "analysis_explanation": null, "end": 622740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 622737 }, { "analysis_explanation": null, "end": 622879, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 622871 }, { "analysis_explanation": null, "end": 623139, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 623136 }, { "analysis_explanation": null, "end": 623182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 623174 }, { "analysis_explanation": null, "end": 623211, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 623208 }, { "analysis_explanation": null, "end": 623443, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 623440 }, { "analysis_explanation": null, "end": 623964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 623961 }, { "analysis_explanation": null, "end": 624089, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624086 }, { "analysis_explanation": null, "end": 624297, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624293 }, { "analysis_explanation": null, "end": 624331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624328 }, { "analysis_explanation": null, "end": 624541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624538 }, { "analysis_explanation": null, "end": 624757, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624754 }, { "analysis_explanation": null, "end": 624788, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624784 }, { "analysis_explanation": null, "end": 624818, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624807 }, { "analysis_explanation": null, "end": 625021, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625015 }, { "analysis_explanation": null, "end": 625048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625039 }, { "analysis_explanation": null, "end": 625065, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625054 }, { "analysis_explanation": null, "end": 625423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625420 }, { "analysis_explanation": null, "end": 625584, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625579 }, { "analysis_explanation": null, "end": 625620, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625612 }, { "analysis_explanation": null, "end": 625632, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625629 }, { "analysis_explanation": null, "end": 625674, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625671 }, { "analysis_explanation": null, "end": 625748, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625740 }, { "analysis_explanation": null, "end": 625836, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625833 }, { "analysis_explanation": null, "end": 625848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625844 }, { "analysis_explanation": null, "end": 625947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625938 }, { "analysis_explanation": null, "end": 626010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626002 }, { "analysis_explanation": null, "end": 626118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626115 }, { "analysis_explanation": null, "end": 626331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626326 }, { "analysis_explanation": null, "end": 626388, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626385 }, { "analysis_explanation": null, "end": 626581, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626576 }, { "analysis_explanation": null, "end": 626619, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626616 }, { "analysis_explanation": null, "end": 626757, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626754 }, { "analysis_explanation": null, "end": 626789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626785 }, { "analysis_explanation": null, "end": 626948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626945 }, { "analysis_explanation": null, "end": 626961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626956 }, { "analysis_explanation": null, "end": 626977, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626974 }, { "analysis_explanation": null, "end": 627342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 627339 }, { "analysis_explanation": null, "end": 627498, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 627492 }, { "analysis_explanation": null, "end": 627522, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 627509 }, { "analysis_explanation": null, "end": 627537, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 627532 }, { "analysis_explanation": null, "end": 627685, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 627680 }, { "analysis_explanation": null, "end": 627732, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 627729 }, { "analysis_explanation": null, "end": 627803, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 627798 }, { "analysis_explanation": null, "end": 628186, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628182 }, { "analysis_explanation": null, "end": 628258, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628253 }, { "analysis_explanation": null, "end": 628342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628339 }, { "analysis_explanation": null, "end": 628420, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628417 }, { "analysis_explanation": null, "end": 628431, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628426 }, { "analysis_explanation": null, "end": 628451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628446 }, { "analysis_explanation": null, "end": 628465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628462 }, { "analysis_explanation": null, "end": 628487, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628482 }, { "analysis_explanation": null, "end": 628571, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628568 }, { "analysis_explanation": null, "end": 628604, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628601 }, { "analysis_explanation": null, "end": 628910, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628907 }, { "analysis_explanation": null, "end": 628941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628936 }, { "analysis_explanation": null, "end": 629062, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629058 }, { "analysis_explanation": null, "end": 629210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629207 }, { "analysis_explanation": null, "end": 629309, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629304 }, { "analysis_explanation": null, "end": 629423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629420 }, { "analysis_explanation": null, "end": 629465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629461 }, { "analysis_explanation": null, "end": 629578, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629573 }, { "analysis_explanation": null, "end": 629645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629637 }, { "analysis_explanation": null, "end": 629756, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629752 }, { "analysis_explanation": null, "end": 630337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 630333 }, { "analysis_explanation": null, "end": 630614, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 630610 }, { "analysis_explanation": null, "end": 631408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 631404 }, { "analysis_explanation": null, "end": 631524, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 631521 }, { "analysis_explanation": null, "end": 632294, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 632289 }, { "analysis_explanation": null, "end": 632663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 632655 }, { "analysis_explanation": null, "end": 633547, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 633543 }, { "analysis_explanation": null, "end": 633659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 633656 }, { "analysis_explanation": null, "end": 634387, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 634381 }, { "analysis_explanation": null, "end": 634588, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 634585 }, { "analysis_explanation": null, "end": 634682, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 634675 }, { "analysis_explanation": null, "end": 634721, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 634715 }, { "analysis_explanation": null, "end": 634824, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 634821 }, { "analysis_explanation": null, "end": 635053, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 635050 }, { "analysis_explanation": null, "end": 635186, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 635183 }, { "analysis_explanation": null, "end": 635267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 635261 }, { "analysis_explanation": null, "end": 635355, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 635350 }, { "analysis_explanation": null, "end": 635432, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 635426 }, { "analysis_explanation": null, "end": 635446, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 635439 }, { "analysis_explanation": null, "end": 635461, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 635447 }, { "analysis_explanation": null, "end": 636361, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 636354 }, { "analysis_explanation": null, "end": 636639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 636631 }, { "analysis_explanation": null, "end": 636695, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 636685 }, { "analysis_explanation": null, "end": 636947, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 636940 }, { "analysis_explanation": null, "end": 637243, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 637224 }, { "analysis_explanation": null, "end": 637435, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 637430 }, { "analysis_explanation": null, "end": 637596, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 637593 }, { "analysis_explanation": null, "end": 637773, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 637765 }, { "analysis_explanation": null, "end": 637803, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 637801 }, { "analysis_explanation": null, "end": 637844, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 637842 }, { "analysis_explanation": null, "end": 638260, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 638253 }, { "analysis_explanation": null, "end": 638411, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 638408 }, { "analysis_explanation": null, "end": 638616, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 638605 }, { "analysis_explanation": null, "end": 638636, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 638631 }, { "analysis_explanation": null, "end": 638650, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 638642 }, { "analysis_explanation": null, "end": 638660, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 638657 }, { "analysis_explanation": null, "end": 638701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 638689 }, { "analysis_explanation": null, "end": 638725, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 638720 }, { "analysis_explanation": null, "end": 638730, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 638727 }, { "analysis_explanation": null, "end": 639891, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 639882 }, { "analysis_explanation": null, "end": 639991, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 639983 }, { "analysis_explanation": null, "end": 640182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640179 }, { "analysis_explanation": null, "end": 640377, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640364 }, { "analysis_explanation": null, "end": 640469, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640453 }, { "analysis_explanation": null, "end": 640488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640484 }, { "analysis_explanation": null, "end": 640539, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640533 }, { "analysis_explanation": null, "end": 640548, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640540 }, { "analysis_explanation": null, "end": 640556, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640549 }, { "analysis_explanation": null, "end": 640591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640583 }, { "analysis_explanation": null, "end": 640664, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640654 }, { "analysis_explanation": null, "end": 640777, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640756 }, { "analysis_explanation": null, "end": 640835, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640824 }, { "analysis_explanation": null, "end": 640964, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640955 }, { "analysis_explanation": null, "end": 641003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 640995 }, { "analysis_explanation": null, "end": 641292, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 641286 }, { "analysis_explanation": null, "end": 641621, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 641610 }, { "analysis_explanation": null, "end": 641927, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 641924 }, { "analysis_explanation": null, "end": 642100, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642093 }, { "analysis_explanation": null, "end": 642172, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642169 }, { "analysis_explanation": null, "end": 642275, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642272 }, { "analysis_explanation": null, "end": 642346, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642337 }, { "analysis_explanation": null, "end": 642415, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642408 }, { "analysis_explanation": null, "end": 642540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642537 }, { "analysis_explanation": null, "end": 642593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642590 }, { "analysis_explanation": null, "end": 642607, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642600 }, { "analysis_explanation": null, "end": 642637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642634 }, { "analysis_explanation": null, "end": 642660, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642653 }, { "analysis_explanation": null, "end": 642728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642725 }, { "analysis_explanation": null, "end": 642747, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642740 }, { "analysis_explanation": null, "end": 642912, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642903 }, { "analysis_explanation": null, "end": 642932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642929 }, { "analysis_explanation": null, "end": 642993, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 642984 }, { "analysis_explanation": null, "end": 643115, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643106 }, { "analysis_explanation": null, "end": 643238, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643229 }, { "analysis_explanation": null, "end": 643246, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643243 }, { "analysis_explanation": null, "end": 643404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643401 }, { "analysis_explanation": null, "end": 643501, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643494 }, { "analysis_explanation": null, "end": 643555, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643552 }, { "analysis_explanation": null, "end": 643622, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643614 }, { "analysis_explanation": null, "end": 643728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643711 }, { "analysis_explanation": null, "end": 643761, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643754 }, { "analysis_explanation": null, "end": 643966, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643963 }, { "analysis_explanation": null, "end": 644011, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643999 }, { "analysis_explanation": null, "end": 644053, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644046 }, { "analysis_explanation": null, "end": 644148, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644141 }, { "analysis_explanation": null, "end": 644176, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644164 }, { "analysis_explanation": null, "end": 644192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644189 }, { "analysis_explanation": null, "end": 644349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644345 }, { "analysis_explanation": null, "end": 644543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644540 }, { "analysis_explanation": null, "end": 644599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644596 }, { "analysis_explanation": null, "end": 644760, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644752 }, { "analysis_explanation": null, "end": 644772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644769 }, { "analysis_explanation": null, "end": 644996, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644989 }, { "analysis_explanation": null, "end": 645072, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645060 }, { "analysis_explanation": null, "end": 645084, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645076 }, { "analysis_explanation": null, "end": 645105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645101 }, { "analysis_explanation": null, "end": 645268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645265 }, { "analysis_explanation": null, "end": 645324, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645320 }, { "analysis_explanation": null, "end": 645395, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645392 }, { "analysis_explanation": null, "end": 645580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645577 }, { "analysis_explanation": null, "end": 645641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645638 }, { "analysis_explanation": null, "end": 645781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645775 }, { "analysis_explanation": null, "end": 645792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645785 }, { "analysis_explanation": null, "end": 645819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645815 }, { "analysis_explanation": null, "end": 645881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645877 }, { "analysis_explanation": null, "end": 645905, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645902 }, { "analysis_explanation": null, "end": 645945, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645942 }, { "analysis_explanation": null, "end": 646023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646015 }, { "analysis_explanation": null, "end": 646102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646099 }, { "analysis_explanation": null, "end": 646183, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646175 }, { "analysis_explanation": null, "end": 646210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646197 }, { "analysis_explanation": null, "end": 646223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646219 }, { "analysis_explanation": null, "end": 646259, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646246 }, { "analysis_explanation": null, "end": 646281, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646277 }, { "analysis_explanation": null, "end": 646297, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646291 }, { "analysis_explanation": null, "end": 646309, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646302 }, { "analysis_explanation": null, "end": 646323, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646319 }, { "analysis_explanation": null, "end": 646409, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646392 }, { "analysis_explanation": null, "end": 646418, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646414 }, { "analysis_explanation": null, "end": 646430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646423 }, { "analysis_explanation": null, "end": 646487, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646479 }, { "analysis_explanation": null, "end": 646551, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646545 }, { "analysis_explanation": null, "end": 646584, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646577 }, { "analysis_explanation": null, "end": 646670, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646666 }, { "analysis_explanation": null, "end": 646799, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646793 }, { "analysis_explanation": null, "end": 646828, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646820 }, { "analysis_explanation": null, "end": 646932, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646923 }, { "analysis_explanation": null, "end": 646973, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646967 }, { "analysis_explanation": null, "end": 647007, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 646989 }, { "analysis_explanation": null, "end": 647023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647017 }, { "analysis_explanation": null, "end": 647297, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647291 }, { "analysis_explanation": null, "end": 647430, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647420 }, { "analysis_explanation": null, "end": 647452, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647432 }, { "analysis_explanation": null, "end": 647549, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647545 }, { "analysis_explanation": null, "end": 647638, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647626 }, { "analysis_explanation": null, "end": 647696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647684 }, { "analysis_explanation": null, "end": 647717, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647713 }, { "analysis_explanation": null, "end": 647754, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647748 }, { "analysis_explanation": null, "end": 647800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647784 }, { "analysis_explanation": null, "end": 647841, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647837 }, { "analysis_explanation": null, "end": 647865, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647847 }, { "analysis_explanation": null, "end": 647881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647866 }, { "analysis_explanation": null, "end": 648090, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648086 }, { "analysis_explanation": null, "end": 648268, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648259 }, { "analysis_explanation": null, "end": 648301, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648295 }, { "analysis_explanation": null, "end": 648314, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648303 }, { "analysis_explanation": null, "end": 648327, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648320 }, { "analysis_explanation": null, "end": 648386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648382 }, { "analysis_explanation": null, "end": 648419, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648401 }, { "analysis_explanation": null, "end": 648590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648575 }, { "analysis_explanation": null, "end": 648700, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648695 }, { "analysis_explanation": null, "end": 648722, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648716 }, { "analysis_explanation": null, "end": 648814, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648807 }, { "analysis_explanation": null, "end": 648874, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648867 }, { "analysis_explanation": null, "end": 648886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648879 }, { "analysis_explanation": null, "end": 648895, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648889 }, { "analysis_explanation": null, "end": 648964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 648958 }, { "analysis_explanation": null, "end": 649028, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649022 }, { "analysis_explanation": null, "end": 649180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649176 }, { "analysis_explanation": null, "end": 649333, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649327 }, { "analysis_explanation": null, "end": 649638, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649631 }, { "analysis_explanation": null, "end": 649713, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649709 }, { "analysis_explanation": null, "end": 649749, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649742 }, { "analysis_explanation": null, "end": 649821, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649814 }, { "analysis_explanation": null, "end": 649847, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649842 }, { "analysis_explanation": null, "end": 649949, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649939 }, { "analysis_explanation": null, "end": 650316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650309 }, { "analysis_explanation": null, "end": 650454, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650447 }, { "analysis_explanation": null, "end": 650605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650600 }, { "analysis_explanation": null, "end": 650763, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650756 }, { "analysis_explanation": null, "end": 650774, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650768 }, { "analysis_explanation": null, "end": 650800, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650796 }, { "analysis_explanation": null, "end": 650914, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650910 }, { "analysis_explanation": null, "end": 651008, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650990 }, { "analysis_explanation": null, "end": 651088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 651082 }, { "analysis_explanation": null, "end": 651208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 651201 }, { "analysis_explanation": null, "end": 651270, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 651264 }, { "analysis_explanation": null, "end": 651392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 651386 }, { "analysis_explanation": null, "end": 651601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 651597 }, { "analysis_explanation": null, "end": 651839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 651833 }, { "analysis_explanation": null, "end": 652079, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652073 }, { "analysis_explanation": null, "end": 652145, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652135 }, { "analysis_explanation": null, "end": 652222, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652207 }, { "analysis_explanation": null, "end": 652272, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652264 }, { "analysis_explanation": null, "end": 652611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652600 }, { "analysis_explanation": null, "end": 652722, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652718 }, { "analysis_explanation": null, "end": 653099, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653090 }, { "analysis_explanation": null, "end": 653222, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653207 }, { "analysis_explanation": null, "end": 653263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653229 }, { "analysis_explanation": null, "end": 653304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653300 }, { "analysis_explanation": null, "end": 653370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653365 }, { "analysis_explanation": null, "end": 653444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653440 }, { "analysis_explanation": null, "end": 653537, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653531 }, { "analysis_explanation": null, "end": 653590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653586 }, { "analysis_explanation": null, "end": 653670, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653664 }, { "analysis_explanation": null, "end": 653820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653802 }, { "analysis_explanation": null, "end": 653846, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653839 }, { "analysis_explanation": null, "end": 653868, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653851 }, { "analysis_explanation": null, "end": 653944, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653938 }, { "analysis_explanation": null, "end": 654005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653999 }, { "analysis_explanation": null, "end": 654051, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654046 }, { "analysis_explanation": null, "end": 654068, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654061 }, { "analysis_explanation": null, "end": 654114, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654110 }, { "analysis_explanation": null, "end": 654157, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654153 }, { "analysis_explanation": null, "end": 654347, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654342 }, { "analysis_explanation": null, "end": 654483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654478 }, { "analysis_explanation": null, "end": 654500, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654496 }, { "analysis_explanation": null, "end": 654576, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654572 }, { "analysis_explanation": null, "end": 654933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654928 }, { "analysis_explanation": null, "end": 655080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655074 }, { "analysis_explanation": null, "end": 655107, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655082 }, { "analysis_explanation": null, "end": 655116, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655111 }, { "analysis_explanation": null, "end": 655192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655186 }, { "analysis_explanation": null, "end": 655363, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655352 }, { "analysis_explanation": null, "end": 655485, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655480 }, { "analysis_explanation": null, "end": 655569, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655561 }, { "analysis_explanation": null, "end": 655779, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655762 }, { "analysis_explanation": null, "end": 655808, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655803 }, { "analysis_explanation": null, "end": 655856, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655833 }, { "analysis_explanation": null, "end": 655912, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655907 }, { "analysis_explanation": null, "end": 655961, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 655955 }, { "analysis_explanation": null, "end": 656039, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656033 }, { "analysis_explanation": null, "end": 656054, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656049 }, { "analysis_explanation": null, "end": 656130, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656124 }, { "analysis_explanation": null, "end": 656261, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656254 }, { "analysis_explanation": null, "end": 656292, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656287 }, { "analysis_explanation": null, "end": 656529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656512 }, { "analysis_explanation": null, "end": 656619, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656614 }, { "analysis_explanation": null, "end": 656663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656654 }, { "analysis_explanation": null, "end": 656724, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656717 }, { "analysis_explanation": null, "end": 656763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656754 }, { "analysis_explanation": null, "end": 656887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656882 }, { "analysis_explanation": null, "end": 656992, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 656988 }, { "analysis_explanation": null, "end": 657217, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657212 }, { "analysis_explanation": null, "end": 657704, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657696 }, { "analysis_explanation": null, "end": 657741, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657736 }, { "analysis_explanation": null, "end": 657807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657802 }, { "analysis_explanation": null, "end": 657874, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657860 }, { "analysis_explanation": null, "end": 657904, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657876 }, { "analysis_explanation": null, "end": 657910, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657905 }, { "analysis_explanation": null, "end": 657978, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657973 }, { "analysis_explanation": null, "end": 658122, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658117 }, { "analysis_explanation": null, "end": 658298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658273 }, { "analysis_explanation": null, "end": 658350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658345 }, { "analysis_explanation": null, "end": 658490, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658485 }, { "analysis_explanation": null, "end": 658510, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658505 }, { "analysis_explanation": null, "end": 658577, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658572 }, { "analysis_explanation": null, "end": 658792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658787 }, { "analysis_explanation": null, "end": 658879, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658862 }, { "analysis_explanation": null, "end": 658898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658891 }, { "analysis_explanation": null, "end": 658906, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658901 }, { "analysis_explanation": null, "end": 659058, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659043 }, { "analysis_explanation": null, "end": 659312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659305 }, { "analysis_explanation": null, "end": 659443, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659437 }, { "analysis_explanation": null, "end": 659540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659535 }, { "analysis_explanation": null, "end": 659611, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659605 }, { "analysis_explanation": null, "end": 659712, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659707 }, { "analysis_explanation": null, "end": 659849, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659842 }, { "analysis_explanation": null, "end": 659915, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659910 }, { "analysis_explanation": null, "end": 659934, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 659927 }, { "analysis_explanation": null, "end": 660014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660009 }, { "analysis_explanation": null, "end": 660149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660131 }, { "analysis_explanation": null, "end": 660388, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660370 }, { "analysis_explanation": null, "end": 660617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660612 }, { "analysis_explanation": null, "end": 660895, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660880 }, { "analysis_explanation": null, "end": 660973, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660968 }, { "analysis_explanation": null, "end": 661220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661210 }, { "analysis_explanation": null, "end": 661284, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661278 }, { "analysis_explanation": null, "end": 661355, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661351 }, { "analysis_explanation": null, "end": 661374, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661370 }, { "analysis_explanation": null, "end": 661392, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661386 }, { "analysis_explanation": null, "end": 661491, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661485 }, { "analysis_explanation": null, "end": 661518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661514 }, { "analysis_explanation": null, "end": 661527, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661520 }, { "analysis_explanation": null, "end": 661538, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661532 }, { "analysis_explanation": null, "end": 661690, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661679 }, { "analysis_explanation": null, "end": 661823, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661811 }, { "analysis_explanation": null, "end": 661974, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661943 }, { "analysis_explanation": null, "end": 662343, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 662331 }, { "analysis_explanation": null, "end": 662383, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 662379 }, { "analysis_explanation": null, "end": 663883, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 663872 }, { "analysis_explanation": null, "end": 664286, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 664277 }, { "analysis_explanation": null, "end": 664905, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 664895 }, { "analysis_explanation": null, "end": 665182, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 665176 }, { "analysis_explanation": null, "end": 665207, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 665198 }, { "analysis_explanation": null, "end": 665220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 665212 }, { "analysis_explanation": null, "end": 665973, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 665968 }, { "analysis_explanation": null, "end": 666269, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 666261 }, { "analysis_explanation": null, "end": 666800, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 666783 }, { "analysis_explanation": null, "end": 667070, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 667050 }, { "analysis_explanation": null, "end": 667130, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 667110 }, { "analysis_explanation": null, "end": 667645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 667637 }, { "analysis_explanation": null, "end": 668001, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 667994 }, { "analysis_explanation": null, "end": 668255, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 668239 }, { "analysis_explanation": null, "end": 668886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 668877 }, { "analysis_explanation": null, "end": 669497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 669493 }, { "analysis_explanation": null, "end": 670557, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 670549 }, { "analysis_explanation": null, "end": 670963, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 670946 }, { "analysis_explanation": null, "end": 671127, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 671105 }, { "analysis_explanation": null, "end": 671463, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 671448 }, { "analysis_explanation": null, "end": 671743, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 671736 }, { "analysis_explanation": null, "end": 671757, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 671750 }, { "analysis_explanation": null, "end": 672095, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 672085 }, { "analysis_explanation": null, "end": 672567, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 672564 }, { "analysis_explanation": null, "end": 672666, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 672657 }, { "analysis_explanation": null, "end": 672928, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 672902 }, { "analysis_explanation": null, "end": 673026, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 673006 }, { "analysis_explanation": null, "end": 673210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 673207 }, { "analysis_explanation": null, "end": 673326, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 673319 }, { "analysis_explanation": null, "end": 673355, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 673349 }, { "analysis_explanation": null, "end": 673458, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 673451 }, { "analysis_explanation": null, "end": 673682, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 673673 }, { "analysis_explanation": null, "end": 674107, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674101 }, { "analysis_explanation": null, "end": 674126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674108 }, { "analysis_explanation": null, "end": 674198, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674190 }, { "analysis_explanation": null, "end": 674232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674224 }, { "analysis_explanation": null, "end": 674306, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674298 }, { "analysis_explanation": null, "end": 674444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674436 }, { "analysis_explanation": null, "end": 674589, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674576 }, { "analysis_explanation": null, "end": 674694, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674686 }, { "analysis_explanation": null, "end": 674750, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674748 }, { "analysis_explanation": null, "end": 674848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674838 }, { "analysis_explanation": null, "end": 674867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674855 }, { "analysis_explanation": null, "end": 674913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674905 }, { "analysis_explanation": null, "end": 674971, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674953 }, { "analysis_explanation": null, "end": 675040, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 675034 }, { "analysis_explanation": null, "end": 675066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 675061 }, { "analysis_explanation": null, "end": 675087, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 675079 }, { "analysis_explanation": null, "end": 675171, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 675161 }, { "analysis_explanation": null, "end": 675437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 675432 }, { "analysis_explanation": null, "end": 675541, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 675521 }, { "analysis_explanation": null, "end": 675579, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 675571 }, { "analysis_explanation": null, "end": 675997, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 675988 }, { "analysis_explanation": null, "end": 676087, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676081 }, { "analysis_explanation": null, "end": 676097, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676089 }, { "analysis_explanation": null, "end": 676108, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676099 }, { "analysis_explanation": null, "end": 676153, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676147 }, { "analysis_explanation": null, "end": 676234, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676231 }, { "analysis_explanation": null, "end": 676242, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676236 }, { "analysis_explanation": null, "end": 676288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676277 }, { "analysis_explanation": null, "end": 676329, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676318 }, { "analysis_explanation": null, "end": 676360, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676352 }, { "analysis_explanation": null, "end": 676373, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676362 }, { "analysis_explanation": null, "end": 676425, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676411 }, { "analysis_explanation": null, "end": 676549, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676536 }, { "analysis_explanation": null, "end": 676142, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 676111 }, { "analysis_explanation": null, "end": 676272, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 676245 }, { "analysis_explanation": null, "end": 676406, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 676376 }, { "analysis_explanation": null, "end": 676531, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 676501 }, { "analysis_explanation": null, "end": 676647, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 676619 }, { "analysis_explanation": null, "end": 183, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 160 }, { "analysis_explanation": null, "end": 3587, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3574 }, { "analysis_explanation": null, "end": 169866, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 169854 }, { "analysis_explanation": null, "end": 675957, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 675937 }, { "analysis_explanation": null, "end": 648454, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 648450 }, { "analysis_explanation": null, "end": 16794, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16782 }, { "analysis_explanation": null, "end": 17584, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17582 }, { "analysis_explanation": null, "end": 37016, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 37014 }, { "analysis_explanation": null, "end": 37876, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 37873 }, { "analysis_explanation": null, "end": 124933, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 124930 }, { "analysis_explanation": null, "end": 151007, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 151005 }, { "analysis_explanation": null, "end": 317994, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 317991 }, { "analysis_explanation": null, "end": 627590, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 627587 }, { "analysis_explanation": null, "end": 1283, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 1270 }, { "analysis_explanation": null, "end": 1329, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 1316 }, { "analysis_explanation": null, "end": 1283, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1270 }, { "analysis_explanation": null, "end": 1329, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1316 } ]
[ "Q:\n\nHow to create extension method taking lambda expression\n\nGreetings,\nI'm looking for a way to convert \nforeach (var sEvent in Events)\n{\n sEvent.", "SomeId = 0;\n}\n\nto\nEvents.", "Set(m=>m.", "SomeId, 0); \n\nor something like this.", "\nSo basicly I want to make it a one line event that sets all \"SomeId\" to 0;\nIs there any way?", "\n\nA:\n\nIf Events is a List<T> you can use:\nEvents.", "ForEach( m => m.SomeId = 0 );\n\nIf Events is IEnumerable, ForEach is not implemented, but you can of course make your own ForEach that works on IEnumerable yourself. ", "The reason ForEach is not created for IEnumerable, is that they did not want to have extension method on IEnumerable with side effects (that altered the original collection).", "\nImplementing ForEach on IEnumerable is easy enough:\npublic static IEnumerable<T> ForEach<T>(this IEnumerable<T> source, Action<T> action)\n{\n foreach (T element in source) \n action(element);\n return source;\n}\n\nThis has to go into a static class just like all other extension methods.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.013333333333333334, 0, 0.1111111111111111, 0, 0, 0, 0, 0.005747126436781609, 0, 0 ]
0.013019
5
[ { "analysis_explanation": null, "end": 373, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 366 }, { "analysis_explanation": null, "end": 430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423 }, { "analysis_explanation": null, "end": 494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487 }, { "analysis_explanation": null, "end": 549, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542 }, { "analysis_explanation": null, "end": 726, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 719 }, { "analysis_explanation": null, "end": 384, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 380 } ]
[ "Q:\n\nIs it possible to insert row into the child table of FOREIGN KEY?", "\n\nI have three tables in my database: \nCOMPANY(ID, NAME) \nCOUPON(ID, TITLE) \nCOMPANY_COUPON(COMPANY_ID, COUPON_ID)\n\nCompany can create coupons, so when it creates coupon, coupon's ID and ID of the company will be added into COMPANY_COUPON table. ", "When company deletes coupon it also will be deleted from COUPON and COMPANY_COUPON due to FOREIGN KEY. ", "When I delete company it also deleted from COMPANY and COMPANY_COUPON due to FOREIGN KEY, but all its coupons stay in COUPON table, I tried to add into COUPON table FOREIGN KEY(ID) REFERENCES COMPANY_COUPON(COUPON_ID), but because of it I can't insert new coupons into COUPON table.", "\nWill be happy for answers how to create right tables and how to add something that will help to existing tables.", "\nMaybe some joins can help with it, I'm really not strong in sql command yet, sorry...\nAlso, i was using this method to join COMPANY_ID and COUPON_ID in COMPANY_COUPON table, maybe there is some better way to do it.", "\n@Override\npublic void linkCompanyCoupon(long companyID, long couponID) throws CouponSystemException {\n\n Connection connection = pool.getConnection();\n\n String CREATE_COUPON = \"INSERT INTO COMPANY_COUPON (COMPANY_ID, COUPON_ID) VALUES (?,?)\";", "\n\n try (PreparedStatement pstmt = connection.prepareStatement(CREATE_COUPON)) {\n pstmt.setLong(1, companyID);\n pstmt.setLong(2, couponID);\n pstmt.executeUpdate();\n } catch (SQLException e) {\n throw new CouponSystemException(\"Linking company to the coupon is failed. \", ", "e);\n } finally {\n pool.returnConnection(connection);\n }\n}\n\nThis one is creates coupon, and inside it i use linkCompanyCoupon();\npublic void createCoupon(Coupon coupon) throws CouponSystemException {\n\n // Checking if name of the new coupon is not duplicate\n Optional<Coupon> isCouponTitleDuplicate = Optional.ofNullable(couponDBDAO.getCouponByTitle(coupon.getTitle()));\n\n if (!", "isCouponTitleDuplicate.isPresent()) {\n\n couponDBDAO.createCoupon(coupon);\n\n companyDBDAO.linkCompanyCoupon(loggedCompany, couponDBDAO.getCouponByTitle(coupon.getTitle()).getId());\n\n } else {\n throw new CouponSystemException(\"Coupon title: \" + coupon.getTitle()\n + \" already exists in database, titles and IDs of the coupons must be unique.\");", "\n }\n}\n\nA:\n\nYour database design is not properly normalized for your use case. ", "Hou have a 1-to-N relationship where each company can have multiple coupons and each coupon belongs to a single company. ", "You don't need table COMPANY_COUPON to represent that relationshiip. ", "The correct way to proceed is to store a reference to COMPANY.ID in table COUPON.", "\nALTER TABLE coupon \n ADD company_id INT NOT NULL DEFAULT 0;\nALTER TABLE coupon\n ADD CONSTRAINT fk_company_id FOREIGN KEY (company_id) \n REFERENCES company(id)\n ON DELETE CASCADE;\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.014492753623188406, 0.020080321285140562, 0.009708737864077669, 0.014184397163120567, 0, 0.009302325581395349, 0.024193548387096774, 0.013201320132013201, 0, 0.0026246719160104987, 0, 0, 0.014492753623188406, 0, 0.031088082901554404 ]
0.010225
5
[ { "analysis_explanation": null, "end": 309, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295 }, { "analysis_explanation": null, "end": 380, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 374 }, { "analysis_explanation": null, "end": 399, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 385 }, { "analysis_explanation": null, "end": 489, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475 }, { "analysis_explanation": null, "end": 544, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 538 }, { "analysis_explanation": null, "end": 599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593 }, { "analysis_explanation": null, "end": 695, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 689 }, { "analysis_explanation": null, "end": 982, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 968 }, { "analysis_explanation": null, "end": 1209, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1196 }, { "analysis_explanation": null, "end": 1239, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1225 }, { "analysis_explanation": null, "end": 1351, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1310 }, { "analysis_explanation": null, "end": 1787, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1764 }, { "analysis_explanation": null, "end": 2080, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2065 }, { "analysis_explanation": null, "end": 2125, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2111 }, { "analysis_explanation": null, "end": 2149, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2140 }, { "analysis_explanation": null, "end": 2436, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2433 }, { "analysis_explanation": null, "end": 2448, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2444 }, { "analysis_explanation": null, "end": 2589, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2575 }, { "analysis_explanation": null, "end": 2703, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2697 }, { "analysis_explanation": null, "end": 1169, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1162 }, { "analysis_explanation": null, "end": 1323, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1310 }, { "analysis_explanation": null, "end": 1372, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1364 }, { "analysis_explanation": null, "end": 1409, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1401 }, { "analysis_explanation": null, "end": 1611, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1604 }, { "analysis_explanation": null, "end": 1928, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1914 }, { "analysis_explanation": null, "end": 1952, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1943 }, { "analysis_explanation": null, "end": 2000, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1975 }, { "analysis_explanation": null, "end": 2036, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2022 }, { "analysis_explanation": null, "end": 2251, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2242 }, { "analysis_explanation": null, "end": 2687, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2677 } ]
[ "The invention relates to a process and the associated device for the fine crushing of mineral and non-mineral substances, preferably cement raw materials and cement clinker, by single or repeated compressive-load application using medium to high pressures (60 to 300 bar/6 to 30 Mpa) with subsequent disagglomeration of the produced ground material on the same device.", "\nThe fine crushing of mineral and non-mineral substances, such as e.g. cement raw materials or cement clinkers, is normally carried out in tubular ball and rolling mills and recently also in high-pressure crushing rollers. ", "Although high-pressure crushing rollers have displaced the tubular mill in recent years because of their better utilization of energy, this mill, in which the compressive-load is applied to the material using high to very high pressure forces, can still be improved.", "\nThe compressive crushing of material layers in a high-pressure crushing roller, called material-bed rolling mill according to DE-B2-27 08 053 and characterized essentially in that the crushing is carried out by a single compressive-load application between two surfaces at pressures well above 50 MPa in the gap between two cylindrical rolls driven in opposite directions, has decisive disadvantages.", "\nFirstly, high-pressure crushing rollers operate at very high pressures, i.e. with relative pressing forces between 10 to 20 kN/mm load-application range which lie many times higher than with other crushing machines using pressure mechanisms. ", "The freedom to set these pressing forces is limited, as the mill, for reasons of vibration, must always be operated in the border range of its load-application over a level-controlled material bunker, comparable to the operation of a compacting press. ", "The operation of the mill in this border range is, depending on the material, already characterized by the onset of a consolidation of the material layer to which the load is applied and characterized by a dis-proportionally high energy consumption in relation to the production of fine material, which normally rises linearly up to pressures of 50 MPa, but comes to a stop when a further load is applied. ", "The use of high to very high pressing forces leads to a very heavy machine structure and a costly roller bearing system with complicated bearing lubrication and bearing cooling. ", "Torque peaks, caused by foreign bodies, by skewing of the moving roller or by ventilation problems, can lead to serious damage on the armoured load-application surfaces of the rollers, to bearings, transmission elements and gears. ", "The wear of the load-application surfaces, which often achieve service lives of only 5,000 operating hours, depending on the abrasivity of the material to be ground, is also problematic.", "\nSecondly, high-pressure crushing rollers have an unfavourable throughput-to-speed behaviour. ", "The throughput characteristic line of a pair of rollers charged by a feed bunker is non-linear, i.e., depending on the material properties and the geometry of the load-application surfaces, the throughput can drop by up to 50% with increasing circumferential speed. ", "In addition, the fitted material bunker is not in a position to mix the fresh material with the recycling material and feed them to the roller gap in the mass flow, i.e. the load applied at the roller gap is in no way defined. ", "Because of this fact and bearing in mind the vibration behaviour of the mill, which also depends very much on the particle size composition of the feed material and deteriorates with increasing speed, the circumferential speeds of high-pressure crushing rollers which are achievable in practice lie in general only between 1.0 and 1.8 m/s. The throughput of high-pressure crushing rollers thus remains limited. ", "Large throughputs are therefore possible only through the widening of the grinding rollers with a proportional increase in the pressing forces, which is however limited in terms of machine technology.", "\nThirdly, high-pressure crushing rollers always lead to a multi-stage technology inside a crushing plant, as it carries out only preliminary crushing during most applications and has to be connected, via external transport routes, to appropriate apparatuses for the disaglomeration, separating, final crushing and drying of the ground material. ", "The machine-, construction- and control-related expenditure for a crushing plant with high-pressure crushing rollers is not therefore generally lower than when using other mills. (", "Feige, F.: Entwicklungsstand der Hockdruckzerkleinerung, ZKG INTERNATIONAL 46 (1993) No. ", "9, p. 586-595).", "\nThe object of the invention is to provide a corresponding crushing device which is suitable for crushing mineral and non-mineral substances by compressive load-application in one or more load-application stages with subsequent disagglomeration with a lower outlay on machines, and for achieving appropriate material throughputs with comparatively high energy utilization.", "\nThis object is achieved in process terms according to the invention by the measures according to claim 1 and in device terms with the measures according to claim 9. ", "Advantageous designs of the invention are stated in the dependent claims.", "\nAccording to the invention, the material to be ground consisting as a rule of fresh and recycling material, is removed by metered feed, preferably gravimetric, from a feed bunker by a grinding belt designed as a plate conveyor, subjected to loading by a hydropneumatically operated pressure roller and then dissaglomerated by a fast-running striking mechanism in the discharge area of the drive tumbler. ", "By arranging a breaker rotor between the feed bunker and the pressure roller, a preliminary crushing can also take place of the material layer, or else, using a second pressure roller, e.g. instead of the breaker rotor, a preliminary load application or preliminary compression. ", "The preliminary compression stage, which-is always connected to a ventilator for the material layer, can also be used to compact the material, applying suitably high pressures in the gap forming from the plate conveyor and pressure roller. ", "A dissagglomerator can be dispensed with if the crushing device does not operate in a cycle with a separator and the final crushing takes place say in a downstream-connected tubular mill.", "\nThe device according to the invention consists of an elastically operated pressure roller which is preferably arranged vertically over the driver tumbler, also in the form of a roller, of the continuous plate conveyor, so that an adjustable gap forms between the pressure roller and the plate conveyor, in which the material layer located on the plate conveyor is crushed with subsequent disagglomeration by a striking rotor preferably arranged offset at 90xc2x0 in the rotation direction of the drive tumbler.", "\nThe solution according to the invention which realizes these features, has numerous advantages vis-à-vis high-pressure crushing rollers. ", "In terms of process engineering, the advantages of the new crushing device, which will be called a belt roller mill in view of its structure and its mode of operation, are that the applied pressure levels can be freely adjusted, lie well below the pressures applied with high-pressure crushing rollers and the load is applied to the material layer in the compression section. ", "For the crushing device according to the invention, pressures of 6 to 30 MPa are applied. ", "For limestone of grain size K80 less than 40 mm and a hardness of 3.5 to 3.8 Mohs, pressures of 6 to 9 MPa are e.g. generally applied. ", "The speed of the grinding path and the throughput are limited neither by the influence of inertia forces nor by the composition of the material to be ground nor by ventilation problems, so that the existing linear relationship between throughput and grinding path speed can be advantageously utilized in a wide speed range for regulating the throughput. ", "With the circulating grinding path, which is designed as a plate conveyor, process operations such as bunker withdrawal, metered feed, drying or wetting can be combined, and the preliminary and fine-crushing with subsequent disagglomeration performed without intermediate transport apparatus in a single device. ", "The metered removal of the material for grinding from the feed bunker as a defined material layer and its continuous supply to the grinding roller, lead to ideal load-application conditions, improve the material intake and deliver optimal conditions for carrying out the friction drive, i.e. for drive-less entrainment of the pressure roller by the contact with the material-laden plate conveyor.", "\nThe mechanical advantages of the belt roller mill are that it is easily repaired and maintained, all parts subject to wear are easily accessible and replaceable and longer service lives can be expected for all parts subject to wear as a result of using low pressure levels and determined movement patterns. ", "In addition, the drive of the circulating load-application belt does not present any particular technical demands. ", "For very high performances, it can also be designed as a double drive. ", "The belt roller mill can be both mechanically and pneumatically connected to one or more separators in the cycle or also be advantageously used without a disagglomerator only for the preliminary crushing. ", "By utilizing the modular properties of the belt roller mill, large material throughputs can be achieved by parallel installation, by a type of double-piston- or rotation-symmetrical arrangement of two, three or four devices." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0.0024937655860349127, 0.00411522633744856, 0, 0, 0, 0.004329004329004329, 0, 0, 0, 0, 0, 0, 0, 0, 0.011235955056179775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.000569
5
[ { "analysis_explanation": null, "end": 678, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 666 }, { "analysis_explanation": null, "end": 4483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4478 }, { "analysis_explanation": null, "end": 4533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4489 }, { "analysis_explanation": null, "end": 4561, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4557 }, { "analysis_explanation": null, "end": 7450, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7447 }, { "analysis_explanation": null, "end": 989, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 987 }, { "analysis_explanation": null, "end": 7450, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7447 } ]
[ "[Bacterial flora as a potential etiopathogenic factor for nasal polyps].", "\nNasal polyps develop in patients with disturbed local homeostasis of nasal mucosa. ", "Research of Bernstein and Stoop showed the influence of inflammation of nasal mucosa on growth of nasal polyps. ", "Bacterial and viral infections play significant role in development and intensification of inflammatory and immunological process. ", "Many bacteria produce factors which damage cilia cells, cause dyskinesis of cilia and destroy respiratory epithelium. ", "Disturbed muco-ciliar cleaning permits bacteria to penetrate through mucous layer and facilitate their adhesion and colonization on the cells of respiratory epithelium. ", "Adhesion and successive colonization with bacteria multiplication can lead to inflammatory process. ", "Nose swabs results were different in each examined group. ", "The aim of this work was to define bacterial flora in patients with nasal polyps and in patients after polypectomia and to compare it to bacterial flora in healthy patients. ", "Nose swabs were performed in 51 patients with nasal polyps before polypectomia and additional in 15 patients after polypectomia. ", "25 healthy medical students were a control group. ", "The patients were divided into two groups: I. patients with nasal eosinophilic polyps, II. ", "patients with nasal neutrophilic polyps. ", "In the group of patients with both neutrophilic and eosinophilic polyps dominating bacterial flora included bacteria which usually are the cause of inflammation. ", "In the group of patients after polypectomia bacterial flora was not different from that which was found in patients with polyps." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.008928571428571428, 0, 0, 0.005917159763313609, 0, 0, 0, 0, 0, 0.02197802197802198, 0, 0, 0 ]
0.002455
5
[ { "analysis_explanation": null, "end": 187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182 }, { "analysis_explanation": null, "end": 480, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475 }, { "analysis_explanation": null, "end": 959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 947 }, { "analysis_explanation": null, "end": 1096, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1084 }, { "analysis_explanation": null, "end": 1534, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1522 } ]
[ "Glycaemic control: a balancing act or a different approach?", "\nThe prevalence of diabetes is increasing world-wide. ", "Tight glycaemic control has been shown to reduce diabetes complications in a number of landmark trials. ", "Apart from increasing the risk of microvascular and macrovascular disease, poor glycaemic control is also associated with cognitive and memory impairment as well as with mood disturbance. ", "However, tighter glycaemic control with conventional anti-hyperglycaemic medication is also associated with increased risk of hypoglycaemia. ", "There is increasing evidence that hypoglycaemia is much more than a troublesome inconvenience. ", "Indeed it is associated with acute cognitive impairment, dementia, increased risk of falls, rebound hyperglycaemia with consequent loss of glycaemic control, acute coronary syndrome and increased mortality. ", "Hence, a very difficult balance needs to be achieved so as to achieve the best glycaemic control possible, whilst avoiding hypoglycaemia. ", "This paper will briefly discuss the potential benefits of tight glycemic control and reviews the risks associated with hypoglycaemia. ", "A paradigm shift in diabetes care may be needed; use of newer anti-hyperglycemic agents with low hypoglycaemia risk may allow us to achieve good control in most patients whilst avoiding the serious consequences of hypoglycaemia. ", "This may be especially important in those at significant risk of hypoglycaemia (e.g. those with brittle diabetes) or of its consequences such as elderly patients, those in certain occupations or those with cardiovascular disease or epilepsy." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[]
[ "Behavioral and biochemical studies of dopamine receptor sensitivity in differentially housed mice.", "\nGroup housed and individually housed mice were compared in (1) the motor activity responses to direct and indirect dopamine (DA) agonists, (2) in vivo presynaptic autoreceptor sensitivity and (3) in vitro binding of 3H-spiperone. ", "Relative to group housed mice, individually housed mice showed an increased motor activity response to amphetamine, 1.25 and 0.625 mg/kg. ", "Using two in vivo measures of presynaptic DA receptor sensitivity, the antagonism of spontaneous locomotor activity and the antagonism of dihydroxyphenylalanine (DOPA) accumulation by apomorphine (APO), individually housed mice showed greater activity counts and higher DOPA accumulations than group housed mice. ", "Levels of tyrosine were significantly greater in individually housed mice. ", "Significant effects of housing were also noted with the motor activity response to APO, 0.075-0.300 mg/kg, following pretreatment with reserpine, an in vivo measure of postsynaptic receptor sensitivity. ", "However, there was no effect of housing on the number or affinity of 3H-spiperone binding sites in the striatum. ", "These results are discussed in terms of the presynaptic activity of catecholaminergic neurons and the postsynaptic receptor sensitivity to APO in individually housed mice." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0.003194888178913738, 0, 0.0049261083743842365, 0, 0.005847953216374269 ]
0.001746
5
[ { "analysis_explanation": null, "end": 662, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 651 } ]
[ "Identity\n\nLike most people in rich counties, I find myself all too often falling into the trap of thinking that identity can be purchased. ", "I could be wrong, but it seems to me that this mistaken belief is the source of endless fool’s errands. ", "Life isn’t necessarily made more authentic by acquiring this and that. ", "If anything, the acquired thing (whatever it happens to be–clothing, entertainment, etc.) ", "has no influence on character. ", "Most of the time, especially for the fortunate, the thing in question is something we already have. ", "This confirms that the thing in question is just a temporary mental fixation. ", "These fixations are an easy escape from a thornier mental issue–the quest for identity. ", "Many Mahayana Buddhists believe that identity is an illusion, that it blinds us to the reality of our interconnectedness. ", "That may well be so. ", "But for day to day life, simpler ideas will suffice. “", "I already have one,” when true, are some of the most powerful words we can speak. ", "By not filling the container to the top, we can leave space for living." ]
{ "pile_set_name": "Pile-CC" }
[ 0.007194244604316547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.000553
5
[ { "analysis_explanation": null, "end": 714, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 706 }, { "analysis_explanation": null, "end": 855, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 852 } ]
[ "Robert L. Sumwalt (entrepreneur)\n\nRobert Llewellyn Sumwalt Jr. (29 December 1927 – 11 June 2016) was an American businessman who had a successful career as a general contractor, concentrating on commercial building.", "\n\nBiography\nHe was born on December 29, 1927 in Columbia, South Carolina.", "\n\nIn 1949, he graduated from the University of South Carolina, where his father then headed the engineering school, and in 1950 from MIT with a MSci. ", " \n\nHe went to work for DuPont in Camden, South Carolina; on March 8, 1952 he married Joyce Mills (1934 - 2010).", "\n\nElizabeth S. Clark and Robert L. Sumwalt III are their children surviving .", "\n\nHe was active in various building companies including McCrory-Sumwalt Construction Co. in the 1970s (as Executive Vice-President) and later Sumwalt Construction Co. (where in 2003 he had retired from the posts of president and treasurer).", "\n\nReferences \n\nCategory:1927 births\nCategory:American businesspeople\nCategory:2016 deaths" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.009302325581395349, 0.0136986301369863, 0.013333333333333334, 0.018018018018018018, 0.025974025974025976, 0.008333333333333333, 0 ]
0.012666
5
[ { "analysis_explanation": null, "end": 17, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 62, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34 }, { "analysis_explanation": null, "end": 80, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67 }, { "analysis_explanation": null, "end": 95, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83 }, { "analysis_explanation": null, "end": 112, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104 }, { "analysis_explanation": null, "end": 258, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241 }, { "analysis_explanation": null, "end": 270, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262 }, { "analysis_explanation": null, "end": 286, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272 }, { "analysis_explanation": null, "end": 295, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291 }, { "analysis_explanation": null, "end": 413, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409 }, { "analysis_explanation": null, "end": 434, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 430 }, { "analysis_explanation": null, "end": 472, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 466 }, { "analysis_explanation": null, "end": 488, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 474 }, { "analysis_explanation": null, "end": 506, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 493 }, { "analysis_explanation": null, "end": 529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518 }, { "analysis_explanation": null, "end": 542, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 531 }, { "analysis_explanation": null, "end": 563, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545 }, { "analysis_explanation": null, "end": 589, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 568 }, { "analysis_explanation": null, "end": 720, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 711 }, { "analysis_explanation": null, "end": 800, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 796 }, { "analysis_explanation": null, "end": 911, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 903 } ]
[ "Q:\n\ndensity inequality in metric space\n\nI am given a metric space $(X,d)$ s.t. ", "$Y\\subseteq X$ is dense in $X$. Moreover, I have $U$ an open set in $X$. Is the statement $d(U\\cap Y)\\leq d(U)$ is true? ", "It seems so, but I cannot seem to be able to prove it. ", "If not, does anybody have a counter example? ", "Thanks for the help.", "\nNotation: $d(K)$ is the smallest cardinality of a dense subset of $K$.\n\nA:\n\nIn any metric (metrizable) space, the density and weight* cardinal functions are equal. ", "Furthermore, the weight cardinal function is monotone with respect to subspaces (for general topological spaces). ", "As any subspace of a metric space is metric, we have: $$d ( U \\cap Y ) = w ( U \\cap Y ) \\leq w ( U ) = d ( U ).$$\n*The weight $w(X)$ of a topological space $X$ is the smallest cardinality of a base for $X$.\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107 }, { "analysis_explanation": null, "end": 151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148 }, { "analysis_explanation": null, "end": 190, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178 }, { "analysis_explanation": null, "end": 805, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 802 } ]
[ "DNA binding site of the yeast heteromeric Ino2p/Ino4p basic helix-loop-helix transcription factor: structural requirements as defined by saturation mutagenesis.", "\nThe inositol/choline-responsive element (ICRE) is an 11 bp cis-activating sequence motif with central importance for the regulated expression of phospholipid biosynthetic genes in the yeast Saccharomyces cerevisiae. ", "The ICRE containing the CANNTG core binding sequence (E-box) of basic helix-loop-helix (bHLH) regulatory proteins is recognized by the heteromeric bHLH transcription factor Ino2p/Ino4p. ", "In this study, we define the Ino2p/Ino4p consensus binding sequence (5'-WYTTCAYR-TGS-3') based on the characterization of all possible single nucleotide substitutions. ", "Interestingly, this analysis also identified a single functional deviation (CACATTC) from the CANNTG core recognition element of bHLH proteins. ", "The DNA binding specificities of different yeast bHLH proteins may now be explained by distinct nucleotide preferences especially at two positions immediately preceding the CANNTG core motif." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0.006944444444444444, 0 ]
0.001157
5
[ { "analysis_explanation": null, "end": 528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 524 }, { "analysis_explanation": null, "end": 650, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 632 }, { "analysis_explanation": null, "end": 864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 860 } ]
[ "Q:\n\nMEF. ", "How to load a winform into winform container?", "\n\nI have decided to play a little bit with MEF2 and net3.5 and I have thought it would be easy but I am stuck now. ", "Generally the idea of my toy is I want to have form containet where I am going to load form extensions and show them. ", "I did this code\nMy extension:\n\nusing System.", "ComponentModel.", "Composition;\nusing System.", "Windows.", "Forms;\n\nnamespace MyExtantion\n{\n public interface IForm\n {\n void LoadForm(Form form);\n }\n\n [Export(typeof(IForm))]\n public partial class MyExtantion : Form, IForm\n {\n public MyExtantion()\n {\n InitializeComponent();\n }\n\n public void LoadForm(Form form)\n {\n MdiParent = form;\n Show();\n }\n\n }\n}\n\nand form container \n\nusing System;\nusing System.", "Collections.", "Generic;\nusing System.", "ComponentModel.", "Composition;\nusing System.", "ComponentModel.", "Composition.", "Hosting;\nusing System.", "Reflection;\nusing System.", "Windows.", "Forms;\n\nnamespace FormsContainer\n{\n public partial class FormContainer : Form\n {\n public FormContainer()\n {\n InitializeComponent();\n }\n\n private CompositionContainer _container;\n\n public interface IForm\n {\n void LoadForm(Form form);\n }\n\n [Import(typeof(IForm))]\n public IEnumerable Forms { get; set; }\n\n private bool Compose()\n {\n var catalog = new AggregateCatalog(\n new AssemblyCatalog(Assembly.", "GetExecutingAssembly()),\n new DirectoryCatalog(\"Extantions\"));\n var batch = new CompositionBatch();\n batch.", "AddPart(this);\n\n _container = new CompositionContainer(catalog);\n\n try\n {\n _container.", "Compose(batch);\n }\n catch (CompositionException compositionException)\n {\n MessageBox.", "Show(compositionException.", "ToString());\n return false;\n }\n\n return true;\n }\n\n private void FormContainer_Load(object sender, EventArgs e)\n {\n if (Compose())\n foreach (IForm form in Forms)\n {\n form.", "LoadForm(this);\n }\n }\n\n }\n}\n\nThe problem is I can not load my extantion and I have this error\n\n{\"The composition remains unchanged. ", "The changes were rejected because of the following error(s): The composition produced a single composition error. ", "The root cause is provided below. ", "Review the CompositionException.", "Errors property for more detailed information.\\r\\n\\r\\n1) No exports were found that match the constraint '((exportDefinition.", "ContractName = \\\"FormsContainer.", "FormContainer+IForm\\\") && (exportDefinition.", "Metadata.", "ContainsKey(\\\"ExportTypeIdentity\\\") && \\\"FormsContainer.", "FormContainer+IForm\\\".", "Equals(exportDefinition.", "Metadata.get_Item(\\\"ExportTypeIdentity\\\"))))'.\\r\\n\\r\\nResulting in: Cannot set import 'FormsContainer.", "FormContainer.", "Forms (ContractName=\\\"FormsContainer.", "FormContainer+IForm\\\")' on part 'FormsContainer.", "FormContainer'.\\r\\nElement: FormsContainer.", "FormContainer.", "Forms (ContractName=\\\"FormsContainer.", "FormContainer+IForm\\\") --> FormsContainer.", "FormContainer\\r\\n\"}\n\nHow I can achieve it with MEF? ", "and What I do wrong?", "\n\nA:\n\nYou are declaring the IForm interface in two different places. ", "\nIf you only reference one interface that both are using this code works properly.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.1111111111111111, 0, 0, 0, 0.022727272727272728, 0.06666666666666667, 0.038461538461538464, 0, 0.013513513513513514, 0, 0.09090909090909091, 0.06666666666666667, 0.038461538461538464, 0.06666666666666667, 0, 0.045454545454545456, 0.08, 0, 0.011363636363636364, 0.006944444444444444, 0, 0.007518796992481203, 0, 0.010416666666666666, 0, 0, 0, 0.03125, 0, 0, 0, 0.1111111111111111, 0, 0, 0, 0, 0.07142857142857142, 0, 0, 0.023255813953488372, 0.07142857142857142, 0, 0, 0.019230769230769232, 0, 0.014492753623188406, 0, 0 ]
0.021231
5
[ { "analysis_explanation": null, "end": 53, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36 }, { "analysis_explanation": null, "end": 100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96 }, { "analysis_explanation": null, "end": 553, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542 }, { "analysis_explanation": null, "end": 600, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 589 }, { "analysis_explanation": null, "end": 1741, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1713 }, { "analysis_explanation": null, "end": 1972, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1964 }, { "analysis_explanation": null, "end": 2921, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2910 } ]
[ "Rathin Datta\n\nRathin Datta (1931 – 27 January 2020) was an Indian physician from Tripura. ", "He was a recipient of Padma Shri and Friends of Liberation War Honour.", "\n\nBiography\nDatta was born in 1931 at Mangaldoi in Assam. ", "He completed his schooling at Shillong. ", "Later, he completed graduation from Assam Medical College in Dibrugarh. ", "He interned under Bidhan Chandra Roy. ", "Then, he went to London for Fellowship of the Royal Colleges of Surgeons.", "\n\nAfter returning to India Datta joined Tripura Health Services in the late sixties. ", "During the Liberation War of Bangladesh he gave treatment to the freedom fighters of Bangladesh and Indian soldiers. ", "He saved many lives in 1971. ", "He retired from service as the director and special secretary of the Tripura Health Services in 1992.", "\n\nDatta was conferred Padma Shri in 1992 for his contribution in medicine. ", "He was the second person from Tripura who received Padma Shri. ", "He received Friends of Liberation War Honour in 2012 for his contribution to the Liberation War of Bangladesh.", "\n\nDatta died on 27 January 2020 at his own home in Kolkata at the age of 88.", "\n\nReferences\n\nCategory:1931 births\nCategory:2020 deaths\nCategory:People from Tripura\nCategory:People of the Bangladesh Liberation War\nCategory:Recipients of the Padma Shri in medicine\nCategory:Indian medical doctors" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0.02857142857142857, 0.017241379310344827, 0.025, 0.013888888888888888, 0.02631578947368421, 0, 0.023529411764705882, 0, 0, 0.009900990099009901, 0.013333333333333334, 0.015873015873015872, 0.00909090909090909, 0, 0.004651162790697674 ]
0.011712
5
[ { "analysis_explanation": null, "end": 12, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 26, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14 }, { "analysis_explanation": null, "end": 32, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28 }, { "analysis_explanation": null, "end": 50, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35 }, { "analysis_explanation": null, "end": 65, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59 }, { "analysis_explanation": null, "end": 88, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81 }, { "analysis_explanation": null, "end": 193, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189 }, { "analysis_explanation": null, "end": 206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197 }, { "analysis_explanation": null, "end": 215, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210 }, { "analysis_explanation": null, "end": 255, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247 }, { "analysis_explanation": null, "end": 327, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318 }, { "analysis_explanation": null, "end": 365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347 }, { "analysis_explanation": null, "end": 390, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 384 }, { "analysis_explanation": null, "end": 465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460 }, { "analysis_explanation": null, "end": 522, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 506 }, { "analysis_explanation": null, "end": 619, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609 }, { "analysis_explanation": null, "end": 630, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624 }, { "analysis_explanation": null, "end": 668, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 664 }, { "analysis_explanation": null, "end": 770, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 766 }, { "analysis_explanation": null, "end": 777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 772 }, { "analysis_explanation": null, "end": 810, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 806 }, { "analysis_explanation": null, "end": 882, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 875 }, { "analysis_explanation": null, "end": 906, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 896 }, { "analysis_explanation": null, "end": 960, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 956 }, { "analysis_explanation": null, "end": 1024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1019 }, { "analysis_explanation": null, "end": 1048, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1033 }, { "analysis_explanation": null, "end": 1075, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1068 }, { "analysis_explanation": null, "end": 1092, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1079 }, { "analysis_explanation": null, "end": 1291, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1285 } ]
[ "I'm going to be a stinker and not make a list, but I'd like to say that I consider it an amazing musical year for me when I discover at least one new band whose entire catalogue I sincerely enjoy. ", "To that end, I completely agree that tastes can and should change because there's always room for more love in our musical worlds! (", "I've made mountains of room in my heart for The Wombats and WALK THE MOON this year).", "\n\n...those first five are pretty much set in stone. ", "The only change the past 20 years is that somewhere along the way, U2 eclipsed Zep for me. ", "The next five are always in flux; 2 years ago, Sarah would've been #6 and Steely Dan would've been #7, but my attentions have been elsewhere over the last 18 months." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0.01098901098901099, 0.012121212121212121 ]
0.003852
5
[ { "analysis_explanation": null, "end": 403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 390 }, { "analysis_explanation": null, "end": 413, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404 }, { "analysis_explanation": null, "end": 499, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482 }, { "analysis_explanation": null, "end": 535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 533 }, { "analysis_explanation": null, "end": 548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 545 }, { "analysis_explanation": null, "end": 602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 591 }, { "analysis_explanation": null, "end": 609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 604 }, { "analysis_explanation": null, "end": 641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 631 }, { "analysis_explanation": null, "end": 721, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 703 }, { "analysis_explanation": null, "end": 421, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 416 }, { "analysis_explanation": null, "end": 535, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 533 } ]
[ "<?", "php\n\n/* \n * To change this license header, choose License Headers in Project Properties.", "\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.", "\n */\n\nclass LocationUtil {\n \n /**\n * http://stackoverflow.com/questions/10053358/measuring-the-distance-between-two-coordinates-in-php\n * Calculates the great-circle distance between two points, with\n * the Vincenty formula.", "\n * @param float $latitudeFrom Latitude of start point in [deg decimal]\n * @param float $longitudeFrom Longitude of start point in [deg decimal]\n * @param float $latitudeTo Latitude of target point in [deg decimal]\n * @param float $longitudeTo Longitude of target point in [deg decimal]\n * @param float $earthRadius Mean earth radius in [m]\n * @return float Distance between points in [m] (same as earthRadius)\n */\n public static function vincentyGreatCircleDistance(\n $latitudeFrom, $longitudeFrom, $latitudeTo, $longitudeTo, $earthRadius = 6371000)\n {\n // convert from degrees to radians\n $latFrom = deg2rad($latitudeFrom);\n $lonFrom = deg2rad($longitudeFrom);\n $latTo = deg2rad($latitudeTo);\n $lonTo = deg2rad($longitudeTo);\n\n $lonDelta = $lonTo - $lonFrom;\n $a = pow(cos($latTo) * sin($lonDelta), 2) +\n pow(cos($latFrom) * sin($latTo) - sin($latFrom) * cos($latTo) * cos($lonDelta), 2);\n $b = sin($latFrom) * sin($latTo) + cos($latFrom) * cos($latTo) * cos($lonDelta);\n\n $angle = atan2(sqrt($a), $b);\n return $angle * $earthRadius;\n }\n \n}\n?", ">" ]
{ "pile_set_name": "Github" }
[ 0, 0.022727272727272728, 0, 0.012552301255230125, 0.008726003490401396, 0 ]
0.007334
5
[ { "analysis_explanation": null, "end": 541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 518 }, { "analysis_explanation": null, "end": 1093, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1072 }, { "analysis_explanation": null, "end": 1446, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1434 }, { "analysis_explanation": null, "end": 328, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 231 }, { "analysis_explanation": null, "end": 274, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 266 }, { "analysis_explanation": null, "end": 274, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 266 }, { "analysis_explanation": null, "end": 1006, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 999 } ]
[ "Drinking alcohol is associated with aggressive behavior, accidents and ill health. ", "Yet many of us choose to drink socially. ", "This may reflect alcohol's actions on specific brain circuits which make us feel euphoric and less anxious. ", "Alcohol may also make us more empathic and cause us to see other people as more attractive. ", "But why do these reactions occur and are the positive effects of alcohol expressed towards everybody we interact with?", "\n\nAlcohol is a drug, one of the three most commonly used in the world, along with nicotine and caffeine. ", "When we drink, the alcohol binds to a specific type of receptor in the brain and boosts the activity of a natural brain chemical called GABA. ", "The effect the alcohol has on us depends in large part on the dose, and the location of these GABA receptors within the brain.", "\n\nEarly on in a drinking session, the alcohol acts on GABA systems to boost the levels of dopamine, the brain's reward chemical. ", "This gives a sense of well-being and a sense of mild euphoria. ", "Alcohol also acts on GABA receptors to impair the activity of the brain circuits that make us feel anxious and, at higher doses, alcohol inactivates a second set of brain circuits that control fear. ", "So threatening stimuli no longer seem quite so scary. ", "Alcohol also compromises our ability to compute risk so that situations we would normally shy away from may now seem quite inviting.", "\n\nAll of this points to alcohol as a facilitator of social interactions. ", "As well as making us more empathic, laboratory studies have also shown that drinking alcohol can make us trust others more and make us temporarily more generous.", "\n\nOn the other hand, heavy drinking is associated with violent behavior. ", "This situation, however, is complex. ", "Laboratory studies have shown that alcohol increases aggression. ", "For example, it increases the willingness with which individuals will administer electric shocks to others. ", "However, this effect seems to be largely restricted to those who are intrinsically aggressive in the first instance.", "\n\nEqually, alcohol can corrupt our ability to understand the intentions of others. ", "The brain contains specific circuits, which connect parts of the prefrontal cortex, amygdala and temporal parietal junction, that handle our social cognitive abilities. ", "So our ability to understand somebody else's mental perspective and their motivations for acting in a certain way become unreliable.", "\n\nVery big doses of alcohol can leave the functioning of these circuits so compromised that individuals can appear to be as impaired as patients with some forms of dementia. ", "This is quite a disturbing thought given the number of people who end up in this state in city centres at the end of a good night out.", "\n\n\n\n&lt;img src=\"http://static.digg.com/images/696f2d89ad024706a458492eb412651f_37e7520990b9429d8e6f965fc0e64999_1_post.jpeg\" alt=\"\" /&gt;\n\n\n\nAlcohol also impedes our ability to accurately interpret emotional expressions in faces. ", "As we drink, we have a tendency to erroneously assume that some facial expressions of negative emotions are happy, and we find it particularly difficult to identify sad and angry faces. ", "This leaves us prone to making embarrassing social errors.", "\n\nOne important, but often overlooked, aspect of alcohol's effect on social functioning relates to how we perceive members of our in and out-groups. ", "Alcohol appears to encourage us to bond to members of our in-groups. ", "However, this may come at the cost of the way we treat people outside of these groups. ", "Similarly, alcohol makes members of our ethnic in-group appear more attractive but this effect does not extend to members of other ethnic groups.", "\n\nIt must be emphasized that the effects described so far are potentially reversible once the drinker has sobered up. ", "However, chronic heavy drinking can lead to brain damage and irreversible cognitive impairments, especially poor memory function, and psychiatric problems including depression, psychoses, anxiety and suicide.", "\n\nSo overall, alcohol may be a friend, and indeed make us friendlier, but only to a select group of people – and they may not always reciprocate.", "\n\n\n\n\n\nAlcohol Friend or Foe? ", "is part of the Pint of Science festival where academic experts talk about the latest in scientific research – at the pub.", "\n\nThis article was originally published on The Conversation.", "\n\n\n\nRead the original article." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0, 0, 0, 0, 0.007042253521126761, 0.007936507936507936, 0.007751937984496124, 0, 0.005025125628140704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008658008658008658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.034482758620689655, 0.008264462809917356, 0, 0 ]
0.00203
5
[ { "analysis_explanation": null, "end": 2833, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 2725 } ]
[ "Q:\n\nTypeScript using type parameter\n\nHow can I use type parameter T in next code block (typeOf, instanceOf,...). ", "T is 'Group'. ", "Is it possible because JavaScript does not have types. ", "Thanx.", "\nexport class LocalStorage<T> implements ILocalStorage<T> {\n constructor() {}\n\n getKey(): string {\n if (T is 'Group')\n return \"Groups\";\n }\n}\n\nA:\n\nYou cannot do it for TypeArguments in generics (as you have already realized). ", "But you can do runtime checking if you use TypeScript classes: \nclass Group{}\n\nfunction getKey(item:any): string { \n if (item instanceof Group)\n return \"Groups\";\n else\n return 'invalid';\n}\n\nconsole.log(getKey(new Group()));\n\nThere is no typescript magic in the above code. ", "We are simply utilizing the javascript instanceof operator : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/instanceof\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.01818181818181818, 0, 0.011904761904761904, 0.013651877133105802, 0.006711409395973154 ]
0.007207
5
[ { "analysis_explanation": null, "end": 395, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 382 }, { "analysis_explanation": null, "end": 880, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 794 }, { "analysis_explanation": null, "end": 880, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 794 } ]
[ "وثق “المرصد السوري لحقوق الإنسان” مقتل عنصر من “قوات سوريا الديمقراطية” وإصابة أكثر من 6 آخرين بجراح جراء قصف جوي من قبل طائرات تركية على منطقة مشرافا بريف رأس العين (سري كانييه) عند الشريط الحدودي مع تركيا، كما أصيب مقاتلان من قسد جراء قصف بري من قبل القوات التركية استهدف مواقع شرق مدينة القامشلي، في حين أصيب 4 مدنيين بينهم مواطنة بجراح جراء استهداف صاروخي من قبل القوات التركية على شرق القامشلي ومحيط رأس العين، بينما علم “المرصد السوري” أن طائرات تركية استهدفت مركز عسكري لـ “قوات مكافحة الإرهاب” في قرية هوشان الواقعة بين عين عيسى وعين العرب بالقرب من قاعدة للتحالف الدولي في خراب عشك، حيث كان المركز الذي جرى استهدفه، تابع للتحالف الدولي سابقاً قبل أن يجري تسليمه لـ “مكافحة الإرهاب” كذلك جرى اشتباك بين حرس الحدود التركي من طرف، وحرس معبر الدرباسية من طرف آخر وذلك عند المعبر الفاصل بين سورية وتركيا، دون معلومات عن خسائر بشرية.", "\n\nالمرصد السوري نشر منذ قليل، أنه رصد قصف تركي متواصل على مواقع عند الشريط الحدودي شرق الفرات، مستهدفة أماكن في كل من العزيزية والاسدية وبئر نوح وآراء ومشرافا بريف رأس العين، ومحيط سد بورزا بريف مالكية، بالإضافة لقرية سي كركا بريف مدينة القامشلي الشرقي، حيث استهدفت القوات التركية آليات لقوات سوريا الديمقراطية في مناطق عدة، دون معلومات حتى اللحظة عن الخسائر البشرية، فيما كانت أنقرة استهلت العملية العسكرية بقصف جوي على قرية مشرافا ومواقع أخرى تابعة لمنطقة رأس العين عند الشريط الحدودي، من جهته رصد “المرصد السوري” استهداف قسد بقذائف الهاون لمناطق داخل الأراضي التركية، كما عمدت قسد إلى إشعال الإطارات المطاطية في محاولة منها للتشويش على الطيران التركي، ورصد “المرصد السوري” منذ قليل، مواصلة المدفعية التركية قصفها البري على منطقة رأس العين وريفها بريف الحسكة، ومنطقة تل أبيض وريفها بريف مدينة الرقة، وذلك عند الشريط الحدودي مع تركيا، في إطار العملية العسكرية التركية التي بدأت قبل ساعة على منطقة شرق الفرات، ولم ترد معلومات حتى اللحظة عن الخسائر البشرية، على صعيد متصل رصد “المرصد السوري” تصاعد في موجة النزوح من رأس العين وريفها تخوفاً من القصف التركي جواً وبراً، ومن اتساع رقعة القصف، حيث حلقت طائراتان تابعة لسلاح الجوي التركي في سماء الدرباسية على بعد نحو 50 كلم من رأس العين (سري كانييه)، وكان “المرصد السوري” رصد منذ قليل، بدء العملية العسكرية التركية على منطقة شرق الفرات، حيث تشن طائرات تركية حربية غارات جوية على مواقع في منطقة رأس العين عند الشريط الحدودي شرق الفرات، وذلك بعد عصر اليوم الأربعاء التاسع من شهر تشرين الأول / أكتوبر الجاري، ونشر المرصد السوري منذ قليل، أنه علم من مصادر في قوات سوريا الديمقراطية، أنها أُبلغت أن الطائرات التركية ستبدأ بعد قليل، عمليات قصف لمواقع في ريف الرقة الشمالي وريف الحسكة الشمالي الغربي ضمن المنطقة الواقعة في تل أبيض ورأس العين عند الشريط الحدودي شرق الفرات، وأضافت المصادر للمرصد السوري أن كثير من المواقع جرى إخلائها من قبل قسد والمجالس العسكرية العاملة في المنطقة.", "\n\nونشر المرصد السوري منذ ساعات، أنه تواصل القوات التركية عملية إخلاء القرى الواقعة على الشريط الحدودي مع سورية في إطار استعدادها للبدء بعملية عسكرية على منطقة شرق الفرات، بالتزامن مع استمرار وصول التعزيزات العسكرية الكبيرة من آليات ومدرعات وجنود نحو المنطقة، كما رصد “المرصد السوري” وصول مزيد من الدفعات من الفصائل السورية الموالية لتركيا نحو الأراضي التركية قادمين من الريف الحلبي وذلك للمشاركة في العملية العسكرية تحت إمرة أنقرة.", "\n\nكما نشر “المرصد السوري” صباح اليوم، أنه رصد حالة من التأهب تشهدها مدن وبلدات منطقة شرق الفرات من قبل “المجالس العسكرية” العاملة في المنطقة بالإضافة إلى “قوات سوريا الديمقراطية” وذلك استعداداً لمواجهة العملية العسكرية التركية التي قد تبدأ في أي لحظة، حيث أعلنت قسد النفير العام ورفع جاهزية قواتها للتصدي للهجوم التركي المرتقب، وعلى الجانب الآخر تواصل القوات التركية تحشداتها عند الشريط الحدود المقابل لمنطقة شرق الفرات وسط استمرار وصول الفصائل السورية الموالية لأنقرة إلى المنطقة، على صعيد متصل تشهد منطقة “تل أبيض” الحدودية حياة طبيعة اليوم الأربعاء وسط مخاوف شعبية من انطلاق العملية العسكرية التركية، إذ رصد “المرصد السوري” موجة نزوج بدأت تشهدها المنطقة خوفاً من الهجوم التركي." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.01076555023923445, 0.014843320505772403, 0.018561484918793503, 0.014705882352941176 ]
0.014719
5
[ { "analysis_explanation": null, "end": 3, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 32, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25 }, { "analysis_explanation": null, "end": 105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89 }, { "analysis_explanation": null, "end": 143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128 }, { "analysis_explanation": null, "end": 165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144 }, { "analysis_explanation": null, "end": 216, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212 }, { "analysis_explanation": null, "end": 279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259 }, { "analysis_explanation": null, "end": 344, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 334 }, { "analysis_explanation": null, "end": 389, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 374 }, { "analysis_explanation": null, "end": 404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 390 }, { "analysis_explanation": null, "end": 421, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 414 }, { "analysis_explanation": null, "end": 465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452 }, { "analysis_explanation": null, "end": 476, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471 }, { "analysis_explanation": null, "end": 541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537 }, { "analysis_explanation": null, "end": 554, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542 }, { "analysis_explanation": null, "end": 599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 590 }, { "analysis_explanation": null, "end": 689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 675 }, { "analysis_explanation": null, "end": 728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 715 }, { "analysis_explanation": null, "end": 794, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 773 }, { "analysis_explanation": null, "end": 835, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 824 }, { "analysis_explanation": null, "end": 863, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 855 }, { "analysis_explanation": null, "end": 868, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 863 }, { "analysis_explanation": null, "end": 937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 928 }, { "analysis_explanation": null, "end": 1015, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1008 }, { "analysis_explanation": null, "end": 1046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1019 }, { "analysis_explanation": null, "end": 1065, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1056 }, { "analysis_explanation": null, "end": 1080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1072 }, { "analysis_explanation": null, "end": 1115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1108 }, { "analysis_explanation": null, "end": 1242, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1226 }, { "analysis_explanation": null, "end": 1302, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1248 }, { "analysis_explanation": null, "end": 1313, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1303 }, { "analysis_explanation": null, "end": 1437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1429 }, { "analysis_explanation": null, "end": 1566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1537 }, { "analysis_explanation": null, "end": 1603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1577 }, { "analysis_explanation": null, "end": 1623, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1607 }, { "analysis_explanation": null, "end": 1695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1674 }, { "analysis_explanation": null, "end": 1805, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1801 }, { "analysis_explanation": null, "end": 1839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1835 }, { "analysis_explanation": null, "end": 1866, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1860 }, { "analysis_explanation": null, "end": 2035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2029 }, { "analysis_explanation": null, "end": 2077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2070 }, { "analysis_explanation": null, "end": 2115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2087 }, { "analysis_explanation": null, "end": 2194, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2184 }, { "analysis_explanation": null, "end": 2318, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2313 }, { "analysis_explanation": null, "end": 2390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2383 }, { "analysis_explanation": null, "end": 2406, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2397 }, { "analysis_explanation": null, "end": 2445, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2432 }, { "analysis_explanation": null, "end": 2465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2451 }, { "analysis_explanation": null, "end": 2484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2473 }, { "analysis_explanation": null, "end": 2574, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2553 }, { "analysis_explanation": null, "end": 2688, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2683 }, { "analysis_explanation": null, "end": 2709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2695 }, { "analysis_explanation": null, "end": 2727, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2716 }, { "analysis_explanation": null, "end": 2832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2822 }, { "analysis_explanation": null, "end": 2884, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2879 }, { "analysis_explanation": null, "end": 2975, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2960 }, { "analysis_explanation": null, "end": 2991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2976 }, { "analysis_explanation": null, "end": 3018, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3004 }, { "analysis_explanation": null, "end": 3068, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3052 }, { "analysis_explanation": null, "end": 3124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3119 }, { "analysis_explanation": null, "end": 3143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3134 }, { "analysis_explanation": null, "end": 3203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3187 }, { "analysis_explanation": null, "end": 3236, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3216 }, { "analysis_explanation": null, "end": 3284, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3262 }, { "analysis_explanation": null, "end": 3344, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3333 }, { "analysis_explanation": null, "end": 3380, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3374 }, { "analysis_explanation": null, "end": 3409, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3395 }, { "analysis_explanation": null, "end": 3428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3409 }, { "analysis_explanation": null, "end": 3449, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3435 }, { "analysis_explanation": null, "end": 3469, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3459 }, { "analysis_explanation": null, "end": 3495, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3470 }, { "analysis_explanation": null, "end": 3563, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3545 }, { "analysis_explanation": null, "end": 3573, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3563 }, { "analysis_explanation": null, "end": 3583, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3579 }, { "analysis_explanation": null, "end": 3677, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3661 }, { "analysis_explanation": null, "end": 3719, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3715 }, { "analysis_explanation": null, "end": 3762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3749 } ]
[ "Q:\n\nWhy did I lose 20 rep?", "\n\nI just \"lost\" 20 rep, at my profile summary it says \"User was removed\", what is that?", "\na screen capture:\n\nA:\n\nThese votes correspond to upvotes from a user who now deleted their account. ", "Account deletion undoes all actions of that user. ", "Consequently all they upvotes are removed.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0.02, 0, 0 ]
0.003333
5
[]
[ "Article content\n\nHONG KONG — The former CIA employee who revealed himself as the source of top-secret leaks about U.S. surveillance programs says he did so to reveal “criminality.”", "\n\n“People who think I made a mistake in picking [Hong Kong] as a location misunderstand my intentions. ", "I am not here to hide from justice; I am here to reveal criminality,” Edward Snowden told the South China Morning Post Wednesday. “", "I’m neither traitor nor hero. ", "I’m an American.”", "\n\nWe apologize, but this video has failed to load.", "\n\ntap here to see other videos from our team. ", "Try refreshing your browser, or NSA leaker Edward Snowden breaks silence, vows to fight extradition to U.S. Back to video\n\nHe also said he would fight extradition to the U.S., although the country hasn’t yet filed for one.", "\n\nSnowden also said he fears for his family.", "\n\nEarlier, it appeared as if he had gone into hiding since becoming the centre of the world’s biggest story.", "\n\nAfter saying he had “no intention of hiding who I am because I know I have done nothing wrong,” Snowden checked out of his Hong Kong hotel and hadn’t been seen or heard from for days.", "\n\nSnowden, in his Sunday interview with the newspaper, had said he wanted to avoid the media spotlight, noting he didn’t want “the story to be about me. ", "I want it to be about what the U.S. government is doing.”" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.011111111111111112, 0, 0.007633587786259542, 0, 0, 0, 0, 0.009009009009009009, 0, 0, 0, 0, 0 ]
0.002135
5
[ { "analysis_explanation": null, "end": 118, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114 }, { "analysis_explanation": null, "end": 237, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228 }, { "analysis_explanation": null, "end": 366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 352 }, { "analysis_explanation": null, "end": 410, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 401 }, { "analysis_explanation": null, "end": 459, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451 }, { "analysis_explanation": null, "end": 612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598 }, { "analysis_explanation": null, "end": 662, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 658 }, { "analysis_explanation": null, "end": 729, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 725 }, { "analysis_explanation": null, "end": 785, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 778 }, { "analysis_explanation": null, "end": 1031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1024 }, { "analysis_explanation": null, "end": 1060, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1051 }, { "analysis_explanation": null, "end": 1110, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1106 }, { "analysis_explanation": null, "end": 1119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1112 }, { "analysis_explanation": null, "end": 1134, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1128 }, { "analysis_explanation": null, "end": 1298, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1294 } ]
[ "The Analytical Microscopy Core has been in operation at Hospital for Special Surgery since 1992, and has been at resource for the Hospital's research staff, providing the following services: transmission and scanning electron microscopy, light microscopy, embedding and sectioning calcified tissues, histochemistry, immunocytochemistry, image analysis and morphometric methods. ", "The major objectives of this core are: (1) to provide morphological techniques for the research staff at the Hospital, necessary for them to carry out their particular projects; (2) to provide training where appropriate and to provide investigators with options to utilize current techniques; (3) to continue to develop new applications for study of calcified tissues. ", "We are in the process of developing in situ hybridization techniques to apply to calcified tissues, which is an example of new methodology and new applications being developed by the core for the research staff. ", "This core is now poised to join with the two new research cores (Infrared Imaging and Mechanical Testing) to form the Core Center for Skeletal Integrity, which will provide a larger resource base for the collaborative research that is developing within the research community of the Hospital and its affiliate institutions." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0.007936507936507936, 0.0027100271002710027, 0, 0.006191950464396285 ]
0.00421
5
[ { "analysis_explanation": null, "end": 95, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91 } ]
[ "import fs from 'fs';\nimport path from 'path';\nimport tempy from 'tempy';\nimport pathType from 'path-type';\n\nexport const getFixture = () => path.join(tempy.directory(), 'a/b/c/unicorn_unicorn_unicorn/d/e/f/g/h');\n\nlet lastMask = 0;\n\nfunction umask() {\n\t// Avoid deprecation warning in v14+\n\tlastMask = process.umask(lastMask);\n\tprocess.umask(lastMask);\n\treturn lastMask;\n}\n\n// Get the initial value before any async operations start\numask();\n\nexport const assertDirectory = (t, directory, mode = 0o777 & (~umask())) => {\n\t// Setting `mode` on `fs.mkdir` on Windows doesn't seem to work\n\tif (process.platform === 'win32') {\n\t\tmode = 0o666;\n\t}\n\n\tt.true(pathType.isDirectorySync(directory));\n\tt.is(fs.statSync(directory).mode & 0o777, mode);\n};\n\n// Using this forces test coverage of legacy method on latest versions of Node.js\nexport const customFsOptions = {\n\tfs: {\n\t\tmkdir: (...args) => fs.mkdir(...args),\n\t\tstat: (...args) => fs.stat(...args),\n\t\tmkdirSync: (...args) => fs.mkdirSync(...args),\n\t\tstatSync: (...args) => fs.statSync(...args)\n\t}\n};\n" ]
{ "pile_set_name": "Github" }
[ 0.010516252390057362 ]
0.010516
5
[ { "analysis_explanation": null, "end": 131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121 }, { "analysis_explanation": null, "end": 872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 867 }, { "analysis_explanation": null, "end": 147, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 140 }, { "analysis_explanation": null, "end": 549, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 544 }, { "analysis_explanation": null, "end": 601, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 591 }, { "analysis_explanation": null, "end": 648, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 644 }, { "analysis_explanation": null, "end": 662, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 651 }, { "analysis_explanation": null, "end": 694, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 690 }, { "analysis_explanation": null, "end": 700, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 695 }, { "analysis_explanation": null, "end": 880, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 875 }, { "analysis_explanation": null, "end": 892, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 887 }, { "analysis_explanation": null, "end": 901, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 896 }, { "analysis_explanation": null, "end": 920, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 915 }, { "analysis_explanation": null, "end": 932, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 927 }, { "analysis_explanation": null, "end": 940, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 935 }, { "analysis_explanation": null, "end": 964, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 959 }, { "analysis_explanation": null, "end": 976, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 971 }, { "analysis_explanation": null, "end": 989, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 984 }, { "analysis_explanation": null, "end": 1012, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1007 }, { "analysis_explanation": null, "end": 1024, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1019 }, { "analysis_explanation": null, "end": 1036, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1031 } ]
[ "535 U.S. 1016\nIN RE WARD; andIN RE SMITH.", "\nNo. ", "01-9325.", "\nNo. ", "01-9367.", "\nSupreme Court of the United States.", "\nApril 22, 2002.", "\n\n1\nPetitions for writs of habeas corpus denied.", "\n\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 8, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4 }, { "analysis_explanation": null, "end": 102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85 }, { "analysis_explanation": null, "end": 118, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104 } ]
[ "\n\nPhoto by vera46\n\n\n\nただでさえ学資ローンでの若者の膨大な借金が問題になっていると頃、国立大の授業料が今後15年間で40万円も増加する可能性が浮上しています。詳細は以下から。", "\n\n\n\n近年大きくクローズアップされる子どもや若者の格差と貧困。その中でも大学の学費の問題位は奨学金という名の学資ローンによって大学を卒業したての若者が数百万円から多ければ1千万円を超える借金を背負わされるという厳しい現実と直結しています。", "\n\n\n\n◆原因は財務省の運営費交付金削減方針\n\n今回、国立大授業料が15年で1.7倍以上の93万円まで39万円も増額される直接的な原因として、財務省が国立大学の収入の3割から4割を占める運営費交付金を現在の約1兆1千億円から2013年度までに約9800億円まで1200億円まで減らす方針であることが挙げられます。", "\n\n\n\nBUZZAP!でも以前お伝えしましたが、財務省は10月26日の財政制度等審議会で国立大学に対し、授業料や寄付金などの自己収入を年間で1.6%ずつ増やすように提言。2030年代初めまでに国が配る運営費交付金と同額程度になるように求めていました。", "\n\n\n\n現在の国立大学の自己収入は13年度に7370億円と収入全体の32.5%にとどまっているため、自己収入を31年度までに9807億円に増やすように求めた上で運営費交付金は年1%ずつ減らすとしています。", "\n\n\n\n12月1日の衆議院文部科学委員会の閉会中審査で、共産党の畑野君枝委員は財務省が求める自己収入増2437億円を全額授業料で賄えばどうなるのかと質問。文科省の常盤豊・高等教育局長は「授業料で賄うとして試算すると(31年度には)約93万円。年間2万5千円の値上げが必要」であると回答しました。", "\n\n\n\nこの93万円はもちろん1年間での話。四年制大学であれば、ストレートに卒業するとしても現在の216万円から372万円に増えることとなり、貧困家庭からの大学進学はこれまで以上に極めて狭き門となります。", "\n\n\n\n◆学資ローン問題\n\n先にも述べた通り、奨学金という名の学資ローン問題はこの高額な学費と密接に関係します。いわゆる貧困家庭にかぎらず、家庭からの援助や仕送りのみで大学に通えない学生が学費を払うために使うのが学資ローン。これは給付型ではなく返済が義務付けられており、時に消費者金融を凌ぐほどの利息を払わされることに。", "\n\n\n\nこうした学資ローンによる多額の負債を卒業時点で背負った若者に対する経済的徴兵制はアメリカ合衆国では既に大きな問題となっていますし、日本でも先日以下の様な学資ローンの負債を負った若い女性に対して「セクシー女優」や「登録レディ」などで簡単に返済可能と謳う「貧困ビジネス」までもが登場(リンク先は既にアクセスできなくなっています)。", "\n\n\n\n\n\n\n\n高額な大学の学費が大学生らに課されることにより、その負債をタネに若者らが食い物にされるという現実が既に出てきていることから目を背けることはできません。", "\n\n\n\nまた、このような事態の発生と同時に高額な学費の支払いとその後の借金漬けの生活を考えて大学進学を諦めざるを得ない優秀な学生も少なからず存在することを考えれば、教育格差の拡大再生産と共に、日本の優秀な人材が単に生まれ育った家庭環境によって埋もれさせられてしまうという誰も特をしない事態がこれまで以上に進展することとなります。", "\n\n\n\n◆国際人権規約に違反\n\nまた、この方針のさらなる問題は、国際人権規約に違反しているということ。日本は1979年にこの規約を批准しましたが、その中の社会権規約について、第13条2(b)及び(c)については長く留保してきました。以下に第13条全体を引用します。", "\n\n\n\n\n\n\n\n第13条2(b)及び(c)は中等・高等教育漸進的無償化条項と呼ばれており、2012年9月11日に当時の民主党政権によって留保撤回が閣議決定されています。", "\n\n\n\n財務省の今回の方針はこの国際人権規約に真っ向から対立するもの。海外での数兆円単位での国際支援や軍事費の増大は平然と行いながら、いったいなぜ教育という国の未来の根幹を支える重要分野への支出をここまで絞ろうとするのでしょうか?", "\n\n\n\nつい先日も教育機関への公的支出がOECD加盟国32ヶ国中最下位という事実が明らかにされたばかり。GDPに占める教育機関への支出は3.5%と、最高位のノルウェーの6.5%の半分程度に過ぎず、高等教育での家庭の支出の割合も51.6%と平均の21.7%の2.5倍近くに上っています。", "\n\n\n\n教育を軽視しては決して明るい未来はありません。ただでさえ超少子高齢化社会が訪れて未来を担う子供の数は減る一方です。その中で子供たちの未来の可能性を潰していくのであれば、一体誰が今後の日本の未来を担うというのでしょうか?", "\n\n\n\n国立大授業料、54万円が93万円に 2031年度試算:朝日新聞デジタル\n\n\n\n(Photo by vera46)\n\n\n\n\n\n・関連記事\n\n歳費抑制のために日本教育は崩壊へ、国立大学費値上げ、小・中教職員3万7000人削減という愚策 | BUZZAP!(バザップ!)", "\n\n\n\n軽減税率の新たな財源1000億円のために「子どものいる低所得者世帯への給付を削減」の案 | BUZZAP!(バザップ!)", "\n\n\n\n「最低賃金2000円」「大学院まで学費無料」など、駐日デンマーク大使館ツイートに注目が集まる | BUZZAP!(バザップ!)", "\n\n\n\n「いじめ多数」の学校は積極的に把握して解消に取り組んでいると高評価へ、文科省の異例の方針転換に賞賛の声 | BUZZAP!(バザップ!)", "\n\n\n\n子供の貧困と脳の発達には関連があるとの研究発表 | BUZZAP!(バザップ!)" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.010309278350515464, 0.008333333333333333, 0.00641025641025641, 0, 0, 0, 0.00980392156862745, 0.00625, 0, 0, 0, 0, 0.011904761904761904, 0, 0.007042253521126761, 0, 0.007352941176470588, 0, 0.014925373134328358, 0, 0.022727272727272728 ]
0.005003
5
[ { "analysis_explanation": null, "end": 829, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 731 } ]
[ "Q:\n\nWhen does my new family member occupy a new room?", "\n\nI was playing Agricola the other day and an odd situation came up.", "\nI had three rooms with three family members occupying them. ", " In one round I was able to play these actions in this order:\n\nFamily Growth (even without room)\nBuild an additional room\nFamily Growth\n\nNow ordinarily when a new room is built, a doubled-up family member would immediately occupy it. ", " But my reasoning was that my new family member hadn't actually come home yet (as that happens at the end of the round), so the new room I'd just built wasn't yet occupied.", "\nNone of the people I was playing the game with had a problem with this (in the end, I didn't win anyway)...but was I right, or wrong?", "\n(I'm aware of this existing question, but I'm asking specifically about whether it makes a difference when these things all happen in the same turn.)", "\n\nA:\n\nAccording to the rulebook (pg 9):\n\nAfter Family Growth, also 1 Minor Improvement (Stage 2): A player may only use this Family growth space if he has more empty\n rooms than Family members. ", "It is irrelevant how the family has grown\n before and whether the Family members are on the game board or in the\n farmyard.", "\n\nSince you had four family members and four rooms, you couldn't have done your second Family Growth action, even though the new family member had not returned home yet to \"claim the room\".", "\n\nA:\n\nEven though family members come home at the end of a round, you still cannot take the \"Family Growth\" action if you don't have more rooms than family members.", "\nThis is pretty explicit on page 9 of the rule book, under \"Family Growth even without a room\":\n\nNote: If a player who uses this card later extends her home, she may not use the other Family Growth card again until she has more rooms than Family members: the new rooms must first be used for Family members that did not previously have their own rooms.", "\n\nEven though the new family member doesn't end up in your house until the \"Return home phase,\" you still don't have more rooms than family members, so you can't take the \"Family Growth\" action. ", "In an ideal world, you would want to do these actions in the following order:\n\nBuild and additional room\nFamily growth\nFamily growth even without a room\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.014705882352941176, 0, 0, 0, 0, 0, 0.005128205128205128, 0, 0, 0, 0.002840909090909091, 0, 0 ]
0.00162
5
[ { "analysis_explanation": null, "end": 76, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68 }, { "analysis_explanation": null, "end": 90, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77 } ]
[ "Fighters! ", "In the upcoming update 1.73 “Vive la France” we have reinforcements for the Allied troops. ", "Meet the French in War Thunder!", "\n\nThere are not that many possibilities where an experienced pilot gets an opportunity to evaluate the French Air Force. ", "But you now have these opportunities! ", "Join the tester team and be one of the first who can try out the creations of the French engineers in War Thunder\n\nFrench aircraft available for everyone\n\nThese are all vehicles which will be available for research and purchase for non testers.", "\n\nFull French aircraft research tree\n\nAlready available:" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.01098901098901099, 0.03225806451612903, 0.008264462809917356, 0, 0.004098360655737705, 0 ]
0.007944
5
[ { "analysis_explanation": null, "end": 116, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110 }, { "analysis_explanation": null, "end": 378, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 372 }, { "analysis_explanation": null, "end": 546, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 540 } ]
[ "Yar Mohammed\n\nYar Mohammed may refer to:\n Yar Mohammed (Karzai), second cousin of Afghan President Hamid Karzai, killed in a botched night raid\n\n Yar Mohammed (Zabul), police chief in Zabul Province, killed in an ambush in 2004 in Afghanistan\n Yar Mohammad (Kabul), sat on Committee Eight of the Constitutional Loya Jirga\n Yar Mohammad (Parwan), sat on Committee Eight of the Constitutional Loya Jirga\n Yar Mohammad: vizier during the 1837 siege of Herat" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.013215859030837005 ]
0.013216
5
[ { "analysis_explanation": null, "end": 26, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 54, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42 }, { "analysis_explanation": null, "end": 62, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56 }, { "analysis_explanation": null, "end": 88, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82 }, { "analysis_explanation": null, "end": 111, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99 }, { "analysis_explanation": null, "end": 138, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133 }, { "analysis_explanation": null, "end": 158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146 }, { "analysis_explanation": null, "end": 165, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160 }, { "analysis_explanation": null, "end": 198, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184 }, { "analysis_explanation": null, "end": 227, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223 }, { "analysis_explanation": null, "end": 242, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231 }, { "analysis_explanation": null, "end": 256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244 }, { "analysis_explanation": null, "end": 263, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258 }, { "analysis_explanation": null, "end": 335, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311 }, { "analysis_explanation": null, "end": 343, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 337 }, { "analysis_explanation": null, "end": 415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 391 }, { "analysis_explanation": null, "end": 439, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435 }, { "analysis_explanation": null, "end": 454, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449 } ]
[ "Exclusive IBM looks set to join the seriously multi-core set with the Power7 chip. ", "Internal documents seen by The Register show Power7 with eight cores per processor and also some very, very large IBM boxes based on the chip.", "\n\nThe IBM documents have the eight-core Power7 being arranged in dual-chip modules. ", "So, that's 16-cores per module. ", "As IBM tells it, each core will show 32 gigaflops of performance, bringing each chip to 256 gigaflops. ", "Just on the gigaflop basis, that makes Power7 twice as fast per core as today's dual-core Power6 chips, although the actual clock rate on the Power7 chips should be well below the 5.0GHz Power6 speed demon.", "\n\nIn fact, according to our documents, IBM will ship Power7 at 4.0GHz in 2010 on a 45nm process. ", "We're also seeing four threads per core on the chip.", "\n\nFor some customers, IBM looks set to create 2U systems with four of the dual-chip modules, giving the server 64 cores of fun. ", "These 2U systems will support up to 128GB of memory and hit 2 teraflops.", "\n\nIBM has an architecture that will let supercomputing types combine these 2U boxes to form a massive unit with 1,024 cores, hitting 32 teraflops of performance with 2TB of memory.", "\n\nAnd, er, if you are a seriously demanding type, boy, does IBM have the system for you.", "\n\nThe Giant\n\nThe Register has uncovered the first detailed specifications of the \"Blue Waters\" system IBM is building for the National Center for Supercomputing Applications (NCSA).", "\n\nIf our documents are to be believed - and they're penned by an IBM executive - this system, funded by a $208m grant and meant to go up at the University of Illinois in 2011, will be the most massive machine ever created.", "\n\nWe've got documents showing IBM going after a 10 petaflop system (peak) comprised of 38,900 eight-core Power7 chips with each chip running at 4.0GHz. ", "This monster will have an astonishing 620TB of memory and 5PB/s of memory bandwidth.", "\n\nAccording to the documents, IBM will rely on a 1.30PB/s interconnect to link the systems and will feed them with 26PB of storage. ", "As if that's not enough, IBM will offer an exabyte of archival storage. ", "Why not?", "\n\nThis insane machine will be built out of more than 100 racks filled with servers and storage systems, taking up close to 4,400 sq. ", "feet.", "\n\nEr, if this stuff isn't sending shivers down the spines of Sun and Intel, then I don't know what will.", "\n\nIBM has clearly decided to get a bit radical with Power7. ", "This isn't the single-thread focused Power6. ", "It's a true multi-core chip, which should stack up very, very well against Sun's 16-core rock and what will likely be an eight-core version of Itanium around in 2010.", "\n\nAnd then IBM still has the Quasar project lurking in the background, where it's combining Power and Cell chips. ", "Stand back, friends. ", "Stand back. ", "®" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.012048192771084338, 0.007042253521126761, 0.011904761904761904, 0, 0.009708737864077669, 0, 0.020618556701030927, 0, 0.0078125, 0, 0.005555555555555556, 0.011363636363636364, 0.027624309392265192, 0.009009009009009009, 0.013157894736842105, 0, 0.007575757575757576, 0.013888888888888888, 0, 0, 0, 0.019230769230769232, 0.016666666666666666, 0, 0.006024096385542169, 0.02631578947368421, 0, 0, 0 ]
0.007777
5
[ { "analysis_explanation": null, "end": 13, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 76, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70 }, { "analysis_explanation": null, "end": 134, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128 }, { "analysis_explanation": null, "end": 270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264 }, { "analysis_explanation": null, "end": 488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482 }, { "analysis_explanation": null, "end": 520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515 }, { "analysis_explanation": null, "end": 591, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585 }, { "analysis_explanation": null, "end": 725, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 721 }, { "analysis_explanation": null, "end": 1440, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1436 }, { "analysis_explanation": null, "end": 1615, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1611 }, { "analysis_explanation": null, "end": 2406, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2400 }, { "analysis_explanation": null, "end": 2618, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2614 } ]
[ "Veritaseum: a Gateway to Peer-To-Peer Capital Markets\n\nThe Veritaseum platform uses blockchain technology, smart contracts, and distributed computing to benefit a variety of industries and entities, and aims to fight economic rents and inefficiencies. ", "Veritaseum builds blockchain-based, peer-to-peer capital markets as software on a global scale and contributes to building a decentralized future. ", "To put it shortly, Veritaseum is a gateway to peer-to-peer capital markets.", "\n\nVeritaseum’s approach is research and analysis-based. ", "The company uses financial forensics, fundamental and macro analysis, as well as consulting to design various Veritas sub-tokens that may serve very specific purposes.", "\n\nHow does the Veritas sub-token creation process work?", "\n\nFirst of all, the team establishes goals and creates a financial product and analytical framework that supports the product based on in-depth study and analysis. ", "The financial product is then passed to the tech team that creates Veritas sub-tokens (software licenses) to unlock custom smart contracts.", "\n\nThe software token is issued directly to the Veritaseum customer for direct P2P transfer or to hold — and/or through the appropriate financial machine like the VeADIR.", "\n\nVeADIR is an interactive, digital research vehicle that offers exposure to its vetted research subjects by using blockchain and smart contract technology. ", "The team says that VeADIR is currently fully functional but is still in beta.", "\n\nVeRent is not an exchange, but a VERI token rental facility. ", "It is a vehicle for conducting peer-to-peer, over-the-counter token transactions.", "\n\nVeResearch creates Customized Valuation Models for each and every crypto asset analyzed. ", "Veritaseum offers fundamental, forensic, and macro analysis by a team that has been studying the economics and valuation of distributed value systems since 2013.", "\n\nVeExposure is the culmination of man (VeResearch) and machine (VeADIR) working together to drop expenses and increase performance while still allowing users to maintain custody, ownership, and control of their assets. ", "The app offers direct access to VeADIR for users that are able to provide both VERI and Ether for exposure.", "\n\nVeManagement is a portfolio manager that consists of an admin web app and model portfolio derived from VeResearch. ", "The admin UI loads the proposed model from a spreadsheet and presents a changeset to be reviewed and accepted by the portfolio admin by signing it with their private key.", "\n\nThe total supply of VERI tokens is 100 million, circulating supply is 2,036,645 and the circulating VERI inventory equals $22,838,174. ", "Although the team insists that Veritas is not an investment, but a software, you can start contributing into the decentralized economy that the Veritaseum team is working on.", "\n\nYou can now safely store, as well as send, and receive VERI token Lumi Wallet.", "\n\nFirst, you need to create a VERI token wallet and in order to do that, just tap the plus icon in the Wallets section, and start typing in the first few letters of the desired wallet and choose the correct one from the list.", "\n\nTo receive VERI tokens, go to your token wallet and tap the Receive button. ", "Copy the address and give it to the person who wants to send you the tokens. ", "You can also share it via social media or messaging apps.", "\n\nTo send VERI, tap on the Send button in your wallet and fill in the address and the sum fields, check the info, and lastly, confirm the transaction.", "\n\nLumi Wallet allows you to store, send, receive, and even exchange crypto and many other ERC20 tokens. ", "Some of the most useful features include showing you the value of your coins and tokens in USD as well as crypto, and showing you detailed transactions and market price graphs at all times. ", "We are happy to answer all your questions on our Telegram public chat. ", "Follow us on Twitter, Facebook, and Reddit to get the most recent crypto news and useful articles!", "\n\nPlease note that Lumi’s goal is not to provide investment advice but to give you an opportunity to store and manage your digital assets.", "\n\nCategories\n\nDownload Lumi App\n\nRelated Posts\n\nStore and manage your LRC in Lumi Wallet Since the crypto industry is still relatively young, our currency managing routine circles around various exchanges. ", "Everyone who’s into crypto dedicates a lot of time and effort Read more…\n\nFunFair: Blockchain Solutions For Gaming Are you a player? ", "Do you like gambling? ", "In fact, it doesn’t really matter if you’ve ever tried your fate in an online casino. ", "Almost everyone has a certain idea Read more…\n\nEver since we have released our new and completely client-side web wallet, the Lumi team has been working on adding ERC20 token support. ", "And we’re happy to finally to cross this task off the list. ", "Read more…" ]
{ "pile_set_name": "Pile-CC" }
[ 0.003968253968253968, 0, 0.013333333333333334, 0, 0.005988023952095809, 0.01818181818181818, 0, 0.007194244604316547, 0.005917159763313609, 0.006369426751592357, 0.012987012987012988, 0, 0, 0, 0, 0, 0.009345794392523364, 0.008547008547008548, 0.0058823529411764705, 0, 0.011494252873563218, 0.0125, 0, 0, 0, 0, 0, 0.009615384615384616, 0, 0, 0.01020408163265306, 0.007246376811594203, 0.014563106796116505, 0, 0, 0, 0.005434782608695652, 0, 0 ]
0.004327
5
[ { "analysis_explanation": null, "end": 1846, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1842 }, { "analysis_explanation": null, "end": 1896, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1886 }, { "analysis_explanation": null, "end": 2847, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2836 }, { "analysis_explanation": null, "end": 3444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3433 }, { "analysis_explanation": null, "end": 4118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4107 } ]
[ "1. ", "Field of the Invention\nThe invention relates to a system for recovering silver from spent, waste photographic processing fluids.", "\n2. ", "Background of the Invention\nIt has been known to pass spent, waste silver halide photographic processing fluids by gravity flow through a single mass or so-called reel of steel wool in a container in the presence of a metal salt. ", "A single mass of steel wool however tends to \"channel\" meaning the solution forces a clear path through the steel wool. ", "Such a system is described in U.S. Pat. ", "No. ", "4,740,244. ", "Experiments directed toward improving the efficiency of silver removal appear to have been directed more to matters related to the amount of salt, the kind of salt and like considerations than to matters related to the steel wool and the flow. ", "The present invention in contrast is directed to improving the efficiency by a new and novel arrangement of the steel wool in a sealed, pressurized system." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515 } ]
[ "Expression of estrogen receptor wild type and exon 5 splicing variant mRNAs in normal and endometriotic endometria during the menstrual cycle.", "\nExpression of estrogen receptor exon 5 splicing variant (ER-E5SV) mRNA contributes to dominant positive properties and metastatic potential of gynecological cancers. ", "Therefore, in endometriotic endometria, which conserve implantation and tumor-like spreading potentials, the expression of ER-E5SV and estrogen receptor wild type (ER-WT) mRNA was analyzed, to investigate the biological implications. ", "Estrogen receptor wild type mRNA in normal endometria was downregulated after ovulation, but not in endometriotic endometria. ", "Therefore the wild type cascade in endometriotic endometria might be partly disorganized. ", "The level of ER-E5SV mRNA in endometriotic endometria was lower than that in normal endometria, regardless of the stage in the menstrual cycle. ", "However, there was no significant difference in the ratio of ER-E5SV to ER-WT mRNA in both normal and endometriotic endometria. ", "On the other hand, the level of ER-E5SV mRNA in both normal and endometriotic endometria did not vary during the menstrual cycle. ", "The dominant positive behavior of ER-E5SV might be masked by the functional cascade of ER-WT in normal endometria, but not in endometriotic endometria. ", "This status might result in an incomplete response to endogenous steroids, and contribute to implantation and spreading potentials of endometriosis." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.007042253521126761, 0.011976047904191617, 0.01282051282051282, 0.007936507936507936, 0, 0.006944444444444444, 0.015625, 0.007692307692307693, 0.013157894736842105, 0 ]
0.008319
5
[]
[ "It's not a secret in the NFL that when defenses get chances to lay big hits on opposing quarterbacks, they are going to take them, and try to make them hurt.", "\n\nThe Eagles do not hide their intent to punish quarterbacks who try to run against them.", "\n\n\n\nSo far this season, the Eagles have done an outstanding job in the run game stopping opposing running backs, who have carried 133 times for a paltry 383 yards (2.9 YPC) and 3 TDs. ", "However, opposing quarterbacks have been effective picking up rushing yards on scrambles. ", "So far this season, the Eagles have played five games against opponents with quarterbacks that have some running ability. ", "Here is what those quarterbacks have done on the ground against them so far this year:\n\nPlayer Rush Yards YPC TD Kirk Cousins, Redskins 4 30 7.5 0 Alex Smith, Chiefs 4 21 5.3 0 Cam Newton, Panthers 11 71 6.5 1 Kirk Cousins, Redskins 3 18 6.0 0 C.J. Beathard, 49ers 6 40 6.7 0 TOTAL 28 180 6.4 1\n\n\n\nWhile the Eagles would surely prefer not to give up yards on the ground to quarterbacks, they don't seem to mind them picking up yards against them as much as they would an opposing running back. ", "That's because they view quarterback scrambles as opportunities to dish out pain.", "\n\n\"You hit them really hard when they break the line of scrimmage, because now they're a running back,\" said defensive line coach Chris Wilson, when asked how you stop an opposing quarterback from running. \"", "They're going to have those. ", "Any time you're blocking four on five, those opportunities are going to happen, but when the quarterback now breaks the pocket, we want to be clean, but get good solid tackles on the quarterback. ", "They're not running backs, so those are the opportunities where we can get nice clean plays on them.\"", "\n\nThe Eagles' next opponent is the Dallas Cowboys, who are led by the athletic Dak Prescott. ", "In 24 career games, Prescott has rushed 83 times for 477 yards (5.7 YPC) and 10 TDs. ", "If he runs against the Eagles two Sundays from now, Prescott would be wise to slide.", "\n\nOn the 28 quarterback runs the Eagles have faced so far this season, they have dished out a high number of good hits on the quarterback, which we'll show below, in gifs (in chronological order):\n\nMalcolm Jenkins hits Kirk Cousins\n\nThis is a violent collision:\n\nMalcolm Jenkins hits Kirk Cousins (again)\n\nOn another scramble to the right, Jenkins tries to make Cousins pay, as he pulls him to the ground by his head and neck (without grabbing the facemask or anything else illegal):\n\nA closer look:\n\nPatrick Robinson hits Alex Smith Here, Alex Smith doesn't like that Patrick Robinson hit him, but Smith is fair game if he dives head first." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.006369426751592357, 0.011235955056179775, 0, 0, 0, 0.008097165991902834, 0, 0.004830917874396135, 0, 0, 0, 0.010752688172043012, 0.011764705882352941, 0.011904761904761904, 0.0171606864274571 ]
0.005474
5
[ { "analysis_explanation": null, "end": 264, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253 }, { "analysis_explanation": null, "end": 534, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523 }, { "analysis_explanation": null, "end": 723, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 714 }, { "analysis_explanation": null, "end": 763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 748 }, { "analysis_explanation": null, "end": 773, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 765 }, { "analysis_explanation": null, "end": 795, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 785 }, { "analysis_explanation": null, "end": 825, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 815 }, { "analysis_explanation": null, "end": 860, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 842 }, { "analysis_explanation": null, "end": 870, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 862 }, { "analysis_explanation": null, "end": 1277, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1268 }, { "analysis_explanation": null, "end": 1354, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1342 }, { "analysis_explanation": null, "end": 1836, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1824 }, { "analysis_explanation": null, "end": 1866, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1858 }, { "analysis_explanation": null, "end": 1973, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1953 }, { "analysis_explanation": null, "end": 1983, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1975 }, { "analysis_explanation": null, "end": 2176, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2172 }, { "analysis_explanation": null, "end": 2219, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2204 }, { "analysis_explanation": null, "end": 2237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2225 }, { "analysis_explanation": null, "end": 2284, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2269 }, { "analysis_explanation": null, "end": 2302, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2290 }, { "analysis_explanation": null, "end": 2353, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2346 }, { "analysis_explanation": null, "end": 2375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2368 }, { "analysis_explanation": null, "end": 2523, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2507 }, { "analysis_explanation": null, "end": 2544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2529 }, { "analysis_explanation": null, "end": 2556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2546 }, { "analysis_explanation": null, "end": 2591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2575 }, { "analysis_explanation": null, "end": 2610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2605 } ]