texts
sequence
meta
dict
scores
sequence
avg_score
float64
0
0.36
num_sents
int64
5
5
tagged_pii_results
list
[ "Velcroman1 writes: Military supply companies from Russia, China, UAE, Indonesia, Korea, and Libya showed off tanks, missiles and other weapons in Paris at the Eurosatory 2012 show, the largest international military technology show focused on land warfare. ", "At the event, 53 countries were represented by more than 1,400 exhibitors for the 55,000 visitors, the United States leading with 158 companies. ", "But a surprising trend was evident: This year, the number of companies from non-Western countries that showed off new weaponry boomed — especially Russia and China. \"", "Western armed forces generally, and land forces in particular, are facing significant cuts in capability,\" said one expert. ", "These smaller countries with weaker economies are seeing dollar signs, in other words — and who cares the denomination." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 56, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50 }, { "analysis_explanation": null, "end": 63, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58 }, { "analysis_explanation": null, "end": 68, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65 }, { "analysis_explanation": null, "end": 79, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70 }, { "analysis_explanation": null, "end": 86, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81 }, { "analysis_explanation": null, "end": 97, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92 }, { "analysis_explanation": null, "end": 151, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146 }, { "analysis_explanation": null, "end": 373, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 356 }, { "analysis_explanation": null, "end": 447, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438 }, { "analysis_explanation": null, "end": 555, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549 }, { "analysis_explanation": null, "end": 565, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 560 } ]
[ "Q:\n\nFold expressions in MSVC\n\nI have the following function that computes the mean value:\ntemplate<typename... Ts>\nauto mean_of(const Ts... values)\n{\n return (... + values) / static_cast<double>(sizeof...(Ts));\n}\n\nWith VS 2017 15.6.0 Preview 3 the following code\nstd::cout << mean_of(1, 3);\n\noutputs 2.5. ", "It seems that MSVC interprets the fold expression as 1 + 3 / N and not as (1 + 3) / N. If I add extra parentheses around the fold expression, the result is correct. ", "With GCC no extra parentheses are needed.", "\nIs this a bug in MSVC or do we need extra parentheses? ", "\n\nA:\n\nThis is a bug in MSVC. ", "I've reduced it to:\ntemplate<class... Ts>\nconstexpr auto f1(Ts const... vals) {\n return 0 * (vals + ...);\n}\n\ntemplate<class... Ts>\nconstexpr auto f2(Ts const... vals) {\n return (vals + ...) * 0;\n}\n\nstatic_assert(f1(1,2,3) == 0);\nstatic_assert(f1(1,2,3) !", "= 0 * 1 + (2 + 3));\nstatic_assert(f2(1,2,3) == 0);\nstatic_assert(f2(1,2,3) !", "= 1 + (2 + 3) * 0);\n\n(which compiles fine with both GCC and clang, but triggers all four static_asserts in MSVC) and filed it internally.", "\n20180205 Update: This bug has been fixed for a future release of Visual C++.", "\n\nA:\n\nInteresting question.", "\nCorrecting my first interpretation, it seems to me that is g++ and clang++ are right and that MSVC is wrong.", "\nI suppose this because in the draft n4659 for C++17 (sorry: I don't have access at the final version) I see the expression rules (A.4) where the division operator is involved in a \"multiplicative-expression\" rule as follows\n\nmultiplicative-expression / pm-expression\n\nA \"multiplicative-expression\" can be also a \"pm-expression\" that can be a \"cast-expression\" that can be an \"unary-expression\" that can be a \"postfix-expression\" that can be a \"primary-expression\" that can be a \"fold-expression\"\nSo the rule can be seen as\n\nfold-expression / pm-expression\n\nSo, If I'm not wrong, a \"fold-expression\" should be evaluated as a whole before the division is applied.", "\nMy first interpretation (MSVC right, g++ and clang++ wrong) was based over an hasty lecture of 17.5.3\n\nThe instantiation of a fold-expression produces:\n(9.1) ((E1 op E2) op ···) op EN for a unary left fold\n\nand 8.1.6\n\nAn expression on the form (... op e) where op is a fold-operator is called a unary left fold.", "\n\nSo I supposed that\nreturn (... + values) / static_cast<double>(sizeof...(Ts));\n\nshould be instantiated\nreturn ((v1 + v2) + ... ) + vn / static_cast<double>(sizeof...(Ts));\n\nAnyway... right MSVC or not... to be sure... of you want\nreturn (1 + 3) / 2.0;\n\nI suggest you to add another couple of parentheses.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.024390243902439025, 0, 0, 0, 0, 0.0072992700729927005, 0, 0, 0, 0, 0, 0, 0 ]
0.002113
5
[ { "analysis_explanation": null, "end": 229, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225 }, { "analysis_explanation": null, "end": 291, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290 }, { "analysis_explanation": null, "end": 388, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 383 }, { "analysis_explanation": null, "end": 648, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 639 }, { "analysis_explanation": null, "end": 659, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654 }, { "analysis_explanation": null, "end": 740, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 731 }, { "analysis_explanation": null, "end": 874, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 869 }, { "analysis_explanation": null, "end": 947, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 942 }, { "analysis_explanation": null, "end": 990, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 987 }, { "analysis_explanation": null, "end": 1336, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1331 }, { "analysis_explanation": null, "end": 2123, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2120 }, { "analysis_explanation": null, "end": 2502, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2497 }, { "analysis_explanation": null, "end": 271, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 269 }, { "analysis_explanation": null, "end": 2109, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2107 }, { "analysis_explanation": null, "end": 2115, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2113 }, { "analysis_explanation": null, "end": 1081, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 1073 }, { "analysis_explanation": null, "end": 1081, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1073 } ]
[ "Thursday, June 30, 2011\n\nJust as the chicken combatants and various barbecue battlers before them, this cow and pig attended to the sermons telling them they had no intrinsic worth, that their lives belonged to others and not to themselves.", "\n\nAnd they believed. ", "When an idea is drummed into you, into your bones and muscles, you believe. ", "This idea took hold. ", "It ran away with them. ", "It fevered their minds. ", "It addled their spirits. ", "Before they knew what was happening, they had signed their lives away.", "\n\nSee what it has done to them!", "\n\nThey fight, yes, but not for freedom. ", "Not for justice. ", "Nor mercy. ", "No, they fight for their masters' reputations, for bragging rights of those who own, kill, and consume them.", "\n\nLook how they regard one another. ", "They are brothers, born in chains, but that brotherhood has been rendered invisible. ", "Neither sees a brother now. ", "Each sees only a rival. ", "An enemy.", "\n\nTuesday, June 28, 2011\n\nThe Civil War is a contextual grounding of increasing popularity (see here and here), and we think we know why: Suicidefoodism takes war, with all its hatred and moral ambiguities, and nullifies it. \"", "Hatred?\" ", "the Civil War imagery simpers. \"", "What hatred?\" ", "If something as bloody and desperate as war can be brought under control, can anyone or anything threaten suicidefoodism's power?", "\n\nIndeed, warfare's aggrieved parties, in this case a pair of pigs, shrivel not in hatred, but instead bask in the glow of amity.", "\n\nThey've laid down their arms. ", "They've cast aside their suspicions of each other. ", "Of the very system that brought them to this impasse. ", "Are they not equals, sharing their status as commodity, the fact of their Thingness? ", "Where they saw only an enemy before now they see a brother.", "\n\nHallelujah! ", "Barbecue has wrung wickedness from the world! ", "All that remains of a once-destructive institution is a proud and storied heritage of being eaten.", "\n\nSunday, June 26, 2011\n\nAgain the idols are cast down. ", "Knocked from their pedestals, they are dashed to the floor, ensmithereened. ", "First the pirates were emasculated. ", "Then the bikers. ", "In turn, the cowboys, the boxers, the superheroes, and still other he-man archetypes were fettered and enfeebled.", "\n\nSo it is with a mild sense of disgust—yes, we still have a supply of disgust, even if we ration it with more care than in the past—that we take in these (ahem) rockers. ", "When such stalwart symbols of reckless hedonism and bull-headed individuality can be so thoroughly tamed, we are all diminished. ", "Even the power of freedom—the very possibility of defiance—is tenuous.", "\n\nThere they are, crooning into a microphone-bone, bashing out power chords on a meatar (not the first we've seen, mind you: check out addenda 7 and 9 here), and just generally uncooling up the place.", "\n\nInstead of singing for their supper, they and the other rockers we've presented over the years sing to become supper. ", "Instead of a thorn in The Man's side, rock 'n' roll becomes The Man's servant. ", "Instead of issuing a challenge to the status quo, howling with the pain of the oppressed, the hungry, the stifled, the shut-down, the fed-up, the bored, and the ignored, they bow at the waist.", "\n\nAnother lucky animal! ", "The pig, too—there, just above the Jesus sign—can thank the fates that he was born in this time and place.", "\n\nThink of it: against the odds, he enters the world. ", "And he's healthy, to boot. ", "With a leg up. ", "And then! ", "Then, to discover that life gets even better: to learn that he is destined to increase the deliciousness of noodles!", "\n\nMonday, June 20, 2011\n\nOther self-destructive \"food\" animals practice passive resistance of their consumers, or anticipate their own needless deaths with unrestrained glee, or even get down in the bloody trenches and help speed themselves to the great beyond. ", "But Mo does them one better.", "\n\nHe has moved into the barbecue and made it his own. ", "It's his version of a swingin' bachelor pad, and it's got all the creature comforts any depressed creature could hope for: a bucket of barbecue sauce for 'round-the-clock basting, a fork for the occasional puncturing, and an interior roomy enough so he can stretch out and let that good, dry heat get everywhere. ", "He even has his own smokestack! ", "It's everything a pig with an unquenchable drive to suffer could ever need!", "\n\nNo tedious drive to the last reckoning for Mo. He just wakes up on his big day, and there he is. ", "Even before the coals heat up, he's ready and waiting, eager to meet his bleak, bleak future head on.", "\n\nSaturday, June 18, 2011\n\nThe animals, they love to fight. ", "They are not the placid nibblers and grazers you have been encouraged to believe. ", "No, these animals have claws. ", "By which we mean, of course, formidable fighting skills.", "\n\nThis is merely the movement's latest tawdry development. ", "A cow, a chicken, and a pig get pumped, don the gi, and put up their dukes, respectively. ", "And all to accomplish what, exactly? ", "Not to combat the power of barbecue to overwhelm them. ", "They've lent their names to sauces created to coat their cooking flesh! ", "No, no. ", "They fight for… Well, not honor. (", "Is there any honor among lunatics?) ", "You're looking at it wrong. ", "They fight not on their own behalf. ", "They fight for those who would kill, cook, and eat them.", "\n\nThursday, June 16, 2011\n\nA year and a half ago, we presented a letter printed in the New Yorker that reminded us all how much animals on loving farms enjoy their lot. ", "Well, in the magazine's June 13/20 issue, a Ms. G. of Ashland, Oregon, has a similar message for us:\n\nPlacing a value on the existence of cows, sheep, pigs, and chickens as both edible and sentient beings gives them species-appropriate lives, albeit with a scheduled death. (", "Emphasis added, because that's plain weird.)", "\n\nIn other words… Oh, shoot. ", "We lost it.", "\n\nIt's a squirrely thing, this idea.", "\n\nNo, wait. ", "It's like this: The animals are better off when people think of them as walking foodstuffs—this is opposed to supporting the bioengineered (\"vat\") meat industry waiting in the wings, an industry that would eliminate the need for actual animals.", "\n\nBecause see, um…\n\nBecause if animals are nothing but commodities, then, even though, sure, someone else will control every aspect of their existence and their \"scheduled\" deaths, at least the animals will be granted \"species-appropriate\" lives. ", "And who's deciding what's appropriate? ", "Why, the people making all the decisions and doing all the killing, of course!", "\n\nHey, Ms. G. is just telling you how the animals see it. ", "They are thankful for the opportunity to live and die at your pleasure. ", "Like the most sycophantic subjects of the cruelest tsar, the animals live and die to serve.", "\n\nTuesday, June 14, 2011\n\nThey get out on the lake, they manage to stand on the skis, and they show their stuff. ", "For you. ", "For you! ", "To bring a little enjoyment to your life. ", "To put a smile on your face. ", "They just want to make you feel good.", "\n\nBut it's not enough, is it? ", "What will it take for you to eat them? ", "It's such a simple thing, such a small thing, isn't it?", "\n\nWell, not to them it's not.", "\n\nThey're working. ", "This isn't fun for them. ", "This is their job and they do it well. ", "You think it's easy to waterski when you don't have hands? ", "When your legs end in trotters? ", "Do you have any idea how much those custom skis cost? (", "Upwards up $800 a pair.) ", "This doesn't even take into account the boat, the moorage fees, the fuel. ", "The permits! ", "The photographer alone costs $300.", "\n\nSunday, June 12, 2011\n\nA cute animal, the Iron Maiden font, wings, senseless destruction in the offing. ", "Yes, we've been here before: A year ago, we profiled a lamb receiving the same \"takedown\" treatment.", "\n\nThe pig is thrilled to be the guest of honor at an event dedicated to dismantling him like an old kitchen appliance. ", "Amid the flames, he smiles. ", "He positively beams. ", "It's all for him! ", "They've come for him! ", "To carve him up and celebrate the crispness of his smoked and cured meat. ", "The intimacy, the acceptance... It's almost too much for our pig to take. ", "His heart is bursting with blessings. ", "Temporarily.", "\n\nWhat the pig doesn't see or cannot credit is the bristling anti-pig attitude of his public. ", "They have gathered to take him down a peg, to mete out mob justice for some invisible crime. ", "Somehow, the pig doesn't see it coming.", "\n\nWe have to ask—and hope not to receive an answer—how many other adorable animals are lining up for similar takedowns? ", "How far does this movement go? ", "Will we be seeing a tough-guy veal calf? ", "A sideburned chick? ", "No, really, don't tell us.", "\n\nFriday, June 10, 2011\n\nPraise the Lord BBQ draws inspiration from Acts 11: 5-9. ", "On the off chance we need to refresh your memories, here are the verses:\n\n5 “I was in the city of Joppa praying, and in a trance I saw a vision. ", "I saw something like a large sheet being let down from heaven by its four corners, and it came down to where I was. ", "6 I looked into it and saw four-footed animals of the earth, wild beasts, reptiles and birds. ", "7 Then I heard a voice telling me, ‘Get up, Peter. ", "Kill and eat.’ ", "8 “I replied, ‘Surely not, Lord! ", "Nothing impure or unclean has ever entered my mouth.’ ", "9 “The voice spoke from heaven a second time, ‘Do not call anything impure that God has made clean.’\"", "\n\nClean! ", "Clean! ", "Rejoice that he is clean! ", "Casting aside the prohibition against eating his flesh like a pestilent shroud, the pig glows with righteousness. ", "Free—for the first time, free, free, gloriously free—free from the burden of that hated injunction, that stain that marked him as unfit, the pig descends from heaven as upon a cloud. ", "The chicken's and cow's expressions might be heathenishly ambiguous—do we see on their faces fear? ", "anxiety? ", "disbelief?—but the pig's heart is strong and pure, like a bell that fills heaven with its peal.", "\n\nHis corruption has been cleansed, his sentence revoked, his disgrace rescinded!", "\n\nOf all the uses to which religion has been put, the various forms into which it has been trained like a compliant vine, the most comforting by far is this: the cementing of the animals' role as humanity's dull-witted slave, its selfless foundation, the floor upon which it treads.", "\n\nAnd lo! ", "The pig looks upward, arms flung wide, in thanks. ", "For now he will be eaten. ", "Even as the cow and chicken, he will be eaten!", "\n\nWednesday, June 8, 2011\n\nWe could go about investigating the confluence of forces that led to this phantasmagoria (an ad agency, a barbecue joint, and a music conference), but that would just detract from the insanity on display.", "\n\nThe basics are, well, basic: A cow and a pig advertise barbecue by repeatedly killing and eating each other and themselves. ", "If that's all it was, we'd be out of here in five minutes.", "\n\nBut where other outfits are content delivering stale homilies about service, dedication, and self-destruction, these guys give us a tour de force of gore and depravity!", "\n\nAnd what makes it even more chilling is the animation's reliance on the tropes of childhood. ", "It's Wes Craven meets Sesame Street, a pairing that only the joined psychoses of barbecue, advertising, and rock 'n' roll could have conjured.", "\n\nPigs eagerly grate themselves to pulp on a monstrous playground slide. ", "Aboard a pogo-stick, another pig bounces into a bonfire and then a barrel of barbecue sauce.", "\n\nA cow slices herself into quivering slabs of flesh with a wire jumprope.", "\n\nChildhood has become a nightmare! ", "Freedom has become a nightmare! ", "And play and leisure—nightmares. ", "Living itself has become a nightmare! ", "And the animals frolic gaily through the nightmare landscape, their only sadness born of the knowledge that their suffering must someday come to an end.", "\n\nMonday, June 6, 2011\n\nThis one scores high marks for its insistence on underscoring our basic thesis:\n\nThese animals want to be here. ", "They want to participate in institutions working hard to destroy them and all their kind. ", "In the world they inhabit, struggling is unthinkable. ", "It's not that resistance is merely useless. ", "It's that resisting is—literally—unthinkable. ", "It never crosses their minds. ", "No matter what horrors await them, no matter how grisly their daily lives, they show up and punch in early. ", "They are dedicated to this.", "\n\nThis mascot can fly a plane, for Christ's sake. ", "If he wanted to make a run for it, he'd have no trouble getting away. ", "Even on his own, he could probably flap his way over a fence or two. ", "Well, he does have his way, and that's not what he wants.", "\n\nNope, he would rather they hack off his wings and fry 'em up.", "\n\nIn the restaurant's placating commercial spots, two chickens sit around shooting the breeze. ", "They talk about their personal lives. ", "They talk about menu changes. ", "They talk about everything except the one thing you might expect: getting out of that deathtrap alive.", "\n\nPages\n\nNOTE\n\nAll images are trademarks and/or copyrights of their respective owners.", "\n\nDiagnosis\n\nWhat is Suicide Food? ", "Suicide Food is any depiction of animals that act as though they wish to be consumed. ", "Suicide Food actively participates in or celebrates its own demise. ", "Suicide Food identifies with the oppressor. ", "Suicide Food is a bellwether of our decadent society. ", "Suicide Food says, “Hey! ", "Come on! ", "Eating meat is without any ethical ramifications! ", "See, Mr. Greenjeans? ", "The animals aren’t complaining! ", "So what's your problem?” ", "Suicide Food is not funny." ]
{ "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.011764705882352941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005208333333333333, 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.005917159763313609, 0.0036363636363636364, 0.022727272727272728, 0, 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.009433962264150943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0196078431372549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0058823529411764705, 0, 0.007042253521126761, 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.02857142857142857, 0, 0.014705882352941176, 0, 0, 0.04, 0, 0, 0.047619047619047616, 0, 0, 0 ]
0.001234
5
[ { "analysis_explanation": null, "end": 29, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 908, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 886 }, { "analysis_explanation": null, "end": 1883, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1862 }, { "analysis_explanation": null, "end": 2821, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2812 }, { "analysis_explanation": null, "end": 3179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3174 }, { "analysis_explanation": null, "end": 3488, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3467 }, { "analysis_explanation": null, "end": 3733, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3731 }, { "analysis_explanation": null, "end": 4275, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4272 }, { "analysis_explanation": null, "end": 4307, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4296 }, { "analysis_explanation": null, "end": 4451, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4428 }, { "analysis_explanation": null, "end": 5212, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5166 }, { "analysis_explanation": null, "end": 5367, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5357 }, { "analysis_explanation": null, "end": 5383, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5381 }, { "analysis_explanation": null, "end": 5394, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5387 }, { "analysis_explanation": null, "end": 5402, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5396 }, { "analysis_explanation": null, "end": 6357, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6355 }, { "analysis_explanation": null, "end": 6588, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6566 }, { "analysis_explanation": null, "end": 7351, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7330 }, { "analysis_explanation": null, "end": 7473, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7463 }, { "analysis_explanation": null, "end": 8423, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8402 }, { "analysis_explanation": null, "end": 8585, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8580 }, { "analysis_explanation": null, "end": 8886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8881 }, { "analysis_explanation": null, "end": 10148, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10125 }, { "analysis_explanation": null, "end": 10536, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10524 }, { "analysis_explanation": null, "end": 10691, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10687 }, { "analysis_explanation": null, "end": 10815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10805 }, { "analysis_explanation": null, "end": 11490, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11470 }, { "analysis_explanation": null, "end": 11935, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11930 }, { "analysis_explanation": null, "end": 13048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13038 } ]
[ "By continuing to use this site you consent to the use of cookies on your device as described in our\nCookie Policy unless you have disabled them. ", "You can change your Cookie Settings at any time but parts of our site will not function correctly without them.", "\n\nFacebook said Thursday it will invest over $1 billion to build a data centre in Singapore, its first in Asia, powered by renewable energy and adapted to the city-state's tropical climate.", "\n\nThe centre is expected to be operational around 2022, and will host Facebook servers and centralise its IT operations, Thomas Furlong, Facebook vice president of infrastructure data centres, told reporters.", "\n\nThe 170,000 square metres (1.83 million square foot) site in the land-scarce city-state will be stacked over 11-storeys, and will come with custom features to cope with the steamy temperatures, which rarely drop below 25 degrees Celsius (77 Fahrenheit).", "\n\nThese include a new state-of-the-art cooling system which uses water rather than air and will work better in the humidity, as well as a building facade made of perforated, lightweight material to allow for better air flow.", "\n\nThe company expects it to be run on 100 per cent renewable energy, like its other data centres.", "\n\nThe 1.4 billion Singaporean dollars ($1.02 billion) facility will be the first data centre designed and constructed by Facebook in Asia as the company increasingly relies on custom-built facilities to meet its needs, Furlong said.", "\n\nIt will be Facebook's 15th data centre worldwide.", "\n\nFurlong said Facebook, which has 2.23 billion monthly active users as of the end of June, chose Singapore because of its robust infrastructure, availability of skilled labour and ease of doing business with the government.", "\n\nGoogle has also built two data centres in the city-state, and announced this month it was starting work on a third, bringing their investment in the sites to $850 million.", "\n\nDespite its popularity in Asia, Facebook has also faced criticism, particularly in Myanmar where it was used as a platform for the army and Buddhist hardliners to spread hate speech against the Muslim Rohingya minority." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0.004807692307692308, 0, 0, 0, 0.004310344827586207, 0.0196078431372549, 0.008928571428571428, 0, 0.004524886877828055 ]
0.003515
5
[ { "analysis_explanation": null, "end": 279, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271 }, { "analysis_explanation": null, "end": 346, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 337 }, { "analysis_explanation": null, "end": 365, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 361 }, { "analysis_explanation": null, "end": 497, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 486 }, { "analysis_explanation": null, "end": 578, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 564 }, { "analysis_explanation": null, "end": 903, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 893 }, { "analysis_explanation": null, "end": 1360, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1356 }, { "analysis_explanation": null, "end": 1449, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1442 }, { "analysis_explanation": null, "end": 1513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1506 }, { "analysis_explanation": null, "end": 1559, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1552 }, { "analysis_explanation": null, "end": 1594, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1579 }, { "analysis_explanation": null, "end": 1611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1602 }, { "analysis_explanation": null, "end": 1811, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1801 }, { "analysis_explanation": null, "end": 1931, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1927 }, { "analysis_explanation": null, "end": 1991, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1984 }, { "analysis_explanation": null, "end": 2049, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2041 }, { "analysis_explanation": null, "end": 2101, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2095 } ]
[ " UNITED STATES DISTRICT COURT\n FOR THE DISTRICT OF COLUMBIA\n\n\nIN THE MATTER OF THE SEARCH OF\nAPPLE IPHONE, IMEI 013888003738427 Magistrate Case No. ", "14-278 (JMF)\n\n MEMORANDUM OPINION AND ORDER\n\n Pending before the Court is an Application for a search and seizure warrant pursuant to\n\nRule 41 of the Federal Rules of Criminal Procedure for an Apple iPhone 4. ", "See Affidavit In\n\nSupport of Application for Search Warrant at 6 (hereinafter the “Affidavit”). ", "1 In response to this\n\nCourt’s recent rulings with respect to the proper scope of searches of electronic devices, 2 the\n\ngovernment has provided a detailed “Attachment B”—which lists the items to be seized from the\n\niPhone—and a new section, entitled “Electronic Storage and Forensic Analysis” (hereinafter\n\n“Forensic Analysis section”). ", "See Affidavit at 10-15. ", "Although Attachment B provides a\n\nsufficiently particularized list of the data that the government will search for and seize, the\n\nForensic Analysis section fails to provide this Court with the same level of detail as to the\n\nmethodologies to be used to conduct the search. ", "Specifically, the government fails to articulate\n\nhow it will limit the possibility that data outside the scope of the warrant will be searched. ", "For\n\nthe reasons stated below, the government’s Application for a search and seizure warrant will,\n\ntherefore, be denied.", "\n\n I. Background\n\n The government’s Application is part of its investigation of Daniel Milzman, a\n\nGeorgetown University student suspected of creating ricin in his dorm room in violation of 18\n1\n Because the Clerk’s office does not index filings on ECF for a search warrant application until after an order has\nbeen issued granting or denying an application, this opinion cannot reference specific ECF filing numbers.", "\n2\n See In the Matter of the Search of Black iPhone 4, S/N Not Available, Mag. ", "Case No. ", "14-235, 2014 WL 1045812\n(D.D.C. Mar. 11, 2014) (Facciola, M.J.) (hereinafter In re Search of Black iPhone); see also In the Matter of the\nSearch of Odys Loox Plus Tablet, Serial Number 4707213703415, In Custody of United States Postal Inspection\nService, 1400 New York Ave NW, Washington, DC, Mag. ", "Case No. ", "14-265, 2014 WL 1063996 (D.D.C. Mar. 20,\n2014) (Facciola, M.J.) (hereinafter In re Search of Odys Loox).", "\n\fU.S.C. § 175. ", "3 See Affidavit at 3-4. ", "Pursuant to a search and seizure warrant issued by this Court\n\non March 18, 2014, see In the Matter of the Search of the Premises Located at Georgetown\n\nUniversity [REDACTED], Mag. ", "Case No. ", "14-263 (sealed), the government seized the iPhone at\n\nissue. ", "4 In that warrant, the Court interlineated a requirement that a separate search and seizure\n\nwarrant must be obtained to actually search the contents of the iPhone. ", "See Id., Mag. ", "Case No.", "\n\n14-263 [#4] at 5-6.", "\n\n The government has now returned for that subsequent search and seizure warrant.", "\n\nPursuant to a standard format used by the government, the Application contains an “Attachment\n\nA,” which describes the device to be searched, and Attachment B, which lists the specific data to\n\nbe seized. ", "See Affidavit at 13-15. ", "Specifically, Attachment B says:\n\n ATTACHMENT B\n\n LIST OF ITEMS AUTHORIZED TO BE SEARCHED FOR\n AND SEIZED PURSUANT TO FEDERAL SEARCH WARRANT\n AT THE TARGET RESIDENCE\n\n 1. ", " All records on the Device described in Attachment A that reference or\n relate to violations of Title 18, United States Code, Section 175 (development,\n production, stockpile, transfer, acquisition, retention, or possession of a biological\n agent, toxin, or delivery system) and involve DANIEL HARRY MILZMAN,\n including:\n a. Records of or information about the Device’s Internet activity,\n including firewall logs, caches, browser history and cookies,\n “bookmarked” or “favorite” web pages, search terms that the user\n entered into any Internet search engine, and records of user-typed\n web addresses;\n b. Records of activities relating to the operation and ownership of the\n Device, such as telephone incoming/outgoing call records, notes\n (however and wherever written, stored, or maintained), electronic\n books, diaries, and reference materials.", "\n c. Records of address or identifying information for DANIEL\n HARRY MILZMAN and (however and wherever written, stored,\n\n\n3\n All references to the United States Code are to the electronic versions that appear in Westlaw or Lexis.", "\n4\n The Affidavit states that the government conducted a consent search of Milzman’s dormitory room and then seized\nthe phone. ", "See Affidavit at 6. ", "However, this Court issued a warrant for its seizure the same day.", "\n\n 2\n\f or maintained) contact lists, user IDs, eIDs (electronic ID\n numbers), and passwords.", "\n d. Any digital images documenting, referencing, or related to the\n production, storage, or dissemination of biological agents, toxins,\n or delivery systems;\n e. GPS data stored on the Device to include the Device’s location and\n search history;\n f. Any records of activity indicative of purchases potentially related\n to materials used in the production and/or storage of biological\n agents, toxins, or delivery systems;\n g. Evidence of user attribution showing who used or owned the\n Device during the time the violation described in this warrant is\n suspected of being committed, such as logs, phonebooks, saved\n usernames and passwords;\n h. Any communications referencing or relating to the production or\n possession of ricin, to include text messages and e-mails;\n 2. ", " Records evidencing the use of Internet Protocol addresses, including:\n a. Records of specific Internet Protocol addresses used and accessed;\n b. Records of Internet activity, including firewall logs, caches,\n browser history and cookies, “bookmarked” or “favorite” web pages,\n search terms that the user entered into any Internet search engine, and\n records of user-typed web addresses.", "\n 3. ", " As used above, the terms “records” and “information” include all of the\n foregoing items of evidence in whatever form and by whatever means they\n may have been created or stored.", "\n 4. ", " Contextual information necessary to understand the evidence described in\n this attachment.", "\n\nId. at 14-15.", "\n\n For the first time in this Court’s experience, the government has also included a Forensic\n\nAnalysis section. ", "That section provides: 5\n\n ELECTRONIC STORAGE AND FORENSIC ANALYSIS\n\n 23. ", " Based on my knowledge, training, and experience, I know that electronic devices\n can store information for long periods of time. ", "Similarly, things that have been\n viewed via the Internet are typically stored for some period of time on the device.", "\n This information can sometimes be recovered with forensics tools.", "\n 24. ", " Forensic evidence. ", "As further described in Attachment B, this application seeks\n permission to locate not only electronically stored information that might serve as\n direct evidence of the crimes described on the warrant, but also forensic evidence\n that establishes how the Device to be seized was used, the purpose of its use, who\n\n5\n The numbered paragraphs reflect the original numbering in the Affidavit. ", "For the sake of completeness, the entire\nForensic Analysis section is reproduced in full.", "\n\n 3\n\f used it, and when. ", "There is probable cause to believe that this forensic electronic\n evidence might be on this Device because:\na. Data on the storage medium can provide evidence of a file that was once on the\n storage medium but has since been deleted or edited, or of a deleted portion of a\n file (such as a paragraph that has been deleted from a word processing file).", "\nb. Forensic evidence on a device can also indicate who has used or controlled the\n device. ", "This “user attribution” evidence is analogous to the search for “indicia of\n occupancy” while executing a search warrant at a residence.", "\nc. A person with appropriate familiarity with how an electronic device works may,\n after examining this forensic evidence in its proper context, be able to draw\n conclusions about how electronic devices were used, the purpose of their use, who\n used them, and when.", "\n25. ", " Nature of examination. ", "Based on the foregoing, and consistent with Rule\n 41(e)(2)(B), the warrant I am applying for would permit the examination of the\n device consistent with the warrant, noting the following:\n a. The examination will be conducted jointly between investigators and an\n FBI technical review team with subject matter expertise in reviewing and\n analyzing electronic devices. ", "The length of such examinations will vary\n greatly depending on the amount of data on the Device and the scope of\n the search authorized.", "\n b. Traditionally used forensic methods to target information specifically\n related to an offense, such as keyword searches for related terms, are not\n compatible with all types of files and applications on the Device.", "\n Therefore the examination may require authorities to employ techniques\n including, but not limited to, computer-assisted scans of the entire\n medium, that might expose many parts of the device to human inspection\n in order to determine whether it is evidence described by the warrant.", "\n c. The process of identifying the exact files, application data, registry entries,\n logs, or other forms of forensic evidence on an electronic device that are\n necessary to draw an accurate conclusion is a dynamic process. ", "While it is\n possible to specify in advance the records to be sought, computer evidence\n is not always data that can be merely reviewed by a review team and\n passed along to investigators. ", "Whether data stored on the Device to be\n seized is evidence may depend on other information stored on the Device\n and the application of knowledge about how the Device behaves.", "\n Therefore, contextual information necessary to understand other evidence\n also falls within the scope of the warrant.", "\n26. ", " Data outside the scope of the warrant. ", "Any information discovered on the Device\n to be seized which falls outside of the scope of this warrant will be returned or, if\n copied, destroyed within a reasonably prompt amount of time after the\n information is identified.", "\n27. ", " Manner of execution. ", "Because this warrant seeks only permission to examine a\n device already in law enforcement’s possession, the execution of this warrant\n does not involve the physical intrusion onto a premises. ", "Consequently, I submit\n there is reasonable cause for the Court to authorize execution of the warrant at any\n time in the day or night.", "\n\n 4\n\f 28. ", " Therefore, it is respectfully requested that the warrant sought by this application\n explained above, and further authorize a full physical and forensic examination of\n the seized items at a secure location.", "\n\nAffidavit at 10-12. ", "6\n\n II. ", " Analysis\n\n In In re Search of Black iPhone and In re Search of Odys Loox, two opinions issued by\n\nthis Court over the past two weeks, the Court admonished the government to explain how it\n\nintends “to search for each thing it intends to seize [and] how it will deal with the issue of\n\nintermingled documents.” ", "In re Search of Black iPhone, 2014 WL 1045812, at *4. ", "7 The\n\ngovernment has made some improvements in its current Application, yet it still fails to satisfy the\n\nparticularity requirement of what will be searched and fails to fully explain to the Court how\n\nmuch data for which it does not have probable cause will likely be seized. ", "The only way to\n\naddress these issues is for the government to provide the Court with its search protocol, which\n\nwould explain how the search will occur.", "\n\n A. The Constitutional Basis for the Court’s Concerns\n\n The concerns raised by the Court in this opinion, which are repeated in In re Search of\n\nOdys Loox, are based on the probable cause and particularity requirements of the Fourth\n\nAmendment. ", "8 The Fourth Amendment provides:\n\n The right of the people to be secure in their persons, houses, papers, and effects,\n against unreasonable searches and seizures, shall not be violated, and no Warrants\n\n6\n The affiant is Special Agent David Goldkopf of the Federal Bureau of Investigation. ", "See Affidavit at 1. ", "He uses the\nfirst person throughout the entire affidavit.", "\n7\n The Court has also raised concerns about overbroad search warrant applications that failed to limit the data the\ngovernment intended to seize to the data for which it had established probable cause to seize. ", "See In re Search of\nBlack iPhone, 2014 WL 1045812, at *2-3. ", "The government’s revised Attachment B in both the present matter and in\nIn re Search of Odys Loox, 2014 WL 1063996, at *2, have corrected these deficiencies. ", "In particular, the\nAttachment B in this case represents a paragon of what an Attachment B should be: it leaves no doubt as to what the\ngovernment intends to seize and uses clear descriptions. ", "See Affidavit at 14-15.", "\n8\n The issue of particularity of items to be seized, which is addressed in footnote 7 and fixed by this Application’s\nAttachment B, is firmly rooted in the requirement that warrants must particularly describe the “things to be seized.”", "\nU.S. Const. ", "amend. ", "IV.", "\n\n 5\n\f shall issue, but upon probable cause, supported by Oath or affirmation, and\n particularly describing the place to be searched, and the persons or things to be\n seized.", "\n\nU.S. Const. ", "amend. ", "IV. ", "Items, such as data, can only be seized if there is probable cause to\n\nsupport their seizure. ", "See Coolidge v. N.H., 403 U.S. 443, 467 (1971). ", "With respect to the\n\nparticularity requirement, the Supreme Court has recognized that it “ensures that the search will\n\nbe carefully tailored to its justifications, and will not take on the character of the wide-ranging\n\nexploratory searches the Framers intended to prohibit.” ", "Maryland v. Garrison, 480 U.S. 79, 84\n\n(1987). ", "As a result, “the scope of a lawful search is ‘defined by the object of the search and the\n\nplaces in which there is probable cause to believe that it may be found. ", "Just as probable cause to\n\nbelieve that a stolen lawnmower may be found in a garage will not support a warrant to search an\n\nupstairs bedroom, probable cause to believe that undocumented aliens are being transported in a\n\nvan will not justify a warrantless search of a suitcase.’” ", "Id. at 84-85 (citing United States v. Ross,\n\n456 U.S. 798, 824 (1982)). ", "The Court remains concerned that, in its current form, the\n\ngovernment’s Application violates both of these provisions.", "\n\n 1. ", "Oversiezure Remains a Problem, Violating the Requirement of Probable\n Cause\n\n In its previous two opinions, the Court was concerned about the overseizure of data for\n\nwhich there was no probable cause. ", "As written, the government’s application indicated that it\n\nwould take and sift through massive amounts of data for which it had no probable cause to seize\n\nin the first place. ", "See In re Search Black iPhone, 2014 WL 1045812, at *4-5. ", "The Court thus\n\nrequired an intended search protocol so that it could better understand the scope of the warrant it\n\nwas asked to issue. ", "Whether the target devices would be imaged in full, for how long those\n\nimages will be kept, and what will happen to data that is seized but is ultimately determined not\n\n\n\n\n 6\n\fto be within the scope of the warrant—or, more precisely, Attachment B—can only be addressed\n\nby a search protocol; after all, the imaging actually occurs as part of the search process.", "\n\n The government failed to adequately address this issue in In re Search of Odys Loox\n\nbecause it indicated that it would “image these devices and store them until the target/\n\ndefendant’s appeals and habeas proceedings are concluded.” ", "2014 WL 1063996, at *5 (internal\n\nquotation and citation omitted). ", "The government was therefore admitting that, even though it had\n\nprobable cause for only some of the data on the devices, it intended to keep all of the data for an\n\nindefinite period of time. ", "That would constitute an unconstitutional seizure, which this Court\n\ncould not permit. ", "See United States v. Tamura, 694 F.2d 591, 595 (9th Cir. ", "1982) (“However, the\n\nwholesale seizure for later detailed examination of records not described in a warrant is\n\nsignificantly more intrusive, and has been characterized as ‘the kind of investigatory dragnet that\n\nthe fourth amendment was designed to prevent.’”) (", "citing United States v. Abrams, 615 F.2d\n\n541, 543 (1st Cir. ", "1980)). ", "9\n\n The present Application has largely, but not entirely, solved this problem. ", "The\n\ngovernment’s position is now:\n\n Data outside the scope of the warrant. ", "Any information discovered on the Device\n to be seized which falls outside of the scope of this warrant will be returned or, if\n copied, destroyed within a reasonably prompt amount of time after the\n information is identified.", "\n\nApplication at 11. ", "This answers the question of what will happen to the data that the government,\n\nhaving finished its search, determines is outside the scope of Attachment B and thus outside the\n\nscope of the warrant. ", "The Court’s only remaining quibble is that, unlike in In re Search of Odys\n\nLoox, the government does not specify here that the iPhone will be imaged. ", "This is important\n\nbecause, if the device will be imaged, then there will be a complete copy of all its data—\n\n9\n Certainly, the data is, in one sense, already seized because the device is seized. ", "The device, however, was seized\npursuant to an earlier warrant issued by this Court.", "\n\n 7\n\fincluding the data for which there is no probable cause to seize—that must be accounted for and\n\nwhich ultimately must be purged of data outside the scope of the warrant. ", "As a practical matter,\n\nthe Court cannot imagine that an image would not be created, so the government must clarify\n\nthis aspect and make clear in its applications that the non-relevant data will be deleted from any\n\nsystem images. ", "Including such a statement in a search protocol would address this concern. ", "See\n\nUnited States v. Hill, 459 F.3d 966, 976-77 (9th Cir. ", "2006) (holding overbroad a warrant\n\nauthorizing the “blanket seizure” of computer storage media without sufficiently explaining the\n\nprocess—in that case removing all storage media offsite—to the issuing magistrate).", "\n\n 2. ", "A Search Protocol Is Needed to Address the Particularity of the Place to\n Be Searched\n\n The Court also requires a search protocol for a separate Fourth Amendment reason—to\n\nparticularly describe the place to be searched. ", "In a broad manner, describing the iPhone and its\n\nspecific IMEI number certainly describes the “place to be searched” in a particular manner. ", "But\n\nan electronic search is not that simple. ", "An iPhone 4 has either 16 GB or 32 GB of flash\n\nmemory, 10 which could allow storage of up to around two million text documents. ", "11 Obviously\n\nno one—especially not a college student—would fill an iPhone with text documents, but it is\n\ninconceivable that the government would go file by file to determine whether each one is within\n\nthe scope of the warrant. ", "Instead, as the government has explained in extremely general terms, it\n\nwill use some sort of “computer-assisted scans” to determine where to look because those scans\n\nwill determine which parts will be exposed “to human inspection in order to determine whether it\n\nis evidence described by the warrant.” ", "Affidavit at 11. ", "Thus, a sufficient search protocol, i.e. an\n\nexplanation of the scientific methodology the government will use to separate what is permitted\n\n\n10\n See iPhone 4 – Technical Specifications, available at http://support.apple.com/kb/sp587.", "\n11\n See How Many Pages in a Gigabyte?, ", "available at\nwww.lexisnexis.com%2Fapplieddiscovery%2Flawlibrary%2Fwhitepapers%2Fadi_fs_pagesinagigabyte.pdf.", "\n\n 8\n\fto be seized from what is not, will explain to the Court how the government will decide where it\n\nis going to search—and it is thus squarely aimed at satisfying the particularity requirement of the\n\nFourth Amendment.", "\n\n In drawing this conclusion, the Court finds persuasive the 2012 opinion from the\n\nSupreme Court of Vermont, which authorized ex ante restrictions on search warrants because\n\n“the only feasible way to specify a particular ‘region’ of the computer will be by specifying how\n\nto search.” ", "In re Search Warrant, 71 A.3d 1158, 1171 (Vt. ", "2012). ", "This also distinguishes the\n\nCourt’s requirement for a search protocol from cases like Dalia v. United States, 441 U.S. 238,\n\n257-58 (1979). ", "In that case, the government obtained a warrant to bug the petitioner’s office, but\n\nit did not specify in the warrant application that the bug would be planted surreptitiously. ", "Id. at\n\n242, 245. ", "Although petitioner argued that the warrant failed “to specify that it would be executed\n\nby means of a covert entry of his office,” the Supreme Court was unpersuaded that the Fourth\n\nAmendment requires an issuing court to “set forth precisely the procedures to be followed by the\n\nexecuting officers” because “the manner in which a warrant is executed is subject to later judicial\n\nreview as to its reasonableness.” ", "Id. at 257-58.", "\n\n Unlike in Dalia, however, this Court is not requiring a search protocol so that it may\n\nspecify how the warrant is to be executed. ", "Instead, the protocol will explain to the Court how the\n\ngovernment intends to determine where it will search (which “parts”—or blocks—of the\n\niPhone’s NAND flash drive) 12 and how those decisions with respect to how the search will be\n\nconducted will help limit the possibility that locations containing data outside the scope of the\n\nwarrant will be searched (which is the intermingled documents problem, see In re Search Black\n\n12\n See NAND Flash 101: An Introduction to NAND Flash and How to Design It in Your Next Product (“The NAND\nFlash array is grouped into a series of blocks, which are the smallest erasable\nentities in a NAND Flash device.”), ", "available at www.micron.com%2F-\n%2Fmedia%2FDocuments%2FProducts%2FTechnical%2520Note%2FNAND%2520Flash%2Ftn2919_nand_101.p\ndf\n\n 9\n\fiPhone, 2014 WL 1045812, at *4). ", "Instead of identifying specific blocks of the iPhone’s flash\n\ndrive will be searched ahead of time—which would be impossible—the Court is instead asking\n\nthe government to explain its methodology for determining, once it is engaged in the search, how\n\nit will determine which blocks should be searched for data within the scope of the warrant. ", "See\n\nIn re Search Warrant, 71 A.3d at 1171. ", "This is a subtle but, depending on one’s interpretation of\n\nthe breadth of Dalia, constitutionally significant distinction.", "\n\n One other point is worth noting. ", "In the physical world, a search of an entire file cabinet or\n\nbuilding for a particular document is constitutionally permissible only because there is no way to\n\nknow with any certainty ahead of time how the search location can be narrowed so that only the\n\nspecific folder containing the document will be searched. ", "See United States v. Burgess, 576 F.3d\n\n1078, 1094 (10th Cir. ", "2009) (“One would not ordinarily expect a warrant to search filing\n\ncabinets for evidence of drug activity to prospectively restrict the search to ‘file cabinets in the\n\nbasement’ or to file folders labeled ‘Meth Lab’ or ‘Customers.’”). ", "In such instances, the textual\n\nadmonitions of the Fourth Amendment must give way to the practical reality of how the search\n\nmust be conducted. ", "Tamura, 694 F.2d at 595 (“It is true that all items in a set of files may be\n\ninspected during a search, provided that sufficiently specific guidelines for identifying the\n\ndocuments sought are provided in the search warrant and are followed by the officers conducting\n\nthe search.”).", "\n\n The digital world however, is entirely different. ", "For example, sophisticated search tools\n\nexist, and those search tools allow the government to find specific data without having to\n\nexamine every file on a hard drive or flash drive. ", "When searching electronic devices to seize the\n\ndata, the potential for abuse has never been greater: it is easy to copy them and store thousands\n\nor millions of documents with relative ease. ", "But, by using search tools, there is also the potential\n\n\n\n 10\n\ffor narrowing searches so that they are more likely to find only the material within the scope of\n\nthe warrant. ", "It is, of course, also in the government’s best interest to do so, as it would be a waste\n\nof resources to, for example, search file by file looking for data in the scope of the warrant—\n\nassuming that, on a 16 or 32 GB flash drive, it is even possible to do so and ever finish the\n\nsearch.", "\n\n a. The Government Has Still Not Provided a Search Protocol\n\n All the Court is asking the government to do is explain how it is going to conduct this\n\nsearch to minimize the risk that files outside the scope of the warrant will be discovered. ", "As the\n\nNinth Circuit has made clear, “the reality that over-seizing is an inherent part of the electronic\n\nsearch process” requires this Court to “exercise ‘greater vigilance’ in protecting against the\n\ndanger that the process of identifying seizable electronic evidence could become a vehicle for the\n\ngovernment to gain access to a larger pool of data that it has no probable cause to collect.”", "\n\nUnited States v. Schesso, 730 F.3d 1040, 1042 (9th Cir. ", "2013) (citing United States v.\n\nComprehensive Drug Testing, Inc., 621 F.3d 1162, 1177 (9th Cir. ", "2010) (en banc) (per curiam)).", "\n\nThis Court agrees with that court’s reasoning, and an appropriate search protocol is the answer to\n\nprotecting against the government searching data on an electronic device when it has no right to\n\nsearch that data.", "\n\n The government searches hard drives and cell phones on a regular basis—this Court is\n\naware of this fact because warrant applications for these devices are a regular occurrence.", "\n\nFurthermore, the government has already told the Court that it uses some methods such as\n\n“keyword searches for related terms” and “computer-assisted scans.” ", "Affidavit at 11. ", "These\n\nstatements are a useful step in the right direction, but they still do not actually give the Court a\n\nsearch protocol as the Court has defined the term. ", "In the Court’s view, the government’s\n\n\n\n 11\n\fstatement that it will use a “computer-assisted scan” is equivalent to saying, in Attachment B,\n\nthat it will seize “all records” relevant to a particular crime. ", "It tells the Court nothing about what\n\nwill actually happen and does not provide a means of searching so that this Court is assured that\n\nit is the type of particularized search that the Fourth Amendment demands. ", "What the government\n\nhas submitted is no better than the vague explanation in In re Search of Odys Loox that it will\n\n“image each device, search them, and keep all files.” ", "2014 WL 1063996, at *5.", "\n\n b. The Government Must Provide a Search Protocol\n\n The government need only tell the Court what it already intends to do and what it does in\n\nevery other similar search of an iPhone. ", "The government should not be afraid to use terms like\n\n“MD5 hash values,” “metadata,” “registry,” “write blocking” and “status marker,” nor should it\n\nshy away from explaining what kinds of third party software are used and how they are used to\n\nsearch for particular types of data. ", "The Court is not dictating that particular terms or search\n\nmethods should be used. ", "Instead, the Court is attempting to convey that it wants a sophisticated\n\ntechnical explanation of how the government intends to conduct the search so that the Court may\n\nconclude that the government is making a genuine effort to limit itself to a particularized search.", "\n\nSee In re Search of Odys Loox, 2014 WL 1063996, at *5.", "\n\n This is the third time the Court has asked the government for this explanation, and the\n\ngovernment should provide it. ", "Any concerns about being locked into a particular search protocol\n\nare unnecessary for two reasons. ", "First, the government can always return for additional\n\nauthorization of this Court as needed. ", "Second, the application need only explain that some\n\nsearches require additional techniques and that what is proposed is merely what the government\n\nintends to do at the time it submits its application, based on its experience searching such\n\ndevices and in light of the particular data it seeks to seize.", "\n\n\n\n 12\n\f III. ", " Conclusion\n\n The government has solved the problem of a lack of particularity with respect to the\n\nitems specified in Attachment B, and, with a few modifications, its Application could satisfy the\n\nCourt that it will not keep seized data that it knows fall outside the scope of the warrant and for\n\nwhich it has no probable cause to seize. ", "Until the government actually explains how the search\n\nwill proceed, and thus how the government intends to limit its search of data outside the scope of\n\nthe warrant, this warrant cannot be issued.", "\n\n For the reasons stated above, it is hereby ORDERED that the government’s Application\n\nis DENIED without prejudice.", "\n\n SO ORDERED. ", " Digitally signed by John M.\n Facciola\n DN: c=US,\n email=john_m._facciola@dcd.us\n courts.gov, o=United States\n District Court for the District of\n Columbia, cn=John M. Facciola\n Date: 2014.03.26 10:30:00 -04'00'\n ___________________________________\n JOHN M. FACCIOLA\n UNITED STATES MAGISTRATE JUDGE\n\n\n\n\n 13\n\f" ]
{ "pile_set_name": "FreeLaw" }
[ 0.004016064257028112, 0.008130081300813009, 0, 0, 0.041666666666666664, 0.0036496350364963502, 0, 0, 0.011494252873563218, 0.025, 0, 0.003355704697986577, 0, 0, 0, 0.041666666666666664, 0.016574585635359115, 0, 0.01639344262295082, 0.012121212121212121, 0, 0, 0, 0, 0.004830917874396135, 0.041666666666666664, 0.0035971223021582736, 0.0027752081406105457, 0.007326007326007326, 0.0078125, 0, 0.015151515151515152, 0.00510204081632653, 0.002688172043010753, 0, 0, 0, 0, 0, 0, 0.008333333333333333, 0, 0, 0, 0, 0, 0, 0.002277904328018223, 0, 0, 0.0027100271002710027, 0, 0, 0.0035211267605633804, 0, 0, 0.0024154589371980675, 0.006134969325153374, 0.00392156862745098, 0, 0.0038314176245210726, 0, 0.01485148514851485, 0, 0, 0, 0.004149377593360996, 0, 0, 0, 0.006896551724137931, 0, 0, 0.045454545454545456, 0, 0.0061162079510703364, 0, 0.007168458781362007, 0.006493506493506494, 0.0036900369003690036, 0.0064516129032258064, 0, 0, 0.004694835680751174, 0, 0, 0, 0.043478260869565216, 0.004219409282700422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007220216606498195, 0, 0, 0, 0.013888888888888888, 0.008403361344537815, 0, 0.0044444444444444444, 0, 0.017543859649122806, 0.0072992700729927005, 0, 0, 0, 0, 0.011494252873563218, 0.017543859649122806, 0, 0, 0, 0, 0, 0.004, 0.047619047619047616, 0, 0.013245033112582781, 0, 0.011904761904761904, 0, 0.004310344827586207, 0, 0, 0, 0, 0.004098360655737705, 0.007042253521126761, 0, 0, 0, 0, 0.058823529411764705, 0.00425531914893617, 0, 0.009259259259259259, 0.0036900369003690036, 0.006779661016949152, 0.021739130434782608, 0, 0.0070921985815602835, 0, 0, 0.002398081534772182, 0, 0.0070921985815602835, 0.004573170731707317, 0.004672897196261682, 0.005813953488372093, 0.045454545454545456, 0, 0, 0, 0, 0, 0, 0.0035211267605633804, 0, 0, 0, 0, 0, 0.0035971223021582736, 0.0025188916876574307, 0.017241379310344827, 0, 0, 0, 0.005291005291005291, 0.00625, 0.058823529411764705, 0.0125, 0.0038910505836575876, 0.009389671361502348, 0, 0, 0.009345794392523364, 0.0035335689045936395, 0.011904761904761904, 0.007407407407407408, 0, 0.0078125, 0, 0.010526315789473684, 0, 0, 0.005649717514124294, 0, 0, 0, 0.004730368968779565 ]
0.005114
5
[ { "analysis_explanation": null, "end": 30612, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 30583 }, { "analysis_explanation": null, "end": 13, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 734, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 715 }, { "analysis_explanation": null, "end": 1491, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1461 }, { "analysis_explanation": null, "end": 1566, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1552 }, { "analysis_explanation": null, "end": 1991, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1987 }, { "analysis_explanation": null, "end": 2024, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2011 }, { "analysis_explanation": null, "end": 2035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2027 }, { "analysis_explanation": null, "end": 2041, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2037 }, { "analysis_explanation": null, "end": 2254, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2248 }, { "analysis_explanation": null, "end": 2266, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2256 }, { "analysis_explanation": null, "end": 2270, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2268 }, { "analysis_explanation": null, "end": 2298, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2294 }, { "analysis_explanation": null, "end": 2309, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2302 }, { "analysis_explanation": null, "end": 2325, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2318 }, { "analysis_explanation": null, "end": 2331, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2327 }, { "analysis_explanation": null, "end": 2342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2334 }, { "analysis_explanation": null, "end": 2348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2344 }, { "analysis_explanation": null, "end": 2509, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2495 }, { "analysis_explanation": null, "end": 2566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2546 }, { "analysis_explanation": null, "end": 3605, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3587 }, { "analysis_explanation": null, "end": 4744, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4722 }, { "analysis_explanation": null, "end": 4798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4791 }, { "analysis_explanation": null, "end": 4826, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4817 }, { "analysis_explanation": null, "end": 5021, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5009 }, { "analysis_explanation": null, "end": 5537, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5528 }, { "analysis_explanation": null, "end": 7076, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7071 }, { "analysis_explanation": null, "end": 9739, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9718 }, { "analysis_explanation": null, "end": 10299, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10291 }, { "analysis_explanation": null, "end": 11755, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11748 }, { "analysis_explanation": null, "end": 11764, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11759 }, { "analysis_explanation": null, "end": 12199, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12181 }, { "analysis_explanation": null, "end": 12411, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12407 }, { "analysis_explanation": null, "end": 13387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13373 }, { "analysis_explanation": null, "end": 13756, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13752 }, { "analysis_explanation": null, "end": 13881, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13877 }, { "analysis_explanation": null, "end": 14150, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14145 }, { "analysis_explanation": null, "end": 14731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14723 }, { "analysis_explanation": null, "end": 14739, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14735 }, { "analysis_explanation": null, "end": 14749, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14745 }, { "analysis_explanation": null, "end": 14764, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14760 }, { "analysis_explanation": null, "end": 15052, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15044 }, { "analysis_explanation": null, "end": 15064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15056 }, { "analysis_explanation": null, "end": 15074, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15070 }, { "analysis_explanation": null, "end": 15088, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15084 }, { "analysis_explanation": null, "end": 15571, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15558 }, { "analysis_explanation": null, "end": 15579, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15572 }, { "analysis_explanation": null, "end": 15590, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15586 }, { "analysis_explanation": null, "end": 15605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15601 }, { "analysis_explanation": null, "end": 16169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16165 }, { "analysis_explanation": null, "end": 16979, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16975 }, { "analysis_explanation": null, "end": 17339, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17322 }, { "analysis_explanation": null, "end": 17349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17343 }, { "analysis_explanation": null, "end": 17383, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17379 }, { "analysis_explanation": null, "end": 17664, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17651 }, { "analysis_explanation": null, "end": 17674, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17665 }, { "analysis_explanation": null, "end": 17709, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17705 }, { "analysis_explanation": null, "end": 18153, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18151 }, { "analysis_explanation": null, "end": 19288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19275 }, { "analysis_explanation": null, "end": 19306, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19302 }, { "analysis_explanation": null, "end": 19333, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19329 }, { "analysis_explanation": null, "end": 20935, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20927 }, { "analysis_explanation": null, "end": 21330, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21326 }, { "analysis_explanation": null, "end": 21373, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21366 }, { "analysis_explanation": null, "end": 21602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21594 }, { "analysis_explanation": null, "end": 21697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21692 }, { "analysis_explanation": null, "end": 21714, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21701 }, { "analysis_explanation": null, "end": 21724, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21720 }, { "analysis_explanation": null, "end": 21743, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21739 }, { "analysis_explanation": null, "end": 22389, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22384 }, { "analysis_explanation": null, "end": 23354, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23350 }, { "analysis_explanation": null, "end": 23843, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23838 }, { "analysis_explanation": null, "end": 24253, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24236 }, { "analysis_explanation": null, "end": 24264, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24257 }, { "analysis_explanation": null, "end": 24302, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24298 }, { "analysis_explanation": null, "end": 24686, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24680 }, { "analysis_explanation": null, "end": 26409, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26401 }, { "analysis_explanation": null, "end": 26569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26556 }, { "analysis_explanation": null, "end": 26580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26573 }, { "analysis_explanation": null, "end": 26616, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26612 }, { "analysis_explanation": null, "end": 26639, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26626 }, { "analysis_explanation": null, "end": 26691, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26687 }, { "analysis_explanation": null, "end": 26712, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26708 }, { "analysis_explanation": null, "end": 28114, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28110 }, { "analysis_explanation": null, "end": 28996, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28992 }, { "analysis_explanation": null, "end": 30430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30343 }, { "analysis_explanation": null, "end": 30510, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30508 }, { "analysis_explanation": null, "end": 30711, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30698 }, { "analysis_explanation": null, "end": 30897, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30802 }, { "analysis_explanation": null, "end": 30918, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30902 }, { "analysis_explanation": null, "end": 31015, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31007 }, { "analysis_explanation": null, "end": 31255, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31170 }, { "analysis_explanation": null, "end": 20898, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 20864 }, { "analysis_explanation": null, "end": 20969, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 20951 }, { "analysis_explanation": null, "end": 23188, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 23174 }, { "analysis_explanation": null, "end": 30612, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 30606 }, { "analysis_explanation": null, "end": 30694, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 30684 }, { "analysis_explanation": null, "end": 31009, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 30996 }, { "analysis_explanation": null, "end": 158, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 143 }, { "analysis_explanation": null, "end": 2177, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 2164 }, { "analysis_explanation": null, "end": 2002, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1995 }, { "analysis_explanation": null, "end": 2177, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2164 }, { "analysis_explanation": null, "end": 2309, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2302 }, { "analysis_explanation": null, "end": 12422, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 12415 }, { "analysis_explanation": null, "end": 13767, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 13760 }, { "analysis_explanation": null, "end": 13892, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 13885 }, { "analysis_explanation": null, "end": 16180, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 16173 }, { "analysis_explanation": null, "end": 16990, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 16983 }, { "analysis_explanation": null, "end": 23365, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 23358 }, { "analysis_explanation": null, "end": 28125, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 28118 }, { "analysis_explanation": null, "end": 29007, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 29000 } ]
[ "Now you show me some evidence to the contrary. ", "You are claiming that Fox News' \"mistakes\" are not biased to either the left or the right; that they are random, honest bloopers.", "\n\nShow me some mistakes that make Dems or unfavored Repubs look good. ", "The ball is in your court.", "\n\nA few points.....\n\nYour \"evidence\" that the network is making them look bad is nothing more than a typo.", "\n\nA typo isn't a smear. ", "A typo isn't pushing a meme. ", "A typo isn't anything other than a typo.", "\n\nFoxNews is on the 24 hours a day and 365 days a year. ", "How is what a half dozen typos across that timeframe even a pattern? ", "If it were in a statistical sample it would be 99.9999% for versus what you've presented as against.", "\n\nYou even call them bloopers. ", "Bloopers by definition are mistakes. ", "You are taking an error, a mistake, and claiming you've proven the intent behind it.", "\n\nYour \"evidence\" that the network is making them look bad is nothing more than a typo.", "\n\nA typo isn't a smear. ", "A typo isn't pushing a meme. ", "A typo isn't anything other than a typo.", "\n\nFoxNews is on the 24 hours a day and 365 days a year. ", "How is what a half dozen typos across that timeframe even a pattern? ", "If it were in a statistical sample it would be 99.9999% for versus what you've presented as against.", "\n\nYou even call them bloopers. ", "Bloopers by definition are mistakes. ", "You are taking an error, a mistake, and claiming you've proven the intent behind it.", "\n\nYou've not done that at all.", "\n\nYou've deliberately missed the point. ", "It just makes you look dumb.", "\n\nThey are not random. ", "This is evidenced by the FACT that they are 100% skewed to promote a right wing agenda. ", "If they were not biased, the \"bloopers\" would be 50/50. ", "They are nowhere near that. ", "I challenged you to show otherwise, and you ignored that challenge, again, pretending not to see that the absence of balance in \"mistakes\" means an absence of balance, period, and that those \"mistakes\" are most likely deliberate.", "\n\nThey are not random. ", "This is evidenced by the FACT that they are 100% skewed to promote a right wing agenda. ", "If they were not biased, the \"bloopers\" would be 50/50. ", "They are nowhere near that.", "\n\nYou are so close to understanding this yet do far. ", "The weird lashing out is sort of Amausing to see though.", "\n\nYou declare they are not random. ", "How do you determine this? ", "You're not seriously saying you've determined this from 4-6 screen captures spanning half a decade are you? ", "You'd need a list of all typos and then see of there is a statistical pattern. ", "That is what would constitute proof in any form of research and you've done nothing like that. ", "Your research is akin to noting the world is flat by looking at the horizon.", "\n\nQuote:\n\nI challenged you to show otherwise, and you ignored that challenge, again, pretending not to see that the absence of balance in \"mistakes\" means an absence of balance, period, and that those \"mistakes\" are most likely deliberate.", "\n\nI could honestly care less about what you \"challenge\" in the midst of your ranting. ", "The reality is that typos by themselves do not constitute an agenda. ", "If you can't show a pattern above normal accidental typos then nothing has been proven. ", "Typos are a norm. ", "I can show you pictures of it raining four days in the last half decade. ", "If I want to show an agenda I better show something above and outside of the norm and my data needs to be comprehensive, not anecdotal.", "\n\nI've already proven you wrong in every possible way because you haven't proven anything right and I'm not the one asserting anything requiring proof here. ", "If I showed you four anecdotes of anything else but this, you'd laugh your ass off at the attempt at proof. ", "I'll go find four signs from OWS and assert whatever I want about the entire movement. ", "It will be just fine with you right?", "\n\nIf what I've shown isn't a pattern, then show one single outlier that breaks the pattern. ", "Go ahead. ", "Your failure to do so is very telling indeed.", "\n\nThe pattern that exists is regular typos and all the regular properly formatted titles which, per you at this point apparently account for all the other 24/7/365 for half a decade minus the probably very generous five minutes worth of typo titles across that half decade.", "\n\nIn terms of time, content and sheer amount of textual information going across the screen, your typos are surely the outlier and no where near anything resembling a pattern.", "\n\nThe reason we even have to discuss this is because you apparently can't find anything that is obvious bias, clearly an agenda, you know like the half dozen examples I've easily put into this thread that you've never addressed.", "\n\nThe pattern that exists is regular typos and all the regular properly formatted titles which, per you at this point apparently account for all the other 24/7/365 for half a decade minus the probably very generous five minutes worth of typo titles across that half decade.", "\n\nIn terms of time, content and sheer amount of textual information going across the screen, your typos are surely the outlier and no where near anything resembling a pattern.", "\n\nThe reason we even have to discuss this is because you apparently can't find anything that is obvious bias, clearly an agenda, you know like the half dozen examples I've easily put into this thread that you've never addressed.", "\n\nDude. ", "Seriously. ", "I'm making a completely disprovable assertion here that I cannot disprove. ", "Can you?", "\n\nFirst, I'm asserting that every \"typo\" that Fox News, through incompetence, or otherwise, serves their conservative agenda, which casts doubt on any theory that those \"typos\" are accidental. ", "This would be easily disproved if someone would show just one typo that mislabels a Democrat caught in a scandal as a Republican, etc. ", "I have looked and couldn't find any. ", "That makes my assertion look fairly accurate.", "\n\nNow, it's entirely possible that there is a typo out there that could disprove my assertion. ", "Go ahead and show me. ", "I can't find any. ", "The burden of proof is yours, if what you want to do is to disprove my assertion.", "\n\nIf there is, in fact, a \"typo\" or two that shows bias toward a Democrat or someone Fox opposes, like Ron Paul or Joe Lieberman, I will still assert that the ratio of these \"typos\" still shows an obvious bias. ", "What say we, one to twenty? ", "Is one to twenty \"random\" in your mind? ", "Don't you agree that a ratio of one to twenty looks fishy?", "\n\nSeriously, the more you argue against the fact that this appears to show an obvious bias, the more out of touch with reality you look.", "\n\nIt's not asinine at all. ", "Fox continuously makes \"mistakes\" that subconsciously push their agenda. ", "They do not make similar 'mistakes' that go against their agenda. ", "To dismiss their very clear record on this is what's asinine.", "\n\nSo a few questionable mistakes in party labeling > intentional, obvious bias towards the Democratic party and President Obama? ", "OK then.", "\n\nNow you show me some evidence to the contrary. ", "You are claiming that Fox News' \"mistakes\" are not biased to either the left or the right; that they are random, honest bloopers.", "\n\nShow me some mistakes that make Dems or unfavored Repubs look good. ", "The ball is in your court.", "\n\nSo they're secret, evil plan is to mislabel party affiliations?", "\n\nQuote:\n\nOriginally Posted by tonton\n\nYou've deliberately missed the point. ", "It just makes you look dumb.", "\n\nThey are not random.", "\n\nProve that.", "\n\nQuote:\n\nThis is evidenced by the FACT that they are 100% skewed to promote a right wing agenda.", "\n\nProve that.", "\n\nQuote:\n\nIf they were not biased, the \"bloopers\" would be 50/50.", "\n\nFaulty assumption, and not supported. ", "Purely speculative,in fact.", "\n\nQuote:\n\nThey are nowhere near that. ", "I challenged you to show otherwise, and you ignored that challenge, again, pretending not to see that the absence of balance in \"mistakes\" means an absence of balance, period, and that those \"mistakes\" are most likely deliberate.", "\n\nI just don't see how this is the best you can do. ", "You're focusing on fucking typos!? ", "We could spend all day listing examples of pure, unadulterated bias on MSNBC, CNN, NBC, ABC and CBS. ", "And you're challenging us to play the \"find the sketchy typo\" game?", "\n\nGetting back to bias: No major media source is going to be completely neutral. ", "Fox has conservative programming to be sure, just as MSNBC has hard left programming. ", "The difference is that Fox consistently has liberal commentators and analysts. ", "Juan Williams and Kirsten Powers are two examples, and are on the network often. ", "They present opposing views. ", "I'm not claiming Fox is neutral, but compared to the other networks, they are far more balanced. ", "MSNBC is straight-up hard left, as is NBC News. ", "CNN is left. ", "CBS is left. ", "ABC is left. ", "For Christ's sake, ABC has former Clinton Communications Director George Stephanapoulos as host of \"This Week,\" asking about moral values and marital fidelity!", "\n\nAnd you're pointing out fucking typos.", "\n\nI can only please one person per day. ", "Today is not your day. ", "Tomorrow doesn't look good either.", "\n\nDude. ", "Seriously. ", "I'm making a completely disprovable assertion here that I cannot disprove. ", "Can you?", "\n\nYou've got me a bit confused there with your double negatives. ", "Are you stating your claim isn't falsifiable? ", "If that is the case then you can't declare it to be a fact.", "\n\nQuote:\n\nFirst, I'm asserting that every \"typo\" that Fox News, through incompetence, or otherwise, serves their conservative agenda, which casts doubt on any theory that those \"typos\" are accidental.", "\n\nYes, you are asserting that a typo, which be default, by definition are accidents, are not accidents. ", "Understand that no one has to prove that the typos are accidents. ", "That is there default state. ", "That is their definition. ", "You are asserting they are not typos. ", "You must prove that. ", "The phrase unintentional typos is nonsense. ", "You are claiming they are mislabeling people on purpose. ", "You've never proven that.", "\n\nQuote:\n\nThis would be easily disproved if someone would show just one typo that mislabels a Democrat caught in a scandal as a Republican, etc. ", "I have looked and couldn't find any. ", "That makes my assertion look fairly accurate.", "\n\nIt doesn't at all do that. ", "I've got thousands of posts on here. ", "I'm sure if you went through all of them, you'd find that I have certain typing tics aka I make the same type of mistakes repeatedly since I type pretty fast. ", "I'm sure this would be true of almost everyone. ", "There is probably a pattern to the type of mistakes we all make. ", "Understand that your found instances have to be compared to the total number of instances and also the total number of typos to see if there is a pattern. ", "You've not done that.", "\n\nQuote:\n\nNow, it's entirely possible that there is a typo out there that could disprove my assertion. ", "Go ahead and show me. ", "I can't find any. ", "The burden of proof is yours, if what you want to do is to disprove my assertion.", "\n\nI don't need to disprove what you haven't proven. ", "I'd much rather continue to prove what I've asserted. ", "My examples are concrete, not typos and clearly you don't care to address them because there is no way to defend them.", "\n\nQuote:\n\nIf there is, in fact, a \"typo\" or two that shows bias toward a Democrat or someone Fox opposes, like Ron Paul or Joe Lieberman, I will still assert that the ratio of these \"typos\" still shows an obvious bias. ", "What say we, one to twenty? ", "Is one to twenty \"random\" in your mind? ", "Don't you agree that a ratio of one to twenty looks fishy?", "\n\nI'm not the paranoid guy who thinks any typo looks fishy. ", "I look at the big picture and see 4-6 typos (I know there must be mountains more) in half a decade as a complete random event. ", "I see it as a complete outlier.", "\n\nQuote:\n\nSeriously, the more you argue against the fact that this appears to show an obvious bias, the more out of touch with reality you look.", "\n\nSeriously, the more you claim a few typos over half a decade amount to a secret plot that advances an agenda, the more everyone wants to check your meds for side effects. ", "I'd bet that if you had the audio of those newscasts the proper information is given. ", "I'd bet there is no misreporting, just a typo.", "\n\nIf you want to find something compelling, I don't know, why don't you find instances where the media ran a bunch of unproven smears against a Democrat? ", "Why don't you find where they petitioned a judge for sealed court records? ", "Why don't you find the instance where they found, believed and reported on a bunch of made up letters related to a candidate because it so fed the narrative that existed in their mind?", "\n\nIgnorance is as ignorance does. ", "The fact that 10, 20 , 100 typos all skewed toward one end shows bias is not refuted by ignorance.", "\n\nIt's not supported by repeating that you found three of them and declared they show a pattern even if you repeat it 10,20 or 100 times.", "\n\nQuote:\n\nOriginally Posted by SDW2001\n\nShow us that many. ", "So far I've seen two or three over say, 15 years.", "\n\nI've asked for something comprehensive a half dozen times in this thread. ", "He will just repeat we are all stupid and he is right. ", "It's that liberal logic he has going for him. ", "They rule and run nothing but if they did they'd do it oh so much better than all the idiots actually running the show.", "\n\nBy the way, how are conservatives helped by labeling McCain a Democrat? ", "Or Pat Toomey, a very conservative Senator?", "\n\n1. ", "Surely you don't have to ask this question. ", "You really do have your eyes closed, don't you? ", "Fox didn't support McCain because he was considered too centrist. ", "Just like Lieberman. ", "Just like they didn't support Ron Paul.", "\n\n2. ", "Fox didn't want to report that a Democrat won. ", "This has been said about this \"Switcheroo\" again and again.", "\n\nNow, show me one typo that breaks the pattern, or admit defeat. ", "Or take a video of yourself flipping a coin and it coming up heads ten times in a row.", "\n\n1. ", "Surely you don't have to ask this question. ", "You really do have your eyes closed, don't you? ", "Fox didn't support McCain because he was considered too centrist. ", "Just like Lieberman. ", "Just like they didn't support Ron Paul.", "\n\nYes the only problem with your \"conspiracy theory\" is that your one blog shows the date of February 11, 2008. ", "While Huckabee didn't withdraw for a while longer, McCain for all intents and purposes won the nomination on February 5th when he prevailed well ahead of everyone on Super Tuesday. ", "He earned enough delegates to get half of what Mitt Romney for example suspended his campaign on February 7th. ", "Fox News wants to help damaged the Republican front runner, the man to whom almost 500 delegates was given in a single day, by somehow taking all those Republican faithful who are going to the polls during the primary season and somehow confusing them by adding a (D).", "\nYou can go here and see what happened on Super Tuesday by clicking on the timeline.", "\n\nQuote:\n\n2. ", "Fox didn't want to report that a Democrat won. ", "This has been said about this \"Switcheroo\" again and again.", "\n\nNow, show me one typo that breaks the pattern, or admit defeat. ", "Or take a video of yourself flipping a coin and it coming up heads ten times in a row.", "\n\nAs for flipping coin and it coming up heads ten times in a row, I have no doubt that if you flipped that coin 24/7/365 for five years, that there would indeed be several sequences where it landed heads ten times in a row. ", "You refuse to look at all the non-typo time. ", "It's your own bias and personal blinders. ", "No one has to show additional typos. ", "The 99.9999999% of the time there are no mistakes or typos is the rule. ", "Using the exception as the rule is bad science, bad logic and just makes the person asserting it look like an idiot.", "\nNow again, back to the thread topic and real instances of journalistic bias.", "\n\nWhat do you call it when you demand answers from one party and nothing of the sort from the President? ", "Bias of course.", "\n\nQuote:\n\nIndeed, the GOP hopefuls have been thoroughly queried on a laundry list of issues ranging from immigration problems to the faltering economy, Iran’s nuclear program to trade deficits with China, the intricacies of climate change to strategies to combat terrorism, exploding government regulations to skyrocketing public debt, plus some uncomfortable questions about their pasts and their personal lives.", "\n\nYet, during all that time, the man they hope to defeat next November has rarely been asked by news reporters about many of these issues. ", "Since August, President Obama has held only one formal White House news conference. ", "That came on Oct. 6, nearly three months ago. ", "It lasted 74 minutes, shorter than any single Republican debate, and the president was asked 17 questions, most of them softballs on the economy and his latest legislative proposals to create jobs.", "\n\nNo questions on immigration, no questions on Iran or Iraq or Afghanistan or Israel or North Korea -- global trouble spots the GOP candidates have been queried about repeatedly. ", "Moreover, he was not asked about what spending cuts he would make to reduce the deficit, nothing about Medicare and Social Security reform or his health care law, all familiar questions for the Republicans seeking his job.", "\n\nObama’s ability to avoid tough questions, skate above the fray and look presidential while his potential successors appear to be futilely flailing is not by accident. ", "It is by White House design, abetted by a press corps that seems content with being shut out by the president and being spoon-fed the message of the day, rather than clamoring for more chances to ask him questions during this critical time.", "\n\nabettingpresent participle of a·bet (Verb)\nVerbt\n\nEncourage or assist (someone) to do something wrong, in particular, to commit a crime or other offense.", "\nEncourage or assist someone to commit (a crime).", "\n\nIt is indeed criminal that our press corps, with so much going wrong don't care to ask the leadership of the country about any solutions. ", "Iran is firing missles and the President, well he's too busy to take questions because he's golfing or boogie-boarding or... well or something.", "\n\n1. ", "Surely you don't have to ask this question. ", "You really do have your eyes closed, don't you? ", "Fox didn't support McCain because he was considered too centrist. ", "Just like Lieberman. ", "Just like they didn't support Ron Paul.", "\n\nSo they wanted Obama to win? ", "OK. ", "You're just making crap up now. ", "It's an interesting theory, but that's all it is.", "\n\nQuote:\n\n2. ", "Fox didn't want to report that a Democrat won. ", "This has been said about this \"Switcheroo\" again and again.", "\n\nAnother theory.", "\n\nQuote:\n\nNow, show me one typo that breaks the pattern, or admit defeat. ", "Or take a video of yourself flipping a coin and it coming up heads ten times in a row.", "\n\nThe pattern is meaningless, and your analogy is flawed. ", "You finding ten examples of mislabeling doesn't equate to a coin coming up heads ten times in a row. ", "First, it's over a long period of time...thousands of stories, thousands of graphics. ", "Secondly, the type of inaccuracy matters. ", "They are not all created equal. ", "Labeling McCain a Democrat is not the same as labeling Mark Foley a Democrat.", "\n\nFinally, the whole claim is just hard to believe. ", "You might make a case that there are conservatives who work at Fox who inject unintentional bias by doing this, but beyond that you're asking people to believe they are deliberately mislabeling for political purposes. ", "It's just...dumb.", "\n\nI can only please one person per day. ", "Today is not your day. ", "Tomorrow doesn't look good either.", "\n\nDude. ", "Seriously. ", "I'm making a completely disprovable assertion here that I cannot disprove. ", "Can you?", "\n\nFirst, I'm asserting that every \"typo\" that Fox News, through incompetence, or otherwise, serves their conservative agenda, which casts doubt on any theory that those \"typos\" are accidental. ", "This would be easily disproved if someone would show just one typo that mislabels a Democrat caught in a scandal as a Republican, etc. ", "I have looked and couldn't find any. ", "That makes my assertion look fairly accurate.", "\n\nNo, it would not. ", "It would merely change the statistical pattern by a minuscule amount. ", "It would not prove that the typos are intentional or unintentional. ", "It would not prove competence or incompetence. ", "It would just be another data point.", "\n\nQuote:\n\nNow, it's entirely possible that there is a typo out there that could disprove my assertion. ", "Go ahead and show me. ", "I can't find any. ", "The burden of proof is yours, if what you want to do is to disprove my assertion.", "\n\nNo, it's not. ", "Your inability to find any of those typos proves nothing. ", "In fact, it's invalid because you are...wait for it....BIASED.", "\n\nQuote:\n\nIf there is, in fact, a \"typo\" or two that shows bias toward a Democrat or someone Fox opposes, like Ron Paul or Joe Lieberman, I will still assert that the ratio of these \"typos\" still shows an obvious bias. ", "What say we, one to twenty? ", "Is one to twenty \"random\" in your mind? ", "Don't you agree that a ratio of one to twenty looks fishy?", "\n\nSeriously, the more you argue against the fact that this appears to show an obvious bias, the more out of touch with reality you look.", "\n\nIt might look fishy, but it doesn't prove anything. ", "Fox is on 24 hours a day, 365 days a year. ", "It's been on since what, 1996? ", "That's 131,400 hours of programming. ", "We'll reduce that by 30% for commercials and stories that don't use labels like we're discussing. ", "Let's just call it 100,000 hours for simplicity's sake. ", "That's 6,000,000 minutes (or 360,000,000 seconds) of programming we're dealing with. ", "Assuming each segment requires 5 seconds to register in the viewers' minds, that's 72,000,000 5 second segments. ", "In fact, let's make it longer...let's assume each segment is 30 seconds. ", "That's 1,200,000 possible stories in which there could be a typo.", "\n\nOf those 1,200,000 30 second segments, you've pointed out 10 in which there are \"biased typos.\" ", "That's a \"conservative bias rate\" of .000001 percent. ", "I'm not the best with numbers, so feel free to double check my math.", "\n\nI can only please one person per day. ", "Today is not your day. ", "Tomorrow doesn't look good either.", "\n\nYou are claiming there have been only 10 typos.", "\nYou are assuming every segment is 30 seconds.", "\nYou make no mention to the number of charts or graphs.", "\nYou make no mention to the number of charts or graphs relating to scandals or hot-button topics.", "\nYou still can't produce a single \"typo\" or lie that benefits a Democrat.", "\nYou hand wave, make up some statistics, and sit smugly waiting for yourself to be taken seriously. ", "Don't hold your breath.", "\n\n“The nitrogen in our DNA, the calcium in our teeth, the iron in our blood, the carbon in our apple pies were made in the interiors of collapsing stars. ", "We are made of starstuff.” ", "-Sagan\n\nThis is multiple sources so it is clear someone out there things this is a good thing to push and that the push back is surprising to them. ", "I mean is it really so strange to believe even if you are pro-abortion, pro-gay marriage, hell even if you were pro-bestiality that you can relate to and understand grieving over the loss of a still-born or profoundly prematurely born child that died at 2 hours old after 20 weeks of pregnancy?", "\n\nWhat the hell isn't out of bounds for Democrats? ", "They swear everything is racist or sexist or just wrong when it is their candidate but are so dishonest in return. ", "Malia and Sasha, out of bounds. ", "Palin's kids, totally in bounds. ", "Obama's birth certificate, racist. ", "McCain's birth certificate, that's vetting of course. ", "Sealed divorced records of course they should be opened, Obama's birth certificate or school records, never. ", "The pain of a stillbirth of 20 week, half term child, totally up for grabs. ", "Clearly we can't pick a president unless we can laugh and ridicule all the miscarriages, stillbirths or child deaths that have happened in their lives.", "\n\nThis is multiple sources so it is clear someone out there things this is a good thing to push and that the push back is surprising to them. ", "I mean is it really so strange to believe even if you are pro-abortion, pro-gay marriage, hell even if you were pro-bestiality that you can relate to and understand grieving over the loss of a still-born or profoundly prematurely born child that died at 2 hours old after 20 weeks of pregnancy?", "\n\nWhat the hell isn't out of bounds for Democrats? ", "They swear everything is racist or sexist or just wrong when it is their candidate but are so dishonest in return. ", "Malia and Sasha, out of bounds. ", "Palin's kids, totally in bounds. ", "Obama's birth certificate, racist. ", "McCain's birth certificate, that's vetting of course. ", "Sealed divorced records of course they should be opened, Obama's birth certificate or school records, never. ", "The pain of a stillbirth of 20 week, half term child, totally up for grabs. ", "Clearly we can't pick a president unless we can laugh and ridicule all the miscarriages, stillbirths or child deaths that have happened in their lives.", "\n\nThere is no shame. ", "And whether or not Santorum can win, I hope for his family's sake he doesn't get the nomination. ", "He will be absolutely crucified.", "\n\nI can only please one person per day. ", "Today is not your day. ", "Tomorrow doesn't look good either.", "\n\nWith the graphic on the right proudly displayed, Bashir continued, \"42 million for his campaign, 24 million for the DNC, and another cool mill for the Swing State Victory Fund that targets battleground states.\"", "\n\n\"The President's closest rival in the money race,\" said Bashir, \"millionaire Mitt Romney raised just 24 million in the fourth quarter. ", "Sorry, Mitt, but the President raised about a tenth of that just last night. ", "Indeed, President Obama hit up Chicago for a little hometown love last night reminding his supporters of what the country faces from his Republican challengers.\"", "\n\nAs you can see, Bashir thinks Obama raising millions of dollars for his reelection and that of Democrats is just fine. ", "He even chided Romney for not raising as much.", "\n\nFirst as you can see, this isn't reporting, it is opinion and cheerleading. ", "Reporting would note who raised what and wouldn't be taking cheap shots. ", "Sorry yourself Bashir.", "\n\nHowever that is just the tip of the iceberg.", "\n\nQuote:\n\n\"Isn't the GOP as a whole really making an argument for campaign finance reform because of all that what's happened with Citizens United and the vast amounts of money that's being spent in this GOP primary season?\" ", "Bashir asked guest Ana Marie Cox in a later segment.", "\n\nThis was followed by Bashir saying to another guest minutes later, \"Newt Gingrich, Rick Santorum, and Jon Huntsman each have a billionaire indirectly backing them. ", "Hasn't the Citizens United Supreme Court ruling ushered this period of what we might call wealthy puppet masters?\"", "\n\nSpeaking of puppet masters, Bashir chose not to inform his viewers about precisely how Obama quickly raised $2 million in Chicago this week. ", "The Chicago Tribune did:\n\nThe president preached patience again at a $35,800 per couple dinner at the North Side home of campaign bundler, prominent Democratic donor and media mogul Fred Eychaner, the head of Newsweb Corp. [...]\n\nA later reception scheduled for the Hyde Park home of Stuart Taylor, who heads the investment firm The Taylor Group, cost $7,500 per ticket.", "\n\nShould people willing to spend $35,800 for dinner with the President or $7,500 to meet him be considered \"wealthy puppet masters?\"", "\n\nApparently not if that President is a Democrat.", "\n\nApparently good intentions can cover all manner of reality.", "\n\nWant to keep your own money and thus you lobby the government not to tax you. ", "That is a special interest. ", "Want the government to give you half a billion in loan guarantees so you can declare bankruptcy? ", "That is an \"investment\".", "\n\nBTW, given the nature of BR's threads on religion, this woman, who is head of an actual civility organization should have condemned herself and other leftist leaders should have condemned her language use. ", "She is an actual opinion maker, and in a leadership role. ", "She isn't a high school kid on Twitter. ", "No condemnations that I have read at all. ", "She is obviously a good sport to go along with Oliver basically skewering her nicely to try to get her to come around to her own point, but as with so many here, the good intentions clearly cause her to have a disconnect from her own actions and she grants herself a waiver from her own requirements as do most liberals who would never live under the very tyranny they seek to impose.", "\n\nAlso adding to the journalistic integrity of \"ad-hom\" reasoning, we have Newsweek.", "\n\nWell, thank goodness they are remaining objective in their reporting and aren't coming off the sidelines for Obama. ", "Yes, that is their actual cover. ", "I'm sure they'll lose a few more of the five \"smart\" subscribers they have left. ", "This will probably cause them to reorganize, be sold, commit even more to partisan and advocacy journalism and they'll double the subscription price for their remaining three subscribers in an attempt to remain relevant.", "\n\nBTW, given the nature of BR's threads on religion, this woman, who is head of an actual civility organization should have condemned herself and other leftist leaders should have condemned her language use. ", "She is an actual opinion maker, and in a leadership role. ", "She isn't a high school kid on Twitter. ", "No condemnations that I have read at all. ", "She is obviously a good sport to go along with Oliver basically skewering her nicely to try to get her to come around to her own point, but as with so many here, the good intentions clearly cause her to have a disconnect from her own actions and she grants herself a waiver from her own requirements as do most liberals who would never live under the very tyranny they seek to impose.", "\n\nAlso adding to the journalistic integrity of \"ad-hom\" reasoning, we have Newsweek.", "\n\nWell, thank goodness they are remaining objective in their reporting and aren't coming off the sidelines for Obama. ", "Yes, that is their actual cover. ", "I'm sure they'll lose a few more of the five \"smart\" subscribers they have left. ", "This will probably cause them to reorganize, be sold, commit even more to partisan and advocacy journalism and they'll double the subscription price for their remaining three subscribers in an attempt to remain relevant.", "\n\nSullivan has issued a challenge: Point out where he is wrong in the article.", "\n\nSullivan has issued a challenge: Point out where he is wrong in the article.", "\n\nThe article is basically delusional. ", "Sullivan claims that everyone, on all sides of Obama is wrong and stupid because Obama's plans are brilliant but all the non-results are showing up and helping us but we are just to dumb to realize it." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.007751937984496124, 0.014285714285714285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03333333333333333, 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.009259259259259259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0051813471502590676, 0, 0, 0, 0, 0, 0, 0, 0.014218009478672985, 0, 0, 0, 0, 0.037037037037037035, 0.0136986301369863, 0, 0, 0.015503875968992248, 0, 0, 0.007751937984496124, 0.014285714285714285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.04950495049504951, 0, 0, 0.023255813953488372, 0.012658227848101266, 0.024691358024691357, 0, 0.010309278350515464, 0.041666666666666664, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.018867924528301886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005, 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.0136986301369863, 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.023255813953488372, 0, 0, 0, 0.030303030303030304, 0.047619047619047616, 0.02564102564102564, 0, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0.047619047619047616, 0.02564102564102564, 0, 0.0055248618784530384, 0.009009009009009009, 0.0037313432835820895, 0, 0, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06666666666666667, 0.002421307506053269, 0, 0.023809523809523808, 0, 0, 0.00558659217877095, 0.009009009009009009, 0, 0.004166666666666667, 0, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0.047619047619047616, 0.02564102564102564, 0, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.025974025974025976, 0, 0.0045871559633027525, 0, 0, 0, 0, 0, 0, 0, 0, 0.0051813471502590676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.016129032258064516, 0.0136986301369863, 0, 0, 0, 0, 0, 0.023255813953488372, 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.018518518518518517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.018518518518518517, 0, 0, 0, 0, 0.010309278350515464, 0, 0, 0, 0, 0.014150943396226415, 0.014598540145985401, 0.012987012987012988, 0.006211180124223602, 0.008264462809917356, 0.021739130434782608, 0, 0, 0.045454545454545456, 0, 0.008888888888888889, 0.038461538461538464, 0.024096385542168676, 0.008771929824561403, 0.013986013986013986, 0.013513513513513514, 0, 0, 0, 0, 0, 0, 0, 0.004807692307692308, 0, 0, 0.023809523809523808, 0.0026041666666666665, 0.011904761904761904, 0, 0, 0, 0, 0.004807692307692308, 0, 0, 0.023809523809523808, 0.0026041666666666665, 0.011904761904761904, 0, 0, 0, 0, 0.01282051282051282, 0.01282051282051282, 0, 0.004975124378109453 ]
0.004251
5
[ { "analysis_explanation": null, "end": 213, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209 }, { "analysis_explanation": null, "end": 495, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 483 }, { "analysis_explanation": null, "end": 514, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 506 }, { "analysis_explanation": null, "end": 1048, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1036 }, { "analysis_explanation": null, "end": 1067, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1059 }, { "analysis_explanation": null, "end": 2375, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2362 }, { "analysis_explanation": null, "end": 3180, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3171 }, { "analysis_explanation": null, "end": 3204, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3184 }, { "analysis_explanation": null, "end": 4054, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4041 }, { "analysis_explanation": null, "end": 4100, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4088 }, { "analysis_explanation": null, "end": 4145, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4129 }, { "analysis_explanation": null, "end": 4727, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4714 }, { "analysis_explanation": null, "end": 4773, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4761 }, { "analysis_explanation": null, "end": 4818, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4802 }, { "analysis_explanation": null, "end": 5605, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5597 }, { "analysis_explanation": null, "end": 5641, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5631 }, { "analysis_explanation": null, "end": 6017, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6009 }, { "analysis_explanation": null, "end": 6032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6029 }, { "analysis_explanation": null, "end": 6055, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6047 }, { "analysis_explanation": null, "end": 6072, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6059 }, { "analysis_explanation": null, "end": 6768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6763 }, { "analysis_explanation": null, "end": 6992, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6988 }, { "analysis_explanation": null, "end": 8267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8254 }, { "analysis_explanation": null, "end": 8286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8272 }, { "analysis_explanation": null, "end": 8635, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8614 }, { "analysis_explanation": null, "end": 8790, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8785 }, { "analysis_explanation": null, "end": 8816, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8808 }, { "analysis_explanation": null, "end": 9821, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9813 }, { "analysis_explanation": null, "end": 9857, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9847 }, { "analysis_explanation": null, "end": 10985, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10977 }, { "analysis_explanation": null, "end": 11000, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10997 }, { "analysis_explanation": null, "end": 11023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11015 }, { "analysis_explanation": null, "end": 11040, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11027 }, { "analysis_explanation": null, "end": 11406, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11393 }, { "analysis_explanation": null, "end": 12064, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12056 }, { "analysis_explanation": null, "end": 12378, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12376 }, { "analysis_explanation": null, "end": 12698, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12690 }, { "analysis_explanation": null, "end": 13054, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13048 }, { "analysis_explanation": null, "end": 13065, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13057 }, { "analysis_explanation": null, "end": 13080, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13070 }, { "analysis_explanation": null, "end": 13209, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13206 }, { "analysis_explanation": null, "end": 13231, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13225 }, { "analysis_explanation": null, "end": 13291, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13282 }, { "analysis_explanation": null, "end": 13331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13323 }, { "analysis_explanation": null, "end": 13377, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13369 }, { "analysis_explanation": null, "end": 13692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13689 }, { "analysis_explanation": null, "end": 13714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13708 }, { "analysis_explanation": null, "end": 13774, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13765 }, { "analysis_explanation": null, "end": 13814, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13806 }, { "analysis_explanation": null, "end": 13924, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13907 }, { "analysis_explanation": null, "end": 13940, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13932 }, { "analysis_explanation": null, "end": 13983, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13977 }, { "analysis_explanation": null, "end": 14047, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14035 }, { "analysis_explanation": null, "end": 14165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14154 }, { "analysis_explanation": null, "end": 14216, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14204 }, { "analysis_explanation": null, "end": 14263, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14253 }, { "analysis_explanation": null, "end": 14340, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14328 }, { "analysis_explanation": null, "end": 14380, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14370 }, { "analysis_explanation": null, "end": 14442, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14424 }, { "analysis_explanation": null, "end": 14623, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14615 }, { "analysis_explanation": null, "end": 14973, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14963 }, { "analysis_explanation": null, "end": 15559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15555 }, { "analysis_explanation": null, "end": 15725, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15721 }, { "analysis_explanation": null, "end": 15772, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15767 }, { "analysis_explanation": null, "end": 16051, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16038 }, { "analysis_explanation": null, "end": 16132, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16126 }, { "analysis_explanation": null, "end": 16149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16144 }, { "analysis_explanation": null, "end": 16223, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16217 }, { "analysis_explanation": null, "end": 16248, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16225 }, { "analysis_explanation": null, "end": 16270, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16260 }, { "analysis_explanation": null, "end": 16306, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16296 }, { "analysis_explanation": null, "end": 16497, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16493 }, { "analysis_explanation": null, "end": 16505, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16501 }, { "analysis_explanation": null, "end": 16520, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16509 }, { "analysis_explanation": null, "end": 16530, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16524 }, { "analysis_explanation": null, "end": 16545, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16534 }, { "analysis_explanation": null, "end": 16830, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16819 }, { "analysis_explanation": null, "end": 16853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16848 }, { "analysis_explanation": null, "end": 17167, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17160 }, { "analysis_explanation": null, "end": 17601, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17597 }, { "analysis_explanation": null, "end": 17839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17836 }, { "analysis_explanation": null, "end": 17861, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17855 }, { "analysis_explanation": null, "end": 17921, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17912 }, { "analysis_explanation": null, "end": 17961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17953 }, { "analysis_explanation": null, "end": 17983, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17978 }, { "analysis_explanation": null, "end": 18130, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18122 }, { "analysis_explanation": null, "end": 18703, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18697 }, { "analysis_explanation": null, "end": 18714, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18706 }, { "analysis_explanation": null, "end": 18753, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18743 }, { "analysis_explanation": null, "end": 18764, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18756 }, { "analysis_explanation": null, "end": 19095, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19090 }, { "analysis_explanation": null, "end": 19121, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19113 }, { "analysis_explanation": null, "end": 19532, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19524 }, { "analysis_explanation": null, "end": 19568, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19558 }, { "analysis_explanation": null, "end": 20254, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20248 }, { "analysis_explanation": null, "end": 20335, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20327 }, { "analysis_explanation": null, "end": 20350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20347 }, { "analysis_explanation": null, "end": 20373, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20365 }, { "analysis_explanation": null, "end": 20390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20377 }, { "analysis_explanation": null, "end": 20805, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20797 }, { "analysis_explanation": null, "end": 20821, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20813 }, { "analysis_explanation": null, "end": 20859, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20855 }, { "analysis_explanation": null, "end": 20881, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20868 }, { "analysis_explanation": null, "end": 21028, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21015 }, { "analysis_explanation": null, "end": 21076, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21059 }, { "analysis_explanation": null, "end": 21100, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21081 }, { "analysis_explanation": null, "end": 21177, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21168 }, { "analysis_explanation": null, "end": 21239, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21231 }, { "analysis_explanation": null, "end": 21321, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21311 }, { "analysis_explanation": null, "end": 21651, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21646 }, { "analysis_explanation": null, "end": 21677, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21669 }, { "analysis_explanation": null, "end": 21796, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21786 }, { "analysis_explanation": null, "end": 22021, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22013 }, { "analysis_explanation": null, "end": 22738, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22727 }, { "analysis_explanation": null, "end": 22753, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22745 }, { "analysis_explanation": null, "end": 22815, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22806 }, { "analysis_explanation": null, "end": 22937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22932 }, { "analysis_explanation": null, "end": 22947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22942 }, { "analysis_explanation": null, "end": 22969, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22964 }, { "analysis_explanation": null, "end": 23002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22997 }, { "analysis_explanation": null, "end": 23038, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23032 }, { "analysis_explanation": null, "end": 23148, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23143 }, { "analysis_explanation": null, "end": 23230, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23223 }, { "analysis_explanation": null, "end": 23828, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23817 }, { "analysis_explanation": null, "end": 23843, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23835 }, { "analysis_explanation": null, "end": 23905, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23896 }, { "analysis_explanation": null, "end": 24027, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24022 }, { "analysis_explanation": null, "end": 24037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24032 }, { "analysis_explanation": null, "end": 24059, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24054 }, { "analysis_explanation": null, "end": 24092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24087 }, { "analysis_explanation": null, "end": 24128, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24122 }, { "analysis_explanation": null, "end": 24238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24233 }, { "analysis_explanation": null, "end": 24320, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24313 }, { "analysis_explanation": null, "end": 24559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24551 }, { "analysis_explanation": null, "end": 24705, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24700 }, { "analysis_explanation": null, "end": 24731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24723 }, { "analysis_explanation": null, "end": 24813, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24807 }, { "analysis_explanation": null, "end": 25031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25025 }, { "analysis_explanation": null, "end": 25057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25046 }, { "analysis_explanation": null, "end": 25102, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25084 }, { "analysis_explanation": null, "end": 25115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25111 }, { "analysis_explanation": null, "end": 25179, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25164 }, { "analysis_explanation": null, "end": 25204, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25199 }, { "analysis_explanation": null, "end": 25219, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25212 }, { "analysis_explanation": null, "end": 25257, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25247 }, { "analysis_explanation": null, "end": 25328, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25318 }, { "analysis_explanation": null, "end": 25365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25359 }, { "analysis_explanation": null, "end": 25378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25373 }, { "analysis_explanation": null, "end": 25447, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25438 }, { "analysis_explanation": null, "end": 25483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25477 }, { "analysis_explanation": null, "end": 25679, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25673 }, { "analysis_explanation": null, "end": 25955, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25949 }, { "analysis_explanation": null, "end": 25981, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25968 }, { "analysis_explanation": null, "end": 26029, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26023 }, { "analysis_explanation": null, "end": 26067, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26040 }, { "analysis_explanation": null, "end": 26083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26070 }, { "analysis_explanation": null, "end": 26098, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26085 }, { "analysis_explanation": null, "end": 26116, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26104 }, { "analysis_explanation": null, "end": 26315, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26309 }, { "analysis_explanation": null, "end": 26373, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26368 }, { "analysis_explanation": null, "end": 26410, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26403 }, { "analysis_explanation": null, "end": 26420, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26411 }, { "analysis_explanation": null, "end": 26534, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26524 }, { "analysis_explanation": null, "end": 26581, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26571 }, { "analysis_explanation": null, "end": 26617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26604 }, { "analysis_explanation": null, "end": 26719, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26706 }, { "analysis_explanation": null, "end": 26970, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26962 }, { "analysis_explanation": null, "end": 27659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27653 }, { "analysis_explanation": null, "end": 28188, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28183 }, { "analysis_explanation": null, "end": 28924, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28918 }, { "analysis_explanation": null, "end": 29453, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29448 }, { "analysis_explanation": null, "end": 29798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29790 }, { "analysis_explanation": null, "end": 29875, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29867 }, { "analysis_explanation": null, "end": 29989, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29981 }, { "analysis_explanation": null, "end": 30033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30028 }, { "analysis_explanation": null, "end": 30067, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30062 }, { "analysis_explanation": null, "end": 18571, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 18562 }, { "analysis_explanation": null, "end": 20250, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 20242 }, { "analysis_explanation": null, "end": 15200, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 15193 }, { "analysis_explanation": null, "end": 21529, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 21523 } ]
[ "[Culicidae of the French Territory of Afars and Issas. ", "The genera Aedes, Culiseta, Uranotaenia and Mimomyia].", "\nDuring an entomological survey conducted in French Territory of Afars and Issas from november 1973 to june 1975, the following species were collected: Aedes caspius, A. vittatus, Culiseta longeareolata, Uranotaenia balfouri, Mimomyia mimomyiaformis, M. mediolineata. ", "To these mosquitoes, we must add the record of A. aegypti larvae on a dhow berthing in Djibuti while this mosquito does not exist actually in the Territory. ", "The epidemiological importance of these culicids is discussed." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.018518518518518517, 0.011194029850746268, 0.006369426751592357, 0 ]
0.007216
5
[ { "analysis_explanation": null, "end": 34, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14 }, { "analysis_explanation": null, "end": 43, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38 }, { "analysis_explanation": null, "end": 53, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48 }, { "analysis_explanation": null, "end": 170, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154 }, { "analysis_explanation": null, "end": 179, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174 }, { "analysis_explanation": null, "end": 189, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184 }, { "analysis_explanation": null, "end": 208, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195 }, { "analysis_explanation": null, "end": 221, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212 }, { "analysis_explanation": null, "end": 274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261 }, { "analysis_explanation": null, "end": 287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276 }, { "analysis_explanation": null, "end": 375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 360 }, { "analysis_explanation": null, "end": 441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424 }, { "analysis_explanation": null, "end": 451, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 447 }, { "analysis_explanation": null, "end": 471, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464 }, { "analysis_explanation": null, "end": 532, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523 }, { "analysis_explanation": null, "end": 582, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574 } ]
[ "University Hospitals’ annual report, released this week, shows the hospital system is in excellent financial shape.", "\n\nUH reports it had more than $253 million in net income in 2017, which was a 94 percent increase over the previous year. ", "And experts say the hospital system would likely weather any financial storm from lawsuits connected to destroyed eggs and embryos at its fertility clinic earlier this year.", "\n\nUH has a cushion which helped improve its 2017 earnings, said Case Western Reserve University’s hospital finance expert J.B. Silvers.", "\n\n“They had $120 million in investment income on top of their operating earnings so they’re in great shape,” Silvers said.", "\n\nBut looming over all the good financial news is that malfunction of a storage tank at the UH fertility clinic in March.", "\n\nIn a letter sent to patients in late March, hospital officials said, “We now believe about 950 of our patients were affected by the failure of this storage tank….we have determined that the total number of affected eggs and embryos for these patients is more than 4,000…”\n\nA local judge is working to consolidate more than 40 lawsuits against the hospital system stemming from that incident.", "\n\nUH has a large amount of insurance to cover potential lawsuit payouts, Silvers said.", "\n\n“They have a fairly large amount of insurance to cover contingencies like this, number one. ", "And number two, they self-insure for a lot of that, so they have already isolated reserves, enough cash, for their typical liability that they expect,” he added.", "\n\nUH did not address the impact that lawsuits may have on its finances in its annual report but in an email, officials said, “The system’s financial health is strong and we remain committed to keeping our stakeholders informed.”", "\n\nHospital system officials said a full discussion of its financial performance can be found in the Investor Report for the period ended December 31, 2017." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0.014814814814814815, 0, 0, 0, 0.011627906976744186, 0, 0, 0, 0.0064516129032258064 ]
0.002741
5
[ { "analysis_explanation": null, "end": 28, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22 }, { "analysis_explanation": null, "end": 55, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46 }, { "analysis_explanation": null, "end": 178, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174 }, { "analysis_explanation": null, "end": 234, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217 }, { "analysis_explanation": null, "end": 408, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 391 }, { "analysis_explanation": null, "end": 456, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452 }, { "analysis_explanation": null, "end": 542, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 530 }, { "analysis_explanation": null, "end": 783, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 778 }, { "analysis_explanation": null, "end": 827, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 817 }, { "analysis_explanation": null, "end": 1598, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1592 }, { "analysis_explanation": null, "end": 1895, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1878 } ]
[ "Concentrations of ganglioside type M1 and immunoglobulin G in colostrum are inversely related to bacterial infection at early lactation in cows.", "\nThe levels of IgG and ganglioside type M1 in the colostrum of cows and heifers were analyzed to examine their utility in predicting acquisition of intramammary infection (IMI) during the first weeks postpartum. ", "In general, high levels of IgG and ganglioside type M1 in cows were associated with lower new incidence of IMI, and linear discriminate analysis based on these 2 variables yielded 69.4% successful classification into cows that did or did not acquire new IMI. ", "This analysis was less successful in heifers because a high proportion of them joined the herd when already infected with bacteria in their udders. ", "It is suggested that application of a wider range of measures that reflect the immune status would enable the identification of most cows prone to new IMI." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.009433962264150943, 0.011583011583011582, 0, 0.0064516129032258064 ]
0.005494
5
[ { "analysis_explanation": null, "end": 343, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 328 }, { "analysis_explanation": null, "end": 37, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 35 }, { "analysis_explanation": null, "end": 186, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 184 }, { "analysis_explanation": null, "end": 410, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 408 } ]
[ "Welcome\n\nHello! ", "I'm Therese. ", "I love DIY Projects and Crafts, from crochet to paints to re-purposing everyday household items and everything in between, let the THC show you how to to turn that trash into treasure, that refuse into remake, and that litter into luxury!" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.012605042016806723 ]
0.004202
5
[ { "analysis_explanation": null, "end": 27, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20 } ]
[ "Second-line therapy with dorzolamide/timolol or latanoprost/timolol fixed combination versus adding dorzolamide/timolol fixed combination to latanoprost monotherapy.", "\nTo evaluate open-angle glaucoma patients, who were insufficiently controlled on latanoprost monotherapy, to determine the 24 h intraocular pressure (IOP) efficacy and safety when changing them to dorzolamide/timolol (DTFC) or latanoprost/timolol fixed combination (LTFC) or adding DTFC. ", "A prospective, observer-masked, placebo-controlled, crossover, comparison. ", "Consecutive adults with primary open-angle or exfoliative glaucoma who exhibit a mean baseline IOP >21 mm Hg on latanoprost monotherapy were randomised for 3 months to: DTFC, LTFC or DTFC and latanoprost. ", "Patients were then crossed over to the next treatment for periods 2 and 3. ", "At the end of the latanoprost run-in and after each 3-month treatment period, patients underwent 24 h IOP monitoring. ", "31 patients completed this study. ", "All three adjunctive therapies significantly reduced the IOP at each time point and for the mean 24 h curve, except at 18:00 and 02:00 with DTFC and 02:00 with LTFC. ", "When the three treatments were compared directly, the DTFC and latanoprost therapy demonstrated lower IOPs versus the other treatment groups, including: the mean 24 h pressure, maximum as well as minimum levels and individual time points following a modified Bonferroni correction (p<0.0032). ", "This study showed DTFC, LTFC and the addition of DTFC to latanoprost significantly decrease the IOP compared with latanoprost alone, but the latter therapy regime yields the greatest IOP reduction." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.003472222222222222, 0, 0, 0, 0.00847457627118644, 0, 0.012048192771084338, 0.0034129692832764505, 0.01015228426395939 ]
0.003756
5
[ { "analysis_explanation": null, "end": 692, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 684 }, { "analysis_explanation": null, "end": 806, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 799 }, { "analysis_explanation": null, "end": 867, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 860 }, { "analysis_explanation": null, "end": 1094, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1079 }, { "analysis_explanation": null, "end": 1114, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1109 }, { "analysis_explanation": null, "end": 1395, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1385 } ]
[ "Q:\n\nIs there a way to log all the property values of an Objective-C instance\n\nI was just wondering if there is a quick and easy way of printing out to the log all of the various values of the properties to my class for debugging purposes. ", "Like I would like to know what the values of all of the BOOLs, floats, etc. ", "are.", "\n\nA:\n\nThis question seems the have the answer to your question.", "\nUpdate:\nI got curious and made a catagory:\n//Using Xcode 4.5.2 - iOS 6 - LLDB - Automatic Reference Counting\n\n//NSObject+logProperties.h \n@interface NSObject (logProperties)\n- (void) logProperties;\n@end\n\n//NSObject+logProperties.m\n#import \"NSObject+logProperties.h\"\n#import <objc/runtime.h>\n\n@implementation NSObject (logProperties)\n\n- (void) logProperties {\n\n NSLog(@\"----------------------------------------------- Properties for object %@\", self);\n\n @autoreleasepool {\n unsigned int numberOfProperties = 0;\n objc_property_t *propertyArray = class_copyPropertyList([self class], &numberOfProperties);\n for (NSUInteger i = 0; i < numberOfProperties; i++) {\n objc_property_t property = propertyArray[i];\n NSString *name = [[NSString alloc] initWithUTF8String:property_getName(property)];\n NSLog(@\"Property %@ Value: %@\", name, [self valueForKey:name]);\n }\n free(propertyArray);\n } \n NSLog(@\"-----------------------------------------------\");\n}\n\n@end\n\nInclude it in your class: #import \"NSObject+logProperties.h\"\nand call [self logProperties]; to those properties!", "\n\nA:\n\nThe current answers just show how to do it for properties. ", "If you want every instance variable printed out you could do something like the below.", "\n- (void)logAllProperties {\n unsigned int count;\n Ivar *ivars = class_copyIvarList([self class], &count);\n for (unsigned int i = 0; i < count; i++) {\n Ivar ivar = ivars[i];\n\n const char *name = ivar_getName(ivar);\n const char *type = ivar_getTypeEncoding(ivar);\n ptrdiff_t offset = ivar_getOffset(ivar);\n\n if (strncmp(type, \"i\", 1) == 0) {\n int intValue = *(int*)((uintptr_t)self + offset);\n NSLog(@\"%s = %i\", name, intValue);\n } else if (strncmp(type, \"f\", 1) == 0) {\n float floatValue = *(float*)((uintptr_t)self + offset);\n NSLog(@\"%s = %f\", name, floatValue);\n } else if (strncmp(type, \"@\", 1) == 0) {\n id value = object_getIvar(self, ivar);\n NSLog(@\"%s = %@\", name, value);\n }\n // And the rest for other type encodings\n }\n free(ivars);\n}\n\nAlthough I wouldn't particularly suggest doing this in practice, but if it's for debug purposes then that's fine. ", "You could implement this as a category on NSObject and keep it lying around for use when debugging. ", "If completed for all type encodings then it could make for a very nice little method.", "\n\nA:\n\nThere are now these methods on NSObject :\n@interface NSObject (Private)\n-(id)_ivarDescription;\n-(id)_shortMethodDescription;\n-(id)_methodDescription;\n@end\n\nIn swift:\nmyObject.perform(\"_ivarDescription\")\n\nThanks to this article\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0.004347826086956522, 0, 0, 0, 0, 0, 0.008547008547008548 ]
0.001172
5
[ { "analysis_explanation": null, "end": 1857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1848 }, { "analysis_explanation": null, "end": 2437, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2433 }, { "analysis_explanation": null, "end": 3050, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3039 } ]
[ "The government of India incurred an expenditure of over Rs 2,021 crore on chartered flights, maintenance of aircraft and hotline facilities during Prime Minister Narendra Modi’s visits to foreign countries since June 2014.", "\n\nAnswering to queries on the issue in Rajya Sabha, Minister of State for External Affairs V K Singh also listed the countries visited by the prime minister between 2014 and 2018 and added that they now figure among the top 10 nations from where India received the maximum FDI inflows.", "\n\nFrom 2014 to 2017 the Foreign Direct Investments grew from USD 30,930.5 million to USD 43478.27 million. ", "The minister also provided data on the expenditure incurred during foreign visits made by Manmohan Singh’s from 2009-10 till 2013-14 during UPA-II which stood at over Rs 1,346 crore (chartered flights, maintenance of aircraft and hotline facilities).", "\n\nSince 2014 Modi has visited over 55 countries in 48 foreign trips and has also made multiple visits to some countries.", "\n\nThe cumulative FDI inflows between 2014 and June 2018 stood at USD 136,077.75 million, compared to USD 81,843.71 million recorded cumulatively for the years between 2011 and 2014, reported news agency PTI." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.0045045045045045045, 0.0035087719298245615, 0.009345794392523364, 0.004, 0, 0.004830917874396135 ]
0.004365
5
[ { "analysis_explanation": null, "end": 23, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18 }, { "analysis_explanation": null, "end": 175, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162 }, { "analysis_explanation": null, "end": 221, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212 }, { "analysis_explanation": null, "end": 271, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266 }, { "analysis_explanation": null, "end": 321, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312 }, { "analysis_explanation": null, "end": 399, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 378 }, { "analysis_explanation": null, "end": 472, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 467 }, { "analysis_explanation": null, "end": 524, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512 }, { "analysis_explanation": null, "end": 716, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 702 }, { "analysis_explanation": null, "end": 731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 724 }, { "analysis_explanation": null, "end": 744, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 737 }, { "analysis_explanation": null, "end": 873, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 869 }, { "analysis_explanation": null, "end": 1035, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1009 }, { "analysis_explanation": null, "end": 1160, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1129 } ]
[ "Q:\n\nWhat are \"Factor Graphs\" and what are they useful for?", "\n\nA friend is using Factor Graphs to do text mining (identifying references to people in text), and it got me interested in this tool, but I'm having a hard time finding an intuitive explanation of what Factor Graphs are and how to use them.", "\nCan anyone provide an explanation of Factor Graphs that isn't math heavy, and which focusses on practical applications rather than abstract theory?", "\n\nA:\n\nThey are used extensively for breaking down a problem into pieces. ", "One very interesting application of factor graphs (and message passing on them) is the XBox Live TrueSkill algorithm. ", "I wrote extensively about it on my blog where I tried to go for an introductory explanation rather than an overly academic one.", "\n\nA:\n\nA factor graph is the graphical representation of the dependencies between variables and factors (parts of a formula) that are present in a particular kind of formula.", "\nSuppose you have a function f(x_1,x_2,...,x_n) and you want to compute the marginalization of this function for some argument x_i, thus summing over all assignments to the remaining formula. ", "Further f can be broken into factors, e.g. \nf(x_1,x_2,...,x_n)=f_1(x_1,x_2)f_2(x_5,x_8,x_9)...f_k(x_1,x_10,x_11)\nThen in order to compute the marginalization of f for some of the variables you can use a special algorithm called sum product (or message passing), that breaks the problem into smaller computations. ", "For this algortithm, it is very important which variables appear as arguments to which factor. ", "This information is captured by the factor graph.", "\nA factor graph is a bipartite graph with both factor nodes and variable nodes. ", "And there is an edge between a factor and a variable node if the variable appears as an argument of the factor. ", "In our example there would be an edge between the factor f_2 and the variable x_5 but not between f_2 and x_1.", "\nThere is a great article: Factor graphs and the sum-product algorithm.", "\n\nA:\n\nFactor graph is math model, and can be explained only with math equations. ", "In nutshell it is way to explain complex relations between interest variables in your model. ", "Example: A is temperature, B is pressure, components C,D,E are depends on B,A in some way, and component K is depends on B,A. And you want to predict value K based on A and B. So you know only visible states. ", "Basic ML libraries don't allow to model such structure. ", "Neural network do it better. ", "And Factor Graph is exactly solve that problem.", "\nFactor graph is an example of deep learning. ", "When it is impossible to present model with features and output, Factor models allow to build hidden states, layers and complex structure of variables to fit real world behavior. ", "Examples are Machine translation alignment, fingerprint recognition, co-reference etc.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.008298755186721992, 0.006756756756756757, 0, 0, 0, 0, 0.005208333333333333, 0.003194888178913738, 0, 0, 0, 0, 0, 0, 0, 0, 0.004784688995215311, 0, 0, 0, 0, 0, 0, 0 ]
0.00113
5
[ { "analysis_explanation": null, "end": 90, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77 }, { "analysis_explanation": null, "end": 273, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260 }, { "analysis_explanation": null, "end": 349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336 }, { "analysis_explanation": null, "end": 1877, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1874 } ]
[ "Q:\n\nObjective C if statement not working\n\nI have been trying to find out the problem to this for a day now, and can't seem to find the fix. ", "\nint person;\n\n-(IBAction)personOne:(id)sender{\n[twoPerson stopAnimating];\n[fourPerson stopAnimating];\n[threePerson stopAnimating];\n[onePerson startAnimating];\n\nperson = 1;\n\n}\n\n-(IBAction)personTwo:(id)sender{\n[threePerson stopAnimating];\n[fourPerson stopAnimating];\n[onePerson startAnimating];\n[twoPerson startAnimating]; \n\nperson = 2;\n}\n-(IBAction)personThree:(id)sender{\n[fourPerson stopAnimating];\n[onePerson startAnimating];\n[twoPerson startAnimating];\n[threePerson startAnimating];\n\nperson = 3;\n}\n-(IBAction)personFour:(id)sender{\n[onePerson startAnimating];\n[twoPerson startAnimating];\n[threePerson startAnimating];\n[fourPerson startAnimating];\n\nperson = 4;\n}\n\nWhat I'm trying to do is if this button is clicked then Person is equal to an integer value. ", "\nI don't see a problem with this code at all. ", "\nI then have another button that's using if statements.", "\n-(IBAction)go:(id)sender{\nammountDueFloat = ([ammountDue.text floatValue]);\ntipPercent1;\nfindAmmount = tipPercent1 * ammountDueFloat;\nNSString *showAmmountText = [[NSString alloc]initWithFormat:@\"$%.2f\", findAmmount];\nshowammount.text = showAmmountText;\n\nif (person = 1) {\n showPerPerson = findAmmount / 1;\n perPersonLabel.text = [[NSString alloc]initWithFormat:@\"$%.2f\", showPerPerson];\n}\nif (person = 2) {\n showPerPerson = findAmmount / 2;\n perPersonLabel.text = [[NSString alloc]initWithFormat:@\"$%.2f\", showPerPerson];\n}\nif (person = 3) {\n showPerPerson = findAmmount / 3;\n perPersonLabel.text = [[NSString alloc]initWithFormat:@\"$%.2f\", showPerPerson];\n}\nif (person = 4) {\n showPerPerson = findAmmount / 4;\n perPersonLabel.text = [[NSString alloc]initWithFormat:@\"$%.2f\", showPerPerson];\n}\nelse {\n showPerPerson = findAmmount / 1;\n perPersonLabel.text = [[NSString alloc]initWithFormat:@\"$%.2f\", showPerPerson];\n}\n\n}\n\nWhenever I click the button 'go' it always assumes the value of person is the last if statement. ", "\nAny ideas?", "\n\nA:\n\nuse == to compare\nif(person == 1)\n{\n//...\n}\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.021739130434782608, 0, 0.006622516556291391, 0, 0 ]
0.004052
5
[ { "analysis_explanation": null, "end": 102, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97 } ]
[ "Q:\n\nHow do I initialize instance variables without having to put them in a constructor?", "\n\nGiven this\nclass A\n opt: {}\n init: (param) ->\n console.log \"arg is \", @opt.arg\n @opt.arg = param\n\na = new A()\na.init(\"a\")\nconsole.log \"first\", a.opt.arg\n\nb = new A()\nb.init(\"b\")\nconsole.log \"second\", b.opt.arg\n\nThis is the output\narg is undefined\nfirst a\narg is a\nsecond b\n\nThe variable opt is acting as a static, it belongs to the class A instead of the instance a or b. How do I initialize instance variables without having to put them in a constructor? ", "Like so:\nclass A\n constructor: ->\n @opt = {}\n\nEdit:\nThis is problematic when inheritance is used since the super constructor is overwritten.", "\nclass B\n constructor: ->\n console.log \"i won't happen\"\nclass A extends B\n constructor: ->\n console.log \"i will happen\"\n @opt = {}\n\nA:\n\nYour opt object is shared via the prototype, you can override it in instances directly, but if you change objects inside it, you actually change the prototype object (static like behavior). ", "It's very important to understand prototypes when using coffeescript classes.", "\nI think the best way to init instance members is in the constructor like you are doing atm.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.004219409282700422, 0.006802721088435374, 0.002898550724637681, 0, 0, 0 ]
0.001989
5
[ { "analysis_explanation": null, "end": 174, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 168 }, { "analysis_explanation": null, "end": 189, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 183 }, { "analysis_explanation": null, "end": 216, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 212 }, { "analysis_explanation": null, "end": 253, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 245 }, { "analysis_explanation": null, "end": 272, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 268 }, { "analysis_explanation": null, "end": 310, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 302 } ]
[ "Leanna Creel\n\nLeanna Creel (born August 27, 1970 in Los Angeles) is an American actress, film producer, film director, screenwriter and photographer.", "\n\nCreel is an identical triplet who, along with her sisters, Joy Creel and Monica Lacy, started acting in the late 1980s. ", "They appeared together in two television movies aired on The Wonderful World of Disney: Parent Trap III and Parent Trap: Hawaiian Honeymoon. ", "In 1992, Creel had a guest role in an episode of Beverly Hills, 90210, alongside Monica. ", "That same year, she landed the role of Tori in Saved by the Bell. ", "Following her stint on Saved by the Bell, Creel had guest roles on One West Waikiki and Ned & Stacey.", "\n\nShe attended UCLA and received a bachelor's degree in history, and then a master's degree in film and television.", "\n\nCreel produced her first film in 1994, helping out a friend whose producer had been involved in a car accident. ", "She also worked for the game Hollywood Stock Exchange (HSX). ", "In 1998 she founded a film production company, Ignite Entertainment, with HSX's Michael Burns as President of Production. ", "Creel now runs Creel Studio, a production company specializing in food, travel and lifestyle content and is a photographer and filmmaker.", "\n\nPersonal life\n\nCreel married Rinat Greenberg on June 17, 2008, when California legalized same-sex marriages. ", "Creel and Greenberg have two sons.", "\n\nFilmography\n\nFilm\n\nTelevision\n\nReferences\n\nExternal links\nCreel Studio Official Website\n \n\nCategory:American child actresses\nCategory:American film actresses\nCategory:Film producers from California\nCategory:American photographers\nCategory:American television actresses\nCategory:American women film directors\nCategory:Lesbian actresses\nCategory:LGBT directors\nCategory:LGBT screenwriters\nCategory:LGBT people from California\nCategory:LGBT producers\nCategory:Actresses from Los Angeles\nCategory:Triplets\nCategory:University of California, Los Angeles alumni\nCategory:American women screenwriters\nCategory:1970 births\nCategory:Living people\nCategory:Film directors from California\nCategory:LGBT entertainers from the United States\nCategory:American women photographers\nCategory:UCLA Film School alumni\nCategory:American women film producers\nCategory:Screenwriters from California" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.013422818791946308, 0.01639344262295082, 0.02127659574468085, 0.02247191011235955, 0.015151515151515152, 0.009900990099009901, 0.008695652173913044, 0, 0.03278688524590164, 0.02459016393442623, 0.0072992700729927005, 0.009009009009009009, 0.029411764705882353, 0.004555808656036446 ]
0.015355
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": 48, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33 }, { "analysis_explanation": null, "end": 63, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52 }, { "analysis_explanation": null, "end": 79, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71 }, { "analysis_explanation": null, "end": 155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150 }, { "analysis_explanation": null, "end": 218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209 }, { "analysis_explanation": null, "end": 234, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223 }, { "analysis_explanation": null, "end": 268, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254 }, { "analysis_explanation": null, "end": 418, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 414 }, { "analysis_explanation": null, "end": 425, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 420 }, { "analysis_explanation": null, "end": 473, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460 }, { "analysis_explanation": null, "end": 480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475 }, { "analysis_explanation": null, "end": 498, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492 }, { "analysis_explanation": null, "end": 613, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608 }, { "analysis_explanation": null, "end": 649, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 637 }, { "analysis_explanation": null, "end": 787, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 782 }, { "analysis_explanation": null, "end": 819, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 815 }, { "analysis_explanation": null, "end": 962, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 958 }, { "analysis_explanation": null, "end": 1048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1035 }, { "analysis_explanation": null, "end": 1082, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1077 }, { "analysis_explanation": null, "end": 1235, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1230 }, { "analysis_explanation": null, "end": 1259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1244 }, { "analysis_explanation": null, "end": 1276, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1263 }, { "analysis_explanation": null, "end": 1293, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1283 }, { "analysis_explanation": null, "end": 1329, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1324 }, { "analysis_explanation": null, "end": 1343, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1334 }, { "analysis_explanation": null, "end": 1467, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1459 }, { "analysis_explanation": null, "end": 1501, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1493 }, { "analysis_explanation": null, "end": 1574, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1566 }, { "analysis_explanation": null, "end": 1606, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1598 }, { "analysis_explanation": null, "end": 1645, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1637 }, { "analysis_explanation": null, "end": 1782, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1772 }, { "analysis_explanation": null, "end": 1842, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1831 }, { "analysis_explanation": null, "end": 1907, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1896 }, { "analysis_explanation": null, "end": 1932, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1924 }, { "analysis_explanation": null, "end": 2086, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2069 }, { "analysis_explanation": null, "end": 2104, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2096 }, { "analysis_explanation": null, "end": 2175, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2167 }, { "analysis_explanation": null, "end": 2235, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2225 } ]
[ "When A 12-Year-Old Boy's Bike Is Stolen, Police Officers Take It Personally For One Unexpected Reason\n\nPARENTING // INSPIRATIONAL\n\nFor the officers, this was very personal.", "\n\nAdvertisement\n\nWhen a 12-year-old boy in Connecticut lost his beloved bike, a few police officers investigating his case went out of their way to make his day.", "\n\nAs WFSB reports, Naz Harding absolutely loved riding his bike…right up until the day it was stolen.", "\n\nNeedless to say Naz was crushed that somebody had stolen his bike, especially when he realized he could not afford to replace it.", "\n\nAccording to reports, everybody at the police department already knows Naz, since he is part of the Hartford Police Department’s youth program PAL.", "\n\n“I kinda took it personally because I know him, he’s a good kid,” Officer Kevin Small told WFSB.", "\n\n“They do a lot for the community so we wanted to do something for them,” White told InsideEdition.com. “", "We felt the need to make it right.”", "\n\nThanks to the Hartford Police Department Guardians, Naz was surprised with a brand new bike and helmet earlier this week.", "\n\n“His eyes opened up so wide and he was just so happy,” Naz’s mom, Catherine Harding, said.", "\n\n“It was pretty cool of them to stop on their busy days fighting crime and doing what they're doing just to give my son a bike,” she added. “", "Just to give him back a bike, just as simple as riding with his friends means so much to these kids.”", "\n\nGiving the new bike to Naz was a wonderful feeling for the police officers who know the boy and his family.", "\n\n“It’s money well spent. ", "It’s not the first time and it won’t be the last time that we try to invest in the community in Hartford,” Officer Tyrell Jenkins said.", "\n\nJust to make sure the bike was totally safe, the officers even took Naz and his little sister for a spin after unveiling the big surprise.", "\n\nNaz’s story is already touching hearts all over the country, with plenty of commenters praising the police officers for doing the right thing for a boy in need.", "\n\n“Their is nothing more beautiful than a smile on a child's face! ", "Keep up the good work!” ", "one commenter wrote.", "\n\n“Proud to be a resident of Hartford when I see things like this thank you HPD!” ", "another added.", "\n\nWhile speaking with Inside Edition, Naz thanked the police officers who went above the call of duty to replace his stolen bike.", "\n\n“Thank you for buying me a bike,” Naz told the Hartford police officers during the interview. “[", "I was] surprised and happy, because I could ride my bike with my friends [again].”", "\n\nShare This News!", "\n\nTweet This News!", "\n\nEmail This News!", "\n\nMore Options!", "\n\nMore Sharing Options\n\nX\n\nFacebook\n\nSHARE NOW!", "\n\nTwitter\n\nSHARE NOW!", "\n\nEmail\n\nSHARE NOW!", "\n\nPinterest\n\nSHARE NOW!", "\n\nTumblr\n\nSHARE NOW!", "\n\nGoogle+\n\nSHARE NOW!", "\n\nReddit\n\nSHARE NOW!", "\n\nFlipboard\n\nSHARE NOW!", "\n\nLinkedIn\n\nSHARE NOW!", "\n\nStumbleUpon\n\nSHARE NOW!", "\n\nDigg\n\nSHARE NOW!", "\n\nWe Heart It\n\nSHARE NOW!", "\n\nShare This Story On Facebook!", "\n\nEnjoy what you read? ", "Like below!", "\n\nGet your news twice as fast! ", "NX2 is the hub for hot, trending stories that are happening around the world! ", "We feature everything from breaking news to viral videos! ", "So what are you waiting for?! ", "Check out our site now and be the FIRST to know what’s happening!" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.019801980198019802, 0.007633587786259542, 0.013422818791946308, 0.02040816326530612, 0, 0, 0.016260162601626018, 0.021739130434782608, 0, 0, 0.009174311926605505, 0, 0.007407407407407408, 0.007142857142857143, 0, 0, 0, 0, 0.012195121951219513, 0, 0, 0.01020408163265306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.05, 0, 0, 0, 0, 0.04, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.004804
5
[ { "analysis_explanation": null, "end": 39, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7 }, { "analysis_explanation": null, "end": 206, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195 }, { "analysis_explanation": null, "end": 225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214 }, { "analysis_explanation": null, "end": 340, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336 }, { "analysis_explanation": null, "end": 361, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 350 }, { "analysis_explanation": null, "end": 417, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410 }, { "analysis_explanation": null, "end": 452, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449 }, { "analysis_explanation": null, "end": 637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 634 }, { "analysis_explanation": null, "end": 796, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 785 }, { "analysis_explanation": null, "end": 806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 802 }, { "analysis_explanation": null, "end": 886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 881 }, { "analysis_explanation": null, "end": 1004, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1001 }, { "analysis_explanation": null, "end": 1069, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1052 }, { "analysis_explanation": null, "end": 1129, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1126 }, { "analysis_explanation": null, "end": 1154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1137 }, { "analysis_explanation": null, "end": 1431, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1428 }, { "analysis_explanation": null, "end": 1641, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1633 }, { "analysis_explanation": null, "end": 1666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1652 }, { "analysis_explanation": null, "end": 1744, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1741 }, { "analysis_explanation": null, "end": 2118, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2110 }, { "analysis_explanation": null, "end": 2217, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2214 }, { "analysis_explanation": null, "end": 2343, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2340 }, { "analysis_explanation": null, "end": 2361, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2353 }, { "analysis_explanation": null, "end": 909, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 892 } ]
[ "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. ", " See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.", "\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License. ", " You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n * See the License for the specific language governing permissions and\n * limitations under the License.", "\n */\npackage org.apache.activemq.util;\n\nimport java.util.", "Map;\n\n/**\n * A bunch of utility methods for working with maps\n * \n * \n */\npublic final class MapHelper {\n\n private MapHelper() {\n }\n\n /**\n * Extracts the value from the map and coerces to a String\n */\n public static String getString(Map map, String key) {\n Object answer = map.get(key);\n return (answer !", "= null) ? ", "answer.toString() : null;\n }\n\n /**\n * Extracts the value from the map and coerces to an int value or returns a\n * default value if one could not be found or coerced\n */\n public static int getInt(Map map, String key, int defaultValue) {\n Object value = map.get(key);\n if (value instanceof Number) {\n return ((Number)value).intValue();\n } else if (value instanceof String) {\n return Integer.parseInt((String)value);\n }\n return defaultValue;\n }\n}\n" ]
{ "pile_set_name": "Github" }
[ 0.009174311926605505, 0.009259259259259259, 0.006097560975609756, 0.006389776357827476, 0.009523809523809525, 0.017543859649122806, 0.005917159763313609, 0, 0 ]
0.007101
5
[ { "analysis_explanation": null, "end": 954, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 945 }, { "analysis_explanation": null, "end": 472, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 430 }, { "analysis_explanation": null, "end": 820, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 807 }, { "analysis_explanation": null, "end": 1158, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1152 }, { "analysis_explanation": null, "end": 1210, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1201 }, { "analysis_explanation": null, "end": 1487, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1481 }, { "analysis_explanation": null, "end": 1656, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1646 } ]
[ "Q:\n\nThis code only working with alert?", "\n\nI have a textarea that when you press tab, it inserts three spaces. ", "Here is the code:\n<!", "doctype html>\n<html>\n <head>\n <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"> </script>\n <style type=\"text/css\">\n textarea {\n tab-size: 3;\n }\n </style>\n </head>\n <body>\n <textarea id=\"textarea\"></textarea>\n <script>\n $(document).ready(function() {\n $(\"textarea\").keydown(function(e) {\n if (e.which === 9) {\n e.preventDefault();\n $(this).val += \"\\t\";\n alert(\"Tab pressed\");\n }\n });\n });\n </script>\n </body>\n</html>\n\nThis code inserts the space all right, but when I take out the alert,it doesn't work.", "\n\nA:\n\nval() is a method, not a property, so try:\nvar $this = $(this);\n$this.val($this.val() + \"\\t\");\n\nFiddle\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0.004914004914004914, 0 ]
0.000983
5
[ { "analysis_explanation": null, "end": 140, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128 }, { "analysis_explanation": null, "end": 247, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 181 }, { "analysis_explanation": null, "end": 653, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 649 }, { "analysis_explanation": null, "end": 1019, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1012 }, { "analysis_explanation": null, "end": 1029, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1022 } ]
[ "Intestinal microflora in early infancy: composition and development.", "\nThe neonatal intestinal microbiota is a complex ecosystem composed of numerous genera, species and strains of bacteria. ", "This enormous cell mass performs a variety of unique activities that affect both the colonic and systemic physiology. ", "Its primary activities include nutritive, metabolic, immunological and protective functions. ", "Most studies of infants have been based on faecal samples using the classical plating techniques with culturing on specific media. ", "The limitations of these methods must be taken into account when evaluating the varying results of the different studies. ", "The establishment of the gut microbial population is not strictly a succession in the ecological sense; it is rather a complex process influenced by microbial and host interactions and by external and internal factors. ", "The climax intestinal flora is attained in successive stages. ", "The foetal intestine is sterile and bathed in swallowed amniotic fluid. ", "Following delivery, multiple different antigens challenge the intestine of the newborn. ", "The maternal intestinal flora is a source of bacteria for the neonatal gut. ", "The bacterial flora is usually heterogeneous during the first few days of life, independently of feeding habits. ", "After the first week of life, a stable bacterial flora is usually established. ", "In full-term infants a diet of breast milk induces the development of a flora rich in Bifidobacterium spp. ", "Other obligate anaerobes, such as Clostridium spp. ", "and Bacteroides spp., ", "are more rarely isolated and also enterobacteria and enterococci are relatively few. ", "During the corresponding period, formula-fed babies are often colonized by other anaerobes in addition to bifidobacteria and by facultatively anaerobic bacteria; the development of a \"bifidus flora\" is unusual. ", "In other studies the presence of a consistent number of bifidobacteria in infants delivered in large urban hospitals has not been demonstrated, whether the babies were bottle fed or exclusively breastfed. ", "The predominant faecal bacteria were coliforms and bacteroides. ", "According to these studies, environmental factors may be more important than breastfeeding in gut colonization after delivery. ", "Environmental factors are indeed extremely important for the intestinal colonization of infants born by caesarean section. ", "In these infants, the establishment of a stable flora characterized by a low incidence of Bacteroides spp. ", "and by the isolation of few other bacteria is consistently delayed. ", "In extremely low-birthweight infants, hospitalization in neonatal intensive care units, characterized by prolonged antibiotic therapy, parenteral nutrition, delayed oral feedings and intubation seems to affect the composition of the intestinal microbiota. ", "The gut is colonized by a small number of bacterial species; Lactobacillus and Bifidobacteria spp. ", "are seldom, if ever, identified. ", "According to the few studies so far performed, the predominant species are Enterococcus faecalis, E. coli, Enterobacter cloacae, Klebsiella pneumoniae, Staphylococcus epidermidis and Staphylococcus haemolyticus. ", "Hygienic conditions and antimicrobial procedures strongly influence the intestinal colonization pattern." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 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.02358490566037736, 0 ]
0.000813
5
[ { "analysis_explanation": null, "end": 1240, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1222 }, { "analysis_explanation": null, "end": 1303, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1289 } ]
[ "How the fuck Do people have so much homework after the first day of class\n\n211 shares" ]
{ "pile_set_name": "OpenWebText2" }
[ 0 ]
0
5
[ { "analysis_explanation": null, "end": 64, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51 } ]
[ "12/03/2010\n\nKEVIN LEDO @ velvet\n\nvernissage 18 mars 18h00 | March 18 ~ 6:00PMVelvet : 420 Saint-GabrielVelvet Speakeasy will be transformed into a dark candle lit temple of worship embellished with gold walls, religious symbolism and Kevin Ledo’s beautifully ironic icon paintings. ", "Opening night will have a focus on a multisensory experience as Ledo teamed up with Dj Milton Clark to provide a truly unique soundscape that may go so far as to cultivate an eerie ambiance.", "\n\nThe body of work presented in this exhibition is a sample from the series “The Guiding Light” which draws parallels between luxury fashion institutions and medieval religious authorities and their comparable use of icon worship. ", "Works in the exhibit include “The Grace of Saint Calvin Klein, The Fall of Saint Prada and Saint Alberta Ferretti of Milan.”", "\n\nVELVET RENAISSANCE is a monthly event, hosted by DL Jones & Alex Brosseau, showcasing an artist’s expression of his/her craft given the Velvet Speakeasy as a canvas.", "\n\nThe title of the event implies the metaphorical rebirth of the space with the coming of a new artist, as well as the encouragement of the arts as in the time of the Italian Renaissance.", "\n\nInvited artists are encouraged to push the limits of creativity and to put their signature on the space, knowing that everything, save one detail will be erased to make room for the next artist. ", "The first VELVET RENAISSANCE featured Montreal graffiti artist OMEN (http://www.omen514.com/), the second which will take place on March 18th will feature Kevin Ledo (http://www.kevinledo.com/). ", "The spectrum of selected artists is not intended to be limited to fine artists, but includes graphic designers, fashion designers, tattoo artists, A/V artists, etc. ", "For example, the April edition of VELVET RENAISSANCE will feature Jean-François Proulx (http://www.balistique.ca/), who will be unveiling the VELVET book, a quarterly publication and calendar, as well as the new VELVET graphic identity: logo, website, menus, etc." ]
{ "pile_set_name": "Pile-CC" }
[ 0.0035460992907801418, 0.010526315789473684, 0, 0.008064516129032258, 0.011976047904191617, 0.0053475935828877, 0, 0.020512820512820513, 0, 0.022813688212927757 ]
0.008279
5
[ { "analysis_explanation": null, "end": 68, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60 }, { "analysis_explanation": null, "end": 244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234 }, { "analysis_explanation": null, "end": 295, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282 }, { "analysis_explanation": null, "end": 350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 346 }, { "analysis_explanation": null, "end": 381, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 366 }, { "analysis_explanation": null, "end": 824, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 819 }, { "analysis_explanation": null, "end": 845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 827 }, { "analysis_explanation": null, "end": 858, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 851 }, { "analysis_explanation": null, "end": 900, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 887 }, { "analysis_explanation": null, "end": 1420, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1412 }, { "analysis_explanation": null, "end": 1466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1443 }, { "analysis_explanation": null, "end": 1515, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1505 }, { "analysis_explanation": null, "end": 1539, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1529 }, { "analysis_explanation": null, "end": 1756, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1751 }, { "analysis_explanation": null, "end": 1820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1800 }, { "analysis_explanation": null, "end": 1882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1876 }, { "analysis_explanation": null, "end": 1900, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1891 }, { "analysis_explanation": null, "end": 10, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 0 }, { "analysis_explanation": null, "end": 1466, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 1443 }, { "analysis_explanation": null, "end": 1566, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 1541 }, { "analysis_explanation": null, "end": 1847, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 1822 } ]
[ "Jurgen, A Comedy of Justice\n\nJurgen, A Comedy of Justice is a fantasy novel by American writer James Branch Cabell, which gained fame (or notoriety) shortly after its publication in 1919. ", "It is a humorous romp through a medieval cosmos, including a send-up of Arthurian legend, and excursions to Heaven and Hell as in The Divine Comedy. ", " Cabell's work is recognized as a landmark in the creation of the comic fantasy novel, influencing Terry Pratchett and many others.", "\n\nThe book and its reception\nThe eponymous hero, who considers himself a \"monstrous clever fellow,\" embarks on a journey through ever more fantastic realms in search of a parodized version of courtly love. ", "Everywhere he goes he meets eccentric knights and damsels, in an acerbic satire of contemporary America. ", "Jurgen gains the attention of the Lady of the Lake, Queen Guinevere, Anaitis, Helen of Troy, Chloris, and even the Devil's wife. ", "His wanderings take him from Poictesme to Glathion, Cocaigne, Leuke, Hell, and Heaven.", "\n\nThe novel became more widely known after the New York Society for the Suppression of Vice attempted to bring a prosecution for obscenity. ", "The printing plates were seized on January 4, 1920. ", "The case went on for two years before Cabell and his publisher, Robert M. McBride, won. ", "They argued that the \"indecencies\" were double entendres that also had perfectly decent interpretations, though it appeared that what had actually offended the prosecution most was the work's mocking expression of philosophy, including a jest about the nature of papal infallibility.", "\n\nIn 1922, Guy Holt his editor and publisher who was also named in the court case published Jurgen and the Law, A Statement. ", "With Exhibits, including the Court's Opinion, and the brief for the Defendants on Motion to Direct an Acquittal. ", "There were only one thousand copies printed for sale. ", "\n\nCabell took an author's revenge. ", "The revised edition of 1923 included a previously \"lost\" passage in which the hero is placed on trial by the Philistines, with a large dung-beetle as the chief prosecutor. ", "He also wrote a short book, Taboo, in which he thanked John S. Sumner and the Society for the Suppression of Vice for generating the publicity that gave his career a boost.", "\n\nWriting in the Pacific Review in 1921, Vernon Louis Parrington praised Jurgen, and described Cabell as \"one of the greatest masters of English prose.\" ", "Aleister Crowley called Jurgen one of the \"epoch-making masterpieces of philosophy\" in 1929 – the book contains a parody of Crowley's Gnostic Mass. Crowley's famous phrase from The Book of the Law, \"There is no law beyond Do what thou wilt\"—or its source, Rabelais's \"there was but this one clause to be observed, Do What Thou Wilt\"—is parodied as \"There is no law in Cocaigne save, Do that which seems good to you.\"", "\n\nReviewing Cabell's later novel, Hamlet Had An Uncle, Basil Davenport called Jurgen \"a masterpiece.\"", "\n\nRobert A. Heinlein consciously patterned his best-known novel, Stranger in a Strange Land, after Jurgen, and Cabell's influence is also evident in the titles and themes of at least two other novels by Heinlein: his long-unpublished first novel, For Us, The Living: A Comedy of Customs (written 1938, published 2003), and his late work Job: A Comedy of Justice (1984).", "\n\nFilmmaker Jürgen Vsych was named after Jurgen, A Comedy of Justice, which was her father's favorite book.", "\n\nFootnotes\n\nReferences\n\nExternal links \n \"Notes on Jurgen\" (a 1928 fan book of footnotes to accompany the novel), by James P. Cover, through HathiTrust or in hypertext format\n\n \n JURGEN hypertext edition at the University of Virginia\n\nCategory:Novels by James Branch Cabell\nCategory:1919 American novels\nCategory:1919 fantasy novels\nCategory:American fantasy novels\nCategory:American satirical novels\nCategory:Censorship in Christianity\nCategory:Novels about dreams\nCategory:Obscenity controversies in literature\nCategory:Heaven and hell novels\nCategory:Censored books" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.015957446808510637, 0, 0.015267175572519083, 0, 0, 0.023255813953488372, 0, 0.007142857142857143, 0, 0.022727272727272728, 0, 0.016, 0.017699115044247787, 0, 0, 0, 0.01744186046511628, 0.026143790849673203, 0.01201923076923077, 0.0297029702970297, 0.01084010840108401, 0.028037383177570093, 0.008787346221441126 ]
0.010914
5
[ { "analysis_explanation": null, "end": 87, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79 }, { "analysis_explanation": null, "end": 114, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95 }, { "analysis_explanation": null, "end": 186, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182 }, { "analysis_explanation": null, "end": 450, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435 }, { "analysis_explanation": null, "end": 775, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 768 }, { "analysis_explanation": null, "end": 783, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 777 }, { "analysis_explanation": null, "end": 860, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 855 }, { "analysis_explanation": null, "end": 1181, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1166 }, { "analysis_explanation": null, "end": 1213, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1204 }, { "analysis_explanation": null, "end": 1264, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1247 }, { "analysis_explanation": null, "end": 1562, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1558 }, { "analysis_explanation": null, "end": 1572, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1564 }, { "analysis_explanation": null, "end": 1651, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1645 }, { "analysis_explanation": null, "end": 1905, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1901 }, { "analysis_explanation": null, "end": 1998, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1987 }, { "analysis_explanation": null, "end": 2119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2105 }, { "analysis_explanation": null, "end": 2260, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2256 }, { "analysis_explanation": null, "end": 2285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2262 }, { "analysis_explanation": null, "end": 2300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2294 }, { "analysis_explanation": null, "end": 2390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2374 }, { "analysis_explanation": null, "end": 2404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2398 }, { "analysis_explanation": null, "end": 2465, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2461 }, { "analysis_explanation": null, "end": 2531, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2516 }, { "analysis_explanation": null, "end": 2859, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2844 }, { "analysis_explanation": null, "end": 2873, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2867 }, { "analysis_explanation": null, "end": 2909, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2891 }, { "analysis_explanation": null, "end": 2994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2988 }, { "analysis_explanation": null, "end": 3100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3092 }, { "analysis_explanation": null, "end": 3189, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3185 }, { "analysis_explanation": null, "end": 3205, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3201 }, { "analysis_explanation": null, "end": 3256, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3252 }, { "analysis_explanation": null, "end": 3281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3269 }, { "analysis_explanation": null, "end": 3304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3298 }, { "analysis_explanation": null, "end": 3430, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3426 }, { "analysis_explanation": null, "end": 3495, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3481 }, { "analysis_explanation": null, "end": 3637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3618 }, { "analysis_explanation": null, "end": 3660, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3652 }, { "analysis_explanation": null, "end": 3714, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3706 }, { "analysis_explanation": null, "end": 3747, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3739 }, { "analysis_explanation": null, "end": 3800, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3788 } ]
[ "Tesla CEO Elon Musk recently revealed through Twitter that the company would be revealing its new semi truck at an event in September (as we reported at the time). ", "That tweet seemed pretty optimistic as regards the quality of the semi truck being developed by Tesla, with Musk stating: “Team has done an amazing job. ", "Seriously next level.”", "\n\nFollowing the tweet, an analyst at Piper Jaffray by the name of Alex Potter released a note revealing that he was downgrading the engine and truck manufacturers Cummins and Paccar — partly as a response to Tesla’s impending semi truck reveal. ", "Though, the downgrade was also partly as a result of the stock already being overvalued, according to Potter.", "\n\nThe note from Potter read: “their valuations already reflect cyclical optimism, but also because we think TSLA’s impending arrival could pressure valuations.”", "\n\nThe note also singled out Allison Transmission Holdings as a stock at great risk from potential disruption caused by Tesla’s semi truck.", "\n\nA second note regarding Cummins was particularly blunt (as quoted by CNBC): “Cummins makes diesel engines, but companies like Tesla (among others) are aiming to supplant CMI’s products. ", "These Silicon Valley disrupters are not confining their ambitions to sedans; instead, they have announced plans for electric semis, electric pickups, electric buses, and various other products that defy the preeminence of diesel engines. ", "CMI enthusiasts will note that EVs won’t replace diesel trucks in the coming 2 years (not in a material way, at least) and we agree. ", "But when/if electric drivetrains are proven viable in the first commercial vehicle segments, we think incumbents’ valuations could fall rapidly thereafter.”", "\n\nA separate note concerning Paccar made some interesting points as well: “Tesla’s presence looms large; laugh all you want, but this trend cannot be ignored. ", "In the automotive segment, Tesla and others have wrought substantial disruption, forcing incumbents to change their hiring practices, increase R&D spending, and ultimately, suffer lower multiples. ", "PCAR may be less at risk than others — and it’s probably too early to start ringing alarm bells — but with the stock trading near the high-end of its historical valuation range, we wouldn’t be adding to positions.”", "\n\nOf course, the nature of Tesla’s actual potential to disrupt the semi truck sector is still largely an unknown, as the company has yet to reveal much of anything … but already the threat of disruption is leading to some analysts changing their forecasts, which is interesting.", "\n\nIt should also be realized here that Tesla isn’t the only company pursuing the electric semi truck sector. ", "Daimler/Mercedes-Benz is also planning to begin full production of its Urban eTruck by 2020. …", "\n\nWith regard to the notes from the analyst Alex Potter, he also recently upgraded his price forecast for Tesla’s stock to $368. ", "Apparently, that’s the highest price forecast yet received by Tesla from a major firm, according to CNBC." ]
{ "pile_set_name": "Pile-CC" }
[ 0.006097560975609756, 0.013071895424836602, 0, 0.02040816326530612, 0, 0.00625, 0.014492753623188406, 0.026595744680851064, 0, 0.007518796992481203, 0, 0.006289308176100629, 0, 0.004672897196261682, 0.0035971223021582736, 0.009174311926605505, 0.010638297872340425, 0.015503875968992248, 0.009523809523809525 ]
0.008097
5
[ { "analysis_explanation": null, "end": 19, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10 }, { "analysis_explanation": null, "end": 133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124 }, { "analysis_explanation": null, "end": 276, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272 }, { "analysis_explanation": null, "end": 388, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375 }, { "analysis_explanation": null, "end": 415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 404 }, { "analysis_explanation": null, "end": 691, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 685 }, { "analysis_explanation": null, "end": 713, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 707 }, { "analysis_explanation": null, "end": 1020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1013 }, { "analysis_explanation": null, "end": 1195, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1181 }, { "analysis_explanation": null, "end": 1497, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1479 }, { "analysis_explanation": null, "end": 2739, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2727 }, { "analysis_explanation": null, "end": 2747, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2743 }, { "analysis_explanation": null, "end": 2804, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2793 } ]
[ "The Obama administration has stringently refused to provide records on its aggressive amnesty programs that may reveal coordination with outside lobbyists, prompting legal action from an immigration reform group.", "\n\nIn response to the refusal, the Immigration Reform Law Institute decided to sue the Obama administration Friday to force a release of that information from U.S. Citizenship and Immigration Services (USCIS).", "\n\nThe information sought isn’t just limited to a single record, but spans eight different requests that have been stonewalled by USCIS.", "\n\nIRLI wants to know the funding sources behind programs like President Barack Obama’s Deferred Action for Childhood Arrivals (DACA) and Deferred Action for Parental Accountability, as well as whether these programs are in compliance with the Anti-Deficiency Act.", "\n\nThe Anti-Deficiency Act is a law designed to prevent government agencies from signing contracts that obligate them to pay more funds than they currently have available.", "\n\nIRLI also is interested in how many fee waivers the Obama administration has handed out to DACA-recipients, as well as how these programs affect waiting time periods for people who apply for legal permanent residency through proper channels.", "\n\nBut that’s not all.", "\n\nIRLI also suspects that top administration officials have attacked low-level employees, who are frustrated with the administration’s aggressive approach to re-engineering the immigration system. ", "There also may be communication between these top officials and outside lobbyists from the tech industry hungry for more visas to support foreign labor and from open borders activists.", "\n\nOn the tech industry side, the lawsuit asks for USCIS to provide any communication from 2012 between officials and representatives of Microsoft, Intel, Oracle, Hewlett-Packard and Facebook.", "\n\n“It’s hoped much of this information will assist state and local governments and aggrieved members of the American public that wish to challenge the Administration for the giant strains imposed on its communities, labor markets, and school, health care and welfare-budgets due to its ongoing non-enforcement agenda,” IRLI said in a statement.", "\n\nFor IRLI executive director Dale L. Wilcox, the idea of the suit is “raise public awareness regarding Obama’s lawless, open-borders policies, and assist states, localities, and the taxpaying-public across the nation who must bear this unfair burden caused by unregulated immigration.”", "\n\nFollow Jonah Bennett on Twitter\n\nSend tips to jonah@dailycallernewsfoundation.org.", "\n\nContent created by The Daily Caller News Foundation is available without charge to any eligible news publisher that can provide a large audience. ", "For licensing opportunities of our original content, please contact licensing@dailycallernewsfoundation.org." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.004807692307692308, 0.007407407407407408, 0.0038022813688212928, 0, 0.00411522633744856, 0, 0, 0, 0.031413612565445025, 0.0029069767441860465, 0.01048951048951049, 0.03571428571428571, 0.006756756756756757, 0.009259259259259259 ]
0.007778
5
[ { "analysis_explanation": null, "end": 2526, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 2491 }, { "analysis_explanation": null, "end": 2781, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 2742 }, { "analysis_explanation": null, "end": 9, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4 }, { "analysis_explanation": null, "end": 302, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297 }, { "analysis_explanation": null, "end": 324, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318 }, { "analysis_explanation": null, "end": 636, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624 }, { "analysis_explanation": null, "end": 1042, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1037 }, { "analysis_explanation": null, "end": 1719, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1715 }, { "analysis_explanation": null, "end": 1931, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1923 }, { "analysis_explanation": null, "end": 2202, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2188 }, { "analysis_explanation": null, "end": 2267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2262 }, { "analysis_explanation": null, "end": 2465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2445 }, { "analysis_explanation": null, "end": 2526, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2497 }, { "analysis_explanation": null, "end": 2781, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2752 } ]
[ "Q:\n\nHow to Code Sign with multiple timestamps - my stamps get overwritten\n\nProblem\nThough I am getting no error on verbose SignTool (manual) commands on my windows executable, the timestamps get overwritten, and I wish there to be multiple timestamps, is that possible?", "\n\nIf it is possible, then how?", "\nIf it is not possible, and I have to use only 1 single timestamp, then which server would you recommend in the long run? (", "DigiCert is coming to my mind now.)", "\n\nHere's what I tried\nPowerShell function\nfunction sign32exe([string]$arg)\n{\n & 'C:\\Program Files (x86)\\Windows Kits\\10\\bin\\x86\\signtool.exe' sign /fd sha256 /a $arg\n Start-Sleep -Seconds 5\n & 'C:\\Program Files (x86)\\Windows Kits\\10\\bin\\x86\\signtool.exe' timestamp /tr http://timestamp.globalsign.com/?signature=sha2 /td sha256 /v $arg\n Start-Sleep -Seconds 5\n & 'C:\\Program Files (x86)\\Windows Kits\\10\\bin\\x86\\signtool.exe' timestamp /tr http://sha256timestamp.ws.symantec.com/sha256/timestamp /td sha256 /v $arg\n Start-Sleep -Seconds 5\n & 'C:\\Program Files (x86)\\Windows Kits\\10\\bin\\x86\\signtool.exe' timestamp /tr http://time.certum.pl /td sha256 /v $arg\n}\n\nPowerShell output\nI get positive output from SignTool, but the timestamps get overwritten by each invocation (restructured for better readability):\nThe signing process goes well:\nDone Adding Additional Store\nSuccessfully signed: .\\my.exe\n\nFollowed by the timestamping, which individually go without a problem:\nSuccessfully timestamped: .\\my.exe\nNumber of files successfully timestamped: 1\nNumber of errors: 0\n\nSuccessfully timestamped: .\\my.exe\nNumber of files successfully timestamped: 1\nNumber of errors: 0\n\nSuccessfully timestamped: .\\my.exe\nNumber of files successfully timestamped: 1\nNumber of errors: 0\n\nImage for the words\n\nRationale\nThe certificate I own is from Certum authority, called Standard Code Signing. ", "Since it expires soon, I'd like to ensure my windows executable does not get into trouble after my signing certificate expiration. ", "I thought more timestamps would be better in case one server becomes unavailable in time or the service stops, an example of this could be that Certum authority would disappear for instance.", "\n\nAdditional detail\nMy ideal solution should solve the above problem:\n\nby timestamping with more than one server; or\nby quoting some credible source on that it is not possible\n\nA:\n\nThis question looks like a duplicate of Code Signing with Multiple Timestamp servers.", "\nThe short answer is: no, it's not possible to timestamp more than once.", "\nIt's possible however to sign with different algorithms (dual-sign), but it means that there will be two separate signatures generated, each with its own timestamp.", "\nWhat would multiple timestamps mean, actually? ", "A timestamp tells the consumer when the asset was signed. ", "It's not possible that the single action of signing was done in two separate moments. ", "Unless there are two different signatures applied, each with own timestamp (dual-sign).", "\nAlso, let's imagine that it's possible to apply two timestamps to the same signature. ", "Let's say that the file is signed on 1/1/2019, the first timestamp is applied on 2/1/2019, and the second timestamp on 3/3/2020. ", "What would it mean for a client that verifies the signature? ", "It wouldn't really make much sense, would it? ", "Only the latter timestamp really matters, if the certificate is still valid - that's why SignTool overrides the previous timestamp.", "\nBtw, there is a lot of articles about timestamping in general, none of them mentions assigning more than one timestamp to a certificate, e.g.:\n\nhttps://www.digicert.com/blog/best-practices-timestamping/\nhttps://www.ssl2buy.com/wiki/timestamping-why-digital-signatures-need-timestamps\nhttps://www.secureblackbox.com/kb/articles/11-TimeStamping.rst\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0.006423982869379015, 0, 0.005263157894736842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008595988538681949 ]
0.001014
5
[ { "analysis_explanation": null, "end": 3135, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3127 }, { "analysis_explanation": null, "end": 3173, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3165 }, { "analysis_explanation": null, "end": 781, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 734 }, { "analysis_explanation": null, "end": 965, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 910 }, { "analysis_explanation": null, "end": 1115, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 1094 }, { "analysis_explanation": null, "end": 3091, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 3083 }, { "analysis_explanation": null, "end": 3616, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 3558 }, { "analysis_explanation": null, "end": 3697, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 3617 }, { "analysis_explanation": null, "end": 3760, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 3698 } ]
[ "Downregulation of miR-384-5p attenuates rotenone-induced neurotoxicity in dopaminergic SH-SY5Y cells through inhibiting endoplasmic reticulum stress.", "\nEndoplasmic reticulum (ER) stress has been linked to the pathogenesis of Parkinson's disease (PD). ", "However, the role of microRNAs (miRNAs) in this process involved in PD remains poorly understood. ", "Recent studies indicate that miR-384-5p plays an important role for cell survival in response to different insults, but the role of miR-384-5p in PD-associated neurotoxicity remains unknown. ", "In this study, we investigated the role of miR-384-5p in an in vitro model of PD using dopaminergic SH-SY5Y cells treated with rotenone. ", "We found that miR-384-5p was persistently induced by rotenone in neurons. ", "Also, the inhibition of miR-384-5p significantly suppressed rotenone-induced neurotoxicity, while overexpression of miR-384-5p aggravated rotenone-induced neurotoxicity. ", "Through bioinformatics and dual-luciferase reporter assay, miR-384-5p was found to directly target the 3'-untranslated region of glucose-regulated protein 78 (GRP78), the master regulator of ER stress sensors. ", "Quantitative polymerase chain reaction and Western blotting analysis showed that miR-384-5p negatively regulated the expression of GRP78. ", "Inhibition of miR-384-5p remarkably suppressed rotenone-evoked ER stress, which was evident by a reduction in the phosphorylation of activating transcription factor 4 (ATF4) and inositol-requiring enzyme 1 (IRE1α). ", "The downstream target genes of ER stress including CCAAT/enhancer-binding protein-homologous protein (CHOP) and X box-binding protein-1 (XBP-1) were also decreased by the miR-384-5p inhibitor. ", "In contrast, overexpression of miR-384-5p enhanced ER stress signaling. ", "In addition, knockdown of GRP78 significantly abrogated the inhibitory effect of miR-384-5p inhibitors on cell apoptosis and ER stress signaling. ", "Moreover, we observed a significant increase of miR-384-5p expression in primary neurons induced by rotenone. ", "Taken together, our results suggest that miR-384-5p mediated ER stress by negatively regulating GRP78 and that miR-384-5p inhibition might be a novel and promising approach for the treatment of PD." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.01, 0, 0, 0, 0, 0, 0.004761904761904762, 0, 0.004651162790697674, 0.010362694300518135, 0.013888888888888888, 0.00684931506849315, 0, 0 ]
0.003368
5
[]
[ "Posts Tagged ‘Art Gallery’\n\nThe design package for NIGHTFALL has now been modified. ", "Strictly speaking this is not a revamp as I did not change the design when I upgraded the package. ", "The Cover has been been tweaked slightly to provide a more saturated color scheme and, of course, the Tray Reverse has the new design.", "\n\nThe biggest change, however, is the Tray Insert which has been completely redone from scratch. ", "The original wasn’t bad but in hindsight I thought it looked static and too dependent on the Cover to pull off. ", "The new version looks creepier, has its own scheme, and definitely is an improvement.", "\n\nOn the plate is still MINDWEBS (stalled at 3 of the 4 images necessary) and ZERO HOUR (I’m hoping to batch replacements/new submissions).", "\n\nAlso, in the terms of OTR series, I’m planning to revise CBS RADIO WORKSHOP in some form, update SIX SHOOTER, and try finish lingering designs for LIGHTS OUT, PLAYS FOR AMERICANS, and finally give HAVE GUN WILL TRAVEL (one of my earliest submissions) a much needed overhaul. ", "Not to mentions lots of other goodies.", "\n\nThis is one of the packages I was never too fond of — the cover was original but I never had a decent quality scan for the central figure (hence the reversed out effect). ", "The other four images were really just cut-and-pastes, a design procedure I’m loathe to do but was often stuck with when I was originally learning Photoshop.", "\n\nFor the new package I’ve updated the Cover (with a better central image, a better logo, and the OTRR logo more prominent). ", "The Reverse is nice haunting image combining two of my favorite Bradbury book covers (kudos to anyone who can name them). ", "The Label is MUCH more in telling with the series name. ", "The Tray Insert is a nice experiment with what I like to call STATIC SHOCK. ", "And the Tray Reverse is, of course, the revamped design I’m now using on all single- and double-CD collections." ]
{ "pile_set_name": "Pile-CC" }
[ 0.011904761904761904, 0, 0.007462686567164179, 0, 0.008928571428571428, 0, 0.007194244604316547, 0.007220216606498195, 0, 0, 0.006369426751592357, 0, 0.00819672131147541, 0, 0, 0 ]
0.00358
5
[ { "analysis_explanation": null, "end": 60, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51 }, { "analysis_explanation": null, "end": 696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 687 }, { "analysis_explanation": null, "end": 1587, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1579 } ]
[ "Oddly Enough\n\nNaked Cowboy runs for President\n\nPosted\n\nOct 7 - The man known as the \"Naked Cowboy\" announces his plan to challenge Barack Obama in 2012 for President of the United States. ", "Manoush Zomorodi reports." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.010638297872340425, 0.04 ]
0.025319
5
[ { "analysis_explanation": null, "end": 60, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55 }, { "analysis_explanation": null, "end": 143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131 }, { "analysis_explanation": null, "end": 151, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147 }, { "analysis_explanation": null, "end": 186, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169 }, { "analysis_explanation": null, "end": 204, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188 } ]
[ "Field of the Invention\nThe present invention relates to a method for producing dies for extruding ceramic honeycomb structural bodies which are used for heat exchangers, filters and catalyst carriers for purifying exhaust gases from internal combustion engines, more particularly, the invention relates to dies having an abrasive-resistant material coated on the surface thereof by chemical vapor deposition (CVD)." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0.0024154589371980675 ]
0.002415
5
[]
[ "With 1,240 identified species, bats constitute approximately 25% of all the mammalian species worldwide \\[[@r17]\\]. ", "The fruit bats of the family *Pteropodidae*, especially species belonging to the genus *Pteropus*, sometimes aggregate in large populations, with around hundreds of thousands per colony \\[[@r24]\\]. ", "Their geographical distribution ranges from tropical and subtropical to temperate regions of Asia, Australia and islands in the Indian Ocean and western Pacific Ocean \\[[@r2], [@r26]\\]. ", "Pteropodid bats play a role in propagation of at least 289 plant species, which is important for the maintenance of ecosystem health \\[[@r10]\\]. ", "However, they are suspected to be hosts of zoonotic viruses, such as filoviruses (Ebola and Marburg virus), which were a serious problem in Africa; henipaviruses (Hendra and Nipah virus), which had outbreaks in Asia and Australia; and lyssavirus (Australian bat lyssavirus), which is widespread in Australia \\[[@r13]\\]. ", "To estimate the risk of disease emergence, it is necessary to understand the behavioral ecology of wildlife reservoirs. ", "However, knowledge on the behavior of bats is still limited. ", "Only about 5% of all bat studies focus on its ethology \\[[@r4]\\]. ", "This information highlights the need of a bat behavioral study, especially in a natural condition.", "\n\nIn 2008--2009, filovirus infection was found in domestic pigs and pig farm workers in the Philippines \\[[@r22]\\]. ", "The serological evidence of Ebola Reston virus infection strongly suggested that the endangered species, *Acerodon jubatus*, is a host of this virus \\[[@r16]\\]. *", "A. jubatus* (the golden-crowned flying fox) is a species endemic to the Philippines, with its individual body weight ranging from 0.73 to 1.00 kg \\[[@r9], [@r31]\\]. ", "Its population has declined by more than 50% in the last few decades, owing to habitat loss \\[[@r21]\\]. ", "A nocturnal behavioral study on this species supported the fact that they are nomadic animals with high flight capacity (maximum around 87.04 km per night), and their movement patterns depend on the distribution of food resources \\[[@r9]\\]. ", "Long-distance flight ability is a key factor in virus transmission, because it enables the bats to come in contact with various animals utilizing in the same foraging area. ", "Comparison between the day- and night-time behavioral data is important for the conservation of bats and the prediction of disease outbreak. ", "However, there have been no studies on the diurnal behavior of the golden-crowned flying fox. ", "Therefore, the activity of *A. jubatus,* living in a mixed-species roost with *Pteropus vampyrus*, at the Subic Bay Freeport Zone, the Philippines, was investigated using instantaneous scan sampling and all-occurrence focal sampling techniques. ", "In most animals, the activity patterns are influenced by environmental factors, such as temperature and/or light intensity \\[[@r3]\\]. ", "Therefore, the environmental factors were measured in parallel with the behavioral observations.", "\n\nMATERIALS AND METHODS {#s1}\n=====================\n\nStudy site\n----------\n\nThe field work was undertaken at a mixed-species roost of *A. jubatus* and *P. vampyrus* in the Subic Bay Freeport Zone, the Philippines (14° 47′ 13.47′′ N, 120° 16′ 39.25′′ E) ([Fig. ", "1](#fig_001){ref-type=\"fig\"}Fig. ", "1.Location of the study site at the Subic bay forest reserve area, the Philippines (14° 47′ 13.47′′ N, 120° 16′ 39.25′′ E).), ", "under the permission of the Subic Bay Metropolitan Authority (Approval number: ECD-RPD-16-0767). ", "The observation period was from 8 to 17 January, 2017, amid the rainy season. ", "The population size of the two bats species was estimated by bounded count method. ", "Estimated population size=2n~max~−n~max-1~, where n~max~ is the maximum counted number and n~max-1~ is the second maximum counted number \\[[@r32]\\]. ", "The majority of the roost was *P. vampyrus* (7,200 individuals), whereas *A. jubatus* comprised a small proportion of the mixed-species population (624 individuals).", "\n\nData collection\n---------------\n\nTo examine the variation in diurnal activity of *A. jubatus,* quantitative behavioral data were collected by instantaneous scan sampling---a group scan, during which the behaviors of all individuals in the group were noted in a short period of time \\[[@r1]\\]. ", "The presence of observer might have an influence on the behavior of the flying foxes. ", "To minimize this, the observation point was set far away from the roosting trees, at over 20 m. We were not able to observe the whole group (containing 624 individuals) within a short time period, and therefore, we selected a subgroup containing 50 bats as the subject group for sampling. ", "The group scans were conducted during 07:00--18:00 hr on each observation day. ", "Each 1-hr recording session was divided into 20-min sampling intervals, yielding 3 sampling points per recording session. ", "At each sampling point, the behavior of 50 individuals in the subject group was briskly recorded, one by one. ", "By this technique, we got information about the activities of the scanned-group members at a particular period of time. ", "Furthermore, the environmental data, such as ambient temperature, relative humidity, light intensity and wind speed, were measured by Light Meter (LX-2000SD, Custom Corp., Tokyo, Japan) and Hot Wire Anemometer (WS-03SD, Custom Corp.), at each sampling point of the scan sampling.", "\n\nTo investigate the sex differences in activity budgets, we performed all-occurrence focal sampling, which concentrates on one individual during a continuous recording period. ", "Data collection was done during 07:00--18:00 hr, on six adult males and six adult females using binocular as a tool for observation. ", "Sexes of the bats were identified through morphologic observation at genital area. ", "The duration of each recording session was 1 hr, with a 30-min break between consecutive sessions, yielding 7.5 hr of observation period for each focal subject. ", "Capturing and marking of the focal bats might alter the actual behavior of the flying fox. ", "Therefore, we used naturally distinctive markings, such as damaged ears, scars or holes on wing membranes to distinguish the subjects from one another. ", "In the event of a subject going out of sight, a new focal subject was randomly chosen, immediately. ", "This technique provided the accurate duration of behavioral data, which enables us to compare the activity budget of male and female bats. ", "The behavioral units and categories are described in [Table 1](#tbl_001){ref-type=\"table\"}Table 1.Ethogram used to score the instantaneous scan sampling and all occurrence focal samplingBehavioral categoryBehavioral unitDescriptionContextSexual activitiesMatingMale grasp-restraints the female from behind, biting female's neck and inserts the penis into the vaginaReproductionCourtshipMale approaches the female and licks genital area of femaleReproductionMasturbationMale starts licking its penis, leading to erection, and continuously licks the erect penis for more than one min, without urination and ejaculationServes as masturbatory function, mostly found when male is rejected for mating by a femaleSelf-maintenanceSelf-groomingLicking wing membrane or occasional bouts of genital tract licking or scratching body part including headCleaning function or wing membrane maintenanceThermoregulationWing flappingFanning the body with wing membraneReducing body temperaturePositive social behaviorMaternal careNewborn attached to or being carried by female or juvenile grooming by femaleMostly found during lactation period, establishes social bond between the mother and offspringMutual groomingLicking one another's body, excluding the licking of juvenile by its mother or rubbing of the neck and headAssociated with group recognition, bonding within the groupPlayMock-biting or mock-wrestling with an absence of vocalizationUsually occurs among young malesNegative social behaviorAggressionAggressive vocalization, wing shaking, chasing, biting and/or fighting between individualsSelf-defense from threats or female rejecting a maleHang alertHanging bipedally or monopedally with eyes open and ear movement aroundTerritorial behaviorTerritory defenseAggressive vocalization, wing shaking, chasing, biting and/or fighting towards invaderDefense of territory that is normally performed by the harem-holding maleScent markRubbing neck or shoulder along tree branchesMarking territoryWing spreadingWings widely opened and extendedRelated to the defense of territory or threatening display to others, mostly performed by malesNon-categorizedSleepingEyes closed and wing wrapped around the bodyHang relaxHanging bipedally or monopedally with wings folded or wings opened and eyes open looking aroundMovementMoving along a branch or trunk without flyingExcretionTurning the body upright to urinate and/or defecateThese behavioral units were described according to the postures and were grouped into behavioral categories according to their function, following Connell *et al*. ", "\\[[@r7]\\], Nelson \\[[@r25]\\] and Hengjan *et al*. ", "\\[[@r14]\\].. Furthermore, the roost-switching events between *P. vampyrus* and *A. jubatus* were recorded to determine the physical inter-species interactions.", "\n\nStatistical analysis\n--------------------\n\nNormality of the data was examined using Kolmogorov-Smirnov Test. ", "When the distribution of raw data was not normal, non-parametric statistics were used for the analysis of behaviors. ", "The analysis and calculation were conducted separately for each sampling method (scan and focal sampling).", "\n\nFor scan sampling, Kruskal-Wallis test was performed for nine behavioral units, i.e., sleeping, self-grooming, wing spreading, movement, wing flapping, hanging relaxation, aggression, mating and courtship, to investigate how these behaviors vary with the time of the day. ", "Pearson correlation coefficients were then used to test the possible relationships between the daily variation in daytime behaviors and the environmental factors. ", "The results are presented as average percentage of the number of bats ± standards errors (SE). ", "To calculate the average percentage of bats for each behavioral unit, the number of bats displaying a particular behavior in a 1-hr recording session was grouped, and then, the average was calculated for each session. ", "The average number of bats for each behavioral unit (n) was divided by the total number of observed bats at each sampling point (N=50) and converted into percentage (n/N ×100).", "\n\nFor focal sampling, Mann-Whitney *U* Tests were performed for five behavioral categories and the non-categorized behaviors, in order to compare the activity budgets of adult males and females. ", "Results are presented as average percentage of time ± standards errors (SE). ", "To calculate the average percentage of time spent for each activity, the average duration of time (in sec) that the focal bats allocated to each behavioral category (t) was divided by the total duration of observation (in sec) for one observation day (T=27,000 sec) and converted to percentage (t/T ×100).", "\n\nSignificant correlations and differences for all tests were determined at *P*\\<0.05 level (IBM SPSS 18.0).", "\n\nRESULTS {#s2}\n=======\n\nDiurnal variations in behavior\n------------------------------\n\nThe most common behavior was sleeping; on an average, 76.3 ± 3.0% of the bats exhibited sleeping behavior throughout the day, followed by wing flapping (5.0 ± 2.5%), self-grooming (4.2 ± 0.6%), hanging relaxation (3.4 ± 0.7%), wing spread (2.9 ± 0.4%), movement (2.4 ± 0.5%), mating/courtship (2.4 ± 0.2%), aggression (1.9 ± 0.4%), hanging alert (1.2 ± 0.6%), excretion (0.1 ± 0.03%) and scent marks (0.05 ± 0.02%).", "\n\nThe statistical analysis showed a significant effect of time on the number of bats performing the following behaviors: sleeping (χ^2^=29.3, *d.f.*=10, *P*=0.001), wing flapping (χ^2^=52.2, *d.f.*=10, *P*\\<0.001), self-grooming (χ^2^=26.2, *d.f.*=10, *P*=0.003), hanging relaxation (χ^2^=55.3, *d.f.*=10, *P*\\<0.001), aggression (χ^2^=46.7, *d.f.*=10, *P*\\<0.001), mating/courtship (χ^2^=40.0, *d.f.*=10, *P*\\<0.001) and movement (χ^2^=49.6, *d.f.*=10, *P*\\<0.001) ([Fig. ", "2](#fig_002){ref-type=\"fig\"}Fig. ", "2.The variation of sleeping (A), wing flapping (B), self-grooming (C), hang relaxation (D), mating/courtship (E), aggression (H) and movement (G) during 07:00--18:00 hr.). ", "The highest frequency of sleeping was noted during 17:00--18:00 hr, whereas the lowest was recorded during 12:00--13:00 hr. ", "Wing flapping was observed only in late morning and afternoon (11:00--16:00 hr), and was higher during 12:00--14:00 hr than during the rest of this period. ", "Self-grooming and hanging relaxation showed the same trend, peaking during 08:00--10:00 hr, and then gradually decreasing towards the evening. ", "Mating/courtship, aggression and movement behaviors showed similar temporal patterns during the daytime. ", "The frequencies of these behaviors were the highest during 09:00--10:00 hr and tended to decrease steadily from this period until the evening ([Fig. ", "2](#fig_002){ref-type=\"fig\"}).", "\n\nThe analysis showed a significant effect of time on the number of bats exhibiting solitary behaviors (χ^2^=60.6, *d.f.*=10, *P*\\<0.001), social behaviors with physical contact (χ^2^=50.3, *d.f.*=10, *P*\\<0.001) and social behaviors with no physical contact (χ^2^=50.9, *d.f.*=10, *P*\\<0.001). ", "The flying foxes tended to perform the solitary behaviors (e.g., sleeping, self-grooming, movement, wing flap, excretion, hang relax) in the afternoon section, compared with the morning section, whereas the social behaviors with direct contact (aggressive behavior with biting and/or fighting between individuals and mating/courtship behaviors) and those without physical contact (aggressive vocal, wing spread, hanging alert and scent marks) were more frequent during the morning, compared with the afternoon ([Fig. ", "3](#fig_003){ref-type=\"fig\"}Fig. ", "3.The percentage of bats perform solitary behavior, social behavior with direct contact and Social behavior with non-direct contact.).", "\n\nHanging alert is an excited behavior, which is seen when the animals were disturbed. ", "In this study, we found that the golden-crowned flying foxes showed hanging alert behavior when they were faced with anthropogenic exposure by tourists and/or predation by aerial predators (bird in the genus *Spilornis*), but there was no disturbance by non-human primates. ", "This is in contrast to our previous study on *P. vampyrus* in Indonesia \\[[@r14]\\], wherein the roosting site of the flying foxes was invaded by non-human primates (*Trachypithecus auratus*), an average 3.3 ± 0.5 times a day. ", "Therefore, hanging alert was not included in the statistical analysis for behavioral variation with the time of the day. ", "Excretion and scent masking behaviors were not analyzed due to their rare occurrence.", "\n\nThe effect of environmental factors on the behaviors of flying foxes\n--------------------------------------------------------------------\n\nSelf-grooming behavior showed a positive correlation with relative humidity (r=0.304; *P*\\<0.001). ", "Wing flapping showed a positive correlation with the ambient temperature (r=0.223; *P*=0.001) and light intensity (r=0.263; *P*\\<0.001), but had a negative relationship with relative humidity (r= −0.350; *P*\\<0.001). ", "Other correlations among the environmental factors and behaviors were not significant (*P*\\>0.05).", "\n\nDifference in activity budget between males and females\n-------------------------------------------------------\n\nIn total, the behavioral data of six males and six females were obtained. ", "The amount of time spent on some behavioral categories was significantly different between adult males and females. ", "Resting state (sleeping behavior) was the most common activity for both adult males and females, with females allocating more time for rest than the males (males=83.0% and females=90.0%). ", "Adult males spent more time in sexual activities than the females (males=1.80% and females=0%). ", "When a male was rejected by a female, the male chased the female persistently for an average 1.1 ± 0.2 min, until the completion of copulation, which lasted for 1--2 min. ", "Furthermore, males spent more time in thermoregulation (males=1.8% and females=0.3%), territorial behaviors (males=2.4% and females=0%) and movement (males=0.8% and females=0.1%) than the females. ", "However, the amount of time spent on self-maintenance, negative social behaviors, hang relax and excretion was not significantly different between males and females. ", "Positive social behavior was not found in either males or females ([Table 2](#tbl_002){ref-type=\"table\"}Table 2.Average ± standard error propotion of time spent for each activity in male and female bats, during 07:00 to 18:00 hrBehavioral categoryBehavioral unitMale (n=5)Female (n=5)Z (*P*-value)Proportion of time for behavioral unit (%)Total (%)Proportion of time for behavioral unit (%)Total (%)Sexual activitiesMating0.16 ± 0.101.80 ± 0.2900−3.0 (0.002)Courtship1.04 ± 0.200Masturbation0.16 ± 0.100Self-maintenanceSelf-grooming1.77 ± 0.301.77 ± 0.302.5 ± 0.402.5 ± 0.40−1.4 (0.15)ThermoregulationWing flapping1.8 ± 0.501.8 ± 0.500.3 ± 0.200.3 ± 0.20−3.5 (0.001)Positive social behaviorMaternal care00000Mutual grooming00Play00Negative social behaviorAggression0.28 ± 0.061.37 ± 0.060.1 ± 0.061.6 ± 0.27−1.9 (0.055)Hang alert1.09 ± 0.140.5 ± 0.20Territorial behaviorTerritory defense0.05 ± 0.042.4 ± 0.6000−3.0 (0.002)Scent mark0.05 ± 0.030Wing spreading2.3 ± 0.600Non-categorizedSleeping83.0 ± 2.4990.0 ± 0.90−3.2 (0.001)Hang relax6.9 ± 1.505.6 ± 0.70−0.4 (0.631)Movement0.8 ± 0.230.1 ± 0.00−2.32 (0.02)Excretion0.01 ± 0.000.02 ± 0.00−0.6 (0.493)Z=Mann-Whitney *U* Test; *P*\\<0.05 two-tailed test.). ", "The difference in the time spent on thermoregulation seemed related to the location of the observed bats on the roosting trees; males tended to perch on exposed branches (with fewer leaves) and/or on treetops, whereas the females gathered in the center of the trees where they were protected from sunlight.", "\n\nRoost switching between P. vampyrus and A. jubatus\n--------------------------------------------------\n\nThe group of golden-crowned flying foxes seemed to select a roosting tree separate from those occupied by the group of *P. vampyrus*. ", "In other words, there was inter-specific roost-segregation between these two bats species. ", "However, roost-switching events were observed between these two species. ", "On an average, 30.4 ± 4.7 bats of both species switched to the roosting trees occupied by the other species, during a day. ", "However, the observers observed no body contact between *P. vampyrus* and *A. jubatus.*", "\n\nDISCUSSION {#s3}\n==========\n\nThe patterns of daytime activity\n--------------------------------\n\nIn this study, we described the diurnal patterns of activity in the golden-crowned flying foxes, as well as their activity budget in a natural habitat. ", "The most frequently observed activity in the group of flying foxes was sleeping, followed by wing flapping, self-grooming, hanging relaxation, wing spread, movement, mating/courtship, aggression, hanging alert, excretion and scent marks. ", "Connell *et al.* ", "\\[[@r7]\\] and Hengjan *et al.* ", "\\[[@r14]\\], working on *Pteropus poliocephalus* and *P. vampyrus*, respectively, also found that sleeping (resting state) was the most dominant behavior, with the highest frequency in late evening, compared with the other times in a day. *", "A. jubatus* also showed this tendency.", "\n\nWing flapping is a common behavior in the flying fox living in tropical regions, as they are always exposed to severely high ambient temperatures during daytime. ", "This behavior had a strongly positive correlation with the ambient temperature and light intensity, i.e., the flying foxes performed wing flapping more frequently when the ambient temperature and light intensity are higher, especially around noon and early afternoon. ", "Flying foxes lack sweat glands for body temperature regulation \\[[@r29]\\], and wing flapping is therefore used as a thermoregulatory behavior to lower body temperature. ", "Ochoa-Acun and Kunz \\[[@r27]\\] showed that *Pteropus hypomelanus* tended to increase the frequency of wing fanning when the ambient temperature reached 36°C, thus, exceeding the range of their thermoneutral zone. ", "This gets further support from the fact that wing flapping was rarely observed in the flying foxes living in temperate zones \\[[@r7]\\].", "\n\nBats are known to be parasitized by mites, ticks, bugs, fleas and flies \\[[@r12]\\]. ", "Bat flies (*Cyclopodia horsfieldi*) are blood-sucking parasites found on the fur and wing membrane of the flying fox species living in South-East Asia \\[[@r28]\\]. ", "These parasites have negative effects on the physical condition of their hosts, by delaying the timing of reproduction in adults and/or reducing the growth rate of the young ones \\[[@r23]\\]. ", "In bats, self-grooming is behavioral strategy to reduce parasite loading on body, which tends to be higher during the rainy season \\[[@r11], [@r19]\\]. ", "This would explain the positive correlation between the frequency of self-grooming and humidity found in this study. ", "This behavior typically occurred early in the morning, consistent with the study of diurnal variation in self-grooming behavior of *P. vampyrus* and *P. poliocephalus* \\[[@r7], [@r14]\\].", "\n\nThere is little information available on the mating behavior of the golden-crowned flying foxes. ", "The mating systems have been documented for only 9.2% of the total Pteropid bat species \\[[@r8]\\]. ", "Most of flying foxes are polygynous, with mating groups that contain a single male and multiple females, also known as harems. ", "In Australian *Pteropus* (*P. Alecto, P. gouldi, P. poliochephalus*and*P. scapulatus*), males set up their mating territory around the females, just prior to or the beginning of the breeding season, and the male reproductive success depends on the location of the territory on a roosting tree \\[[@r20], [@r25]\\]. ", "To set up mating territories, males rub their neck and shoulder along tree branches, which is referred to as scent-mark behavior. ", "This study found that male bats usually show scent-mark behavior in the late evening before the foraging fly-out. ", "Compared with the other behaviors, the frequency of mating/courtship behavior was considerably low. ", "However, the frequency of mating/courtship behavior seemed to vary during the day, showing the highest rate during early to middle morning, and tended to decrease gradually from noon until the evening. ", "A similar pattern was found in aggressive and movement behaviors. ", "Males moved towards females and then sniffed or licked around the genital area of females. ", "Females always repelled the males by showing aggressive behaviors, such as screaming or wing shaking towards the male and/or moving away. ", "These behaviors normally occurred when mating/courtship behaviors were initiated by males. ", "If a male was rejected by a female, the male chased the female persistently (an average 4.6 ± 1.1 min) until the completion of copulation. ", "This pattern of mating/courtship behavior was also recorded in the Indian flying fox *Pteropus giganteus*; however, males of this bat species spent 20--40 min to chase the females before his copulation was completed \\[[@r18]\\].", "\n\nDifference in the activity budget between males and females\n-----------------------------------------------------------\n\nBats spend half their lives living in roosts, where they mate, bear offspring and exhibit a social life. ", "The amount of time spent on these activities has direct effects on the energetic demands and reproductive success of the animals \\[[@r33]\\]. ", "To balance their energy budgets, bats need to modulate their activity patterns in accordance with the environmental conditions. ", "The golden-crowned flying foxes spend a majority of the daytime sleeping. ", "Due to long-distance flights, the energetic demand for flight in flying foxes is 15 times higher than that of the resting state \\[[@r5]\\]. ", "This could be the reason why bats need to save the energy for foraging at night by sleeping during the day. ", "Compared with a previous study on *P. vampyrus* living in Leuweung Sancang conservation area, Indonesia \\[[@r14]\\], *A. jubatus* in this study site spent a greater amount of the daytime sleeping. ", "This could be explained by lesser disturbance by other wildlife in this study area, compared with *P. vampyrus*, which were faced with high disturbance by non-human primates during daytime \\[[@r14]\\]. ", "We also found significant differences in the activity budget for sleeping, movement, sexual activity, thermoregulation and territorial behaviors between sexes. ", "In polygynous species, the male reproductive strategies are involved by male-male competition and/or territory defense \\[[@r6]\\]. ", "These could be a reason why male bats allocated a greater proportion of their time for sexual activity and territorial behavior than the females. ", "The difference in time spent for thermoregulation behavior could be explained by the roosting position of males and females. ", "The hanging position on branch determined the amount of exposure to sunlight. ", "Males tended to hang on the exposed branches or on treetops, whereas females roosted in more covered or central positions of the colony. ", "Holmes suggested that the optimal roosting location would be the center of the colony and a shaded place, because it is safer from predation when flying foxes congregate in large numbers \\[[@r15]\\]. ", "Therefore, males seemed to be exposed to a stronger sunlight and predation risk than the females.", "\n\nInterspecific interactions in the mixed-species colony\n------------------------------------------------------\n\nDue to their small population, *A. jubatus* might need to live with the big population of *P. vampyrus*, because living in a large group enhances the protection from predators \\[[@r30]\\].", "\n\nEven though the large flying foxes and the golden-crowned flying foxes occupied the same habitat areas, they showed a clear habitat segregation among trees. ", "The roosting segregation between bat species could be a strategy to avoid interspecies breeding and competition. ", "However, a high rate of roosting shifts between the flying fox species was observed in this study site. ", "We could not find direct physical contacts between *P. vampyrus* and *A. jubatus*. ", "However, parasite exchange between species is possible, given the roost shifts. ", "For example, if a parasite detaches from the body of *P. vampyrus*, it is possible for the parasite to re-climb the tree and attach to *A. jubatus*. ", "Moreover, *A. jubatus* must be exposed to the aerosol derived from the body fluid and/or fecal wastes of *P. vampyrus*, because of their neighboring positions after roost exchange. ", "Therefore, there is a potential risk of the transmission of pathogens between the two bat species in Subic Bay conserved area.", "\n\nWe thank the Ecology center, Subic Bay Metropolitan Authority, for providing the ecological data in the study site. ", "This project was partly supported by the Japan Society for the Promotion of Science.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0.008620689655172414, 0.005050505050505051, 0.010752688172043012, 0.006896551724137931, 0.009375, 0, 0, 0.015151515151515152, 0, 0.008620689655172414, 0.012345679012345678, 0.012121212121212121, 0.009615384615384616, 0.004149377593360996, 0, 0.0070921985815602835, 0, 0, 0.007462686567164179, 0, 0.007692307692307693, 0, 0.007936507936507936, 0.010309278350515464, 0, 0, 0.006711409395973154, 0, 0.003389830508474576, 0, 0, 0, 0, 0, 0, 0.014336917562724014, 0, 0, 0, 0, 0, 0, 0, 0, 0.0003883495145631068, 0.04, 0.006289308176100629, 0.009009009009009009, 0, 0, 0.0036496350364963502, 0, 0, 0, 0.005681818181818182, 0.005128205128205128, 0, 0.009836065573770493, 0.009259259259259259, 0, 0.004228329809725159, 0, 0, 0, 0, 0, 0, 0.006711409395973154, 0, 0.003389830508474576, 0.0019342359767891683, 0, 0.007462686567164179, 0, 0, 0.004424778761061947, 0, 0, 0, 0.004608294930875576, 0, 0, 0, 0, 0, 0, 0, 0, 0.0033195020746887966, 0, 0.0041841004184100415, 0, 0, 0, 0, 0, 0, 0, 0.03225806451612903, 0.0041841004184100415, 0, 0, 0, 0.005917159763313609, 0.004694835680751174, 0.007407407407407408, 0.011627906976744186, 0.006134969325153374, 0.005235602094240838, 0.013245033112582781, 0, 0.010752688172043012, 0, 0.020202020202020204, 0, 0.012779552715654952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004405286343612335, 0, 0.0070921985815602835, 0, 0, 0.007194244604316547, 0, 0.01020408163265306, 0.004975124378109453, 0, 0.007692307692307693, 0, 0, 0, 0, 0.005025125628140704, 0, 0.0033333333333333335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011904761904761904, 0 ]
0.003204
5
[ { "analysis_explanation": null, "end": 411, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407 }, { "analysis_explanation": null, "end": 422, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413 }, { "analysis_explanation": null, "end": 454, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 438 }, { "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": 744, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 737 }, { "analysis_explanation": null, "end": 791, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 785 }, { "analysis_explanation": null, "end": 814, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 808 }, { "analysis_explanation": null, "end": 860, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 856 }, { "analysis_explanation": null, "end": 874, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 865 }, { "analysis_explanation": null, "end": 902, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 892 }, { "analysis_explanation": null, "end": 952, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 943 }, { "analysis_explanation": null, "end": 1318, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1314 }, { "analysis_explanation": null, "end": 1671, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1660 }, { "analysis_explanation": null, "end": 1821, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1801 }, { "analysis_explanation": null, "end": 2635, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2608 }, { "analysis_explanation": null, "end": 2652, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2641 }, { "analysis_explanation": null, "end": 3143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3132 }, { "analysis_explanation": null, "end": 3175, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3148 }, { "analysis_explanation": null, "end": 3192, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3181 }, { "analysis_explanation": null, "end": 3318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3309 }, { "analysis_explanation": null, "end": 3355, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3344 }, { "analysis_explanation": null, "end": 3549, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3528 }, { "analysis_explanation": null, "end": 3572, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3556 }, { "analysis_explanation": null, "end": 4693, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4678 }, { "analysis_explanation": null, "end": 4728, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4724 }, { "analysis_explanation": null, "end": 4770, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4764 }, { "analysis_explanation": null, "end": 5248, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5243 }, { "analysis_explanation": null, "end": 5255, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5250 }, { "analysis_explanation": null, "end": 5570, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5558 }, { "analysis_explanation": null, "end": 5664, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5659 }, { "analysis_explanation": null, "end": 5789, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5785 }, { "analysis_explanation": null, "end": 5804, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5798 }, { "analysis_explanation": null, "end": 5856, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5850 }, { "analysis_explanation": null, "end": 6966, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6949 }, { "analysis_explanation": null, "end": 8132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8097 }, { "analysis_explanation": null, "end": 8316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8295 }, { "analysis_explanation": null, "end": 8801, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8788 }, { "analysis_explanation": null, "end": 8977, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8971 }, { "analysis_explanation": null, "end": 9084, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9072 }, { "analysis_explanation": null, "end": 9773, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9754 }, { "analysis_explanation": null, "end": 9875, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9870 }, { "analysis_explanation": null, "end": 9896, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9889 }, { "analysis_explanation": null, "end": 10164, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10160 }, { "analysis_explanation": null, "end": 10948, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10929 }, { "analysis_explanation": null, "end": 11321, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11314 }, { "analysis_explanation": null, "end": 11823, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11814 }, { "analysis_explanation": null, "end": 11927, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11918 }, { "analysis_explanation": null, "end": 11974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11965 }, { "analysis_explanation": null, "end": 12027, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12018 }, { "analysis_explanation": null, "end": 12075, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12066 }, { "analysis_explanation": null, "end": 12115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12084 }, { "analysis_explanation": null, "end": 12285, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12270 }, { "analysis_explanation": null, "end": 12355, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12340 }, { "analysis_explanation": null, "end": 12411, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12396 }, { "analysis_explanation": null, "end": 12460, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12448 }, { "analysis_explanation": null, "end": 12474, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12465 }, { "analysis_explanation": null, "end": 12488, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12476 }, { "analysis_explanation": null, "end": 12531, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12516 }, { "analysis_explanation": null, "end": 12659, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12644 }, { "analysis_explanation": null, "end": 12710, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12703 }, { "analysis_explanation": null, "end": 12891, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12876 }, { "analysis_explanation": null, "end": 12958, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12947 }, { "analysis_explanation": null, "end": 13131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13122 }, { "analysis_explanation": null, "end": 13183, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13174 }, { "analysis_explanation": null, "end": 13206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13197 }, { "analysis_explanation": null, "end": 13287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13278 }, { "analysis_explanation": null, "end": 13440, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13431 }, { "analysis_explanation": null, "end": 13475, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13468 }, { "analysis_explanation": null, "end": 13770, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13759 }, { "analysis_explanation": null, "end": 13799, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13786 }, { "analysis_explanation": null, "end": 13938, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13932 }, { "analysis_explanation": null, "end": 14391, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14380 }, { "analysis_explanation": null, "end": 14405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14396 }, { "analysis_explanation": null, "end": 15002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14993 }, { "analysis_explanation": null, "end": 15139, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15130 }, { "analysis_explanation": null, "end": 15219, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15210 }, { "analysis_explanation": null, "end": 16014, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16007 }, { "analysis_explanation": null, "end": 16077, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16069 }, { "analysis_explanation": null, "end": 16667, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16653 }, { "analysis_explanation": null, "end": 16978, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16940 }, { "analysis_explanation": null, "end": 17079, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17072 }, { "analysis_explanation": null, "end": 17390, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17381 }, { "analysis_explanation": null, "end": 17491, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17484 }, { "analysis_explanation": null, "end": 17585, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17566 }, { "analysis_explanation": null, "end": 17989, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17978 }, { "analysis_explanation": null, "end": 18188, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18177 }, { "analysis_explanation": null, "end": 18476, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18471 }, { "analysis_explanation": null, "end": 18547, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18535 }, { "analysis_explanation": null, "end": 18618, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18611 }, { "analysis_explanation": null, "end": 19164, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19153 }, { "analysis_explanation": null, "end": 19296, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19284 }, { "analysis_explanation": null, "end": 19336, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19331 }, { "analysis_explanation": null, "end": 19539, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19532 }, { "analysis_explanation": null, "end": 19787, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19776 }, { "analysis_explanation": null, "end": 19807, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19792 }, { "analysis_explanation": null, "end": 19988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19978 }, { "analysis_explanation": null, "end": 19997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19993 }, { "analysis_explanation": null, "end": 20556, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20546 }, { "analysis_explanation": null, "end": 20762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20753 }, { "analysis_explanation": null, "end": 20895, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20879 }, { "analysis_explanation": null, "end": 21086, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21066 }, { "analysis_explanation": null, "end": 21176, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21165 }, { "analysis_explanation": null, "end": 21556, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21546 }, { "analysis_explanation": null, "end": 21579, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21570 }, { "analysis_explanation": null, "end": 21590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21581 }, { "analysis_explanation": null, "end": 21627, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21592 }, { "analysis_explanation": null, "end": 22070, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22054 }, { "analysis_explanation": null, "end": 22281, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22274 }, { "analysis_explanation": null, "end": 22338, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22315 }, { "analysis_explanation": null, "end": 22382, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22378 }, { "analysis_explanation": null, "end": 22400, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22389 }, { "analysis_explanation": null, "end": 22889, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22882 }, { "analysis_explanation": null, "end": 23000, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22994 }, { "analysis_explanation": null, "end": 23081, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23075 }, { "analysis_explanation": null, "end": 23713, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23706 }, { "analysis_explanation": null, "end": 23942, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23937 }, { "analysis_explanation": null, "end": 23969, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23962 }, { "analysis_explanation": null, "end": 24017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24006 }, { "analysis_explanation": null, "end": 24045, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24029 }, { "analysis_explanation": null, "end": 24074, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24065 }, { "analysis_explanation": null, "end": 24156, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24149 }, { "analysis_explanation": null, "end": 24278, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24266 }, { "analysis_explanation": null, "end": 24355, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24348 }, { "analysis_explanation": null, "end": 25150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25144 }, { "analysis_explanation": null, "end": 25655, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25643 }, { "analysis_explanation": null, "end": 26178, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26166 }, { "analysis_explanation": null, "end": 26343, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26331 }, { "analysis_explanation": null, "end": 26544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26532 }, { "analysis_explanation": null, "end": 26717, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26708 }, { "analysis_explanation": null, "end": 6485, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6481 }, { "analysis_explanation": null, "end": 12121, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 12117 }, { "analysis_explanation": null, "end": 13844, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 13840 }, { "analysis_explanation": null, "end": 16892, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 16882 }, { "analysis_explanation": null, "end": 16989, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 16981 }, { "analysis_explanation": null, "end": 17356, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 17346 } ]
[ "2013 V-Varen Nagasaki season\n\nThe 2013 V-Varen Nagasaki season is V-Varen Nagasaki's first season in the J. League Division 2 after winning the 2012 Japan Football League and gaining promotion.", "\n\nKey events\n20 December 2012: Takuya Takagi is announced as the new coach of V-Varen Nagasaki. ", "\n3 March: V-Varen Nagasaki play their first ever professional match in the J. League Division 2 against Fagiano Okayama at the Kanko Stadium in which the club drew 1–1. ", "Kōichi Satō scored the club's first goal in the J. League Division 2 in the 25th minute of that match.", "\n10 March: Nagasaki play their first ever Division 2 match at home at the Nagasaki Athletic Stadium in which they took on 2008 AFC Champions League winners Gamba Osaka in front of 18,153 people. ", "\n20 March: V-Varen Nagasaki win their first ever match in Division 2 when they defeated Kataller Toyama at home.", "\n\nTransfers\n\nIn:\n\nOut:\n\nNote: Flags indicate national team as has been defined under FIFA eligibility rules. ", "Players may hold more than one non-FIFA nationality.", "\n\nJ. League Division 2\n\nResults summary\n\nResults by round\n\nSquad\n\nFirst-team squad\n\nTechnical staff\n\nPlayer statistics\n\nTop Scorers\n\nDisciplinary record\n\nSee also\n 2013 in Japanese football\n List of V-Varen Nagasaki seasons\n\nReferences\n\nV-Varen Nagasaki\nCategory:V-Varen Nagasaki seasons" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.0051813471502590676, 0.010416666666666666, 0.005917159763313609, 0.0196078431372549, 0.015384615384615385, 0.008928571428571428, 0.009174311926605505, 0, 0.003484320557491289 ]
0.008677
5
[ { "analysis_explanation": null, "end": 4, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 21, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13 }, { "analysis_explanation": null, "end": 38, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34 }, { "analysis_explanation": null, "end": 55, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47 }, { "analysis_explanation": null, "end": 84, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66 }, { "analysis_explanation": null, "end": 148, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144 }, { "analysis_explanation": null, "end": 221, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205 }, { "analysis_explanation": null, "end": 236, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223 }, { "analysis_explanation": null, "end": 295, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288 }, { "analysis_explanation": null, "end": 304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297 }, { "analysis_explanation": null, "end": 454, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451 }, { "analysis_explanation": null, "end": 467, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456 }, { "analysis_explanation": null, "end": 567, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 559 }, { "analysis_explanation": null, "end": 577, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 569 }, { "analysis_explanation": null, "end": 684, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 680 }, { "analysis_explanation": null, "end": 725, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 714 }, { "analysis_explanation": null, "end": 761, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 753 }, { "analysis_explanation": null, "end": 779, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 763 }, { "analysis_explanation": null, "end": 1203, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1195 }, { "analysis_explanation": null, "end": 1238, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1230 }, { "analysis_explanation": null, "end": 1302, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1294 } ]
[ "No connection\n\nRelated Articles\n\nLast week, on Friday evening, Tashi Cell internet users across the country were left without internet for close to five hours. ", "A malware is the supposed cause, though one worries about a national internet service that can be shut down by a malware attack.", "\n\nBhutan Telecom is no better and in fact there are equal or even more complaints about Bhutan’s first telecom company.", "\n\nForget about rural areas, there are still quite a few parts of urban Thimphu where the internet connection is so poor that it is equivalent to not having one.", "\n\nThere are also well known and documented issues about call drops, poor quality mobile connections, unexplained deductions and generally poor quality service from both the companies.", "\n\nWhile the entry of a private player has led to reduction in prices and more competition, however, the next worse thing is a duopoly where two major players get away with equally poor quality services using the repetitive, ‘market is too small for a third player’ argument.", "\n\nThe government, as a result, retreated from its initial threat of allowing a third player to a position of not even holding the two Telco’s to proper account.", "\n\nIt is not enough that the government and the two Telco’s are simply happy with coverage, as it would mean very little if there is no quality of coverage.", "\n\nA survey by the Bhutan Transparency Initiative shows that the biggest bottleneck to G2C services in rural areas is the poor speed of the internet.", "\n\nThe solutions here are very simple. ", "One is to measure and fine poor performance which may ultimately lead to the license being cancelled and re-tendered or to explore the option of a third operator.", "\n\nWhat we cannot afford to do is to allow the current level of poor service to be accepted as the norm, otherwise the long term costs for Bhutan’s economy and services will be high.", "\n\n“Quality is never an accident. ", "It is always the result of an intelligent effort.", "”John Ruskin" ]
{ "pile_set_name": "Pile-CC" }
[ 0.00625, 0, 0, 0, 0, 0, 0.00625, 0.0064516129032258064, 0.006756756756756757, 0, 0, 0, 0, 0, 0.08333333333333333 ]
0.007269
5
[ { "analysis_explanation": null, "end": 42, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33 }, { "analysis_explanation": null, "end": 53, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47 }, { "analysis_explanation": null, "end": 61, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54 }, { "analysis_explanation": null, "end": 158, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139 }, { "analysis_explanation": null, "end": 381, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 375 }, { "analysis_explanation": null, "end": 483, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476 }, { "analysis_explanation": null, "end": 1822, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1816 }, { "analysis_explanation": null, "end": 1953, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1942 } ]
[ "Hey, you know what? ", "It’s 9 days into the new year and we haven’t talked about dishes yet. ", "I KNOW! ", "Well. ", "The DIL and I have casual conversations about cars, mostly about car colors. ", "She likes the way Nissan does Black Amethyst on their Rogue model. ", "I couldn’t afford to give her a car for Christmas but…\n\nIf I was running the Congressional hearings into Benghazigate, the first witness I’d call is Weird Al. ", "Yeeeaaahhh, it’s a party in the CIA! ", "Sometimes it’s a burden to know too much. ", "Not only are these the lyrics that run through my head whenever I hear Party In The USA, but there’s no way I…\n\nQ: What is the world’s greatest song? ", "A: “eBay” by Weird Al Do you remember on Bewitched when Samantha could summon up the presence of witches and warlocks just by saying something like “Dr. Bombay come right away”? ", "This week, I discovered that I could summon up the presence of my BFF by singing Weird Als “eBay”. ", "Of course, I could…" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.125, 0, 0, 0.04477611940298507, 0.006289308176100629, 0.05405405405405406, 0, 0, 0.011235955056179775, 0.020202020202020204, 0 ]
0.02012
5
[ { "analysis_explanation": null, "end": 31, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25 }, { "analysis_explanation": null, "end": 49, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37 }, { "analysis_explanation": null, "end": 225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211 }, { "analysis_explanation": null, "end": 297, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288 }, { "analysis_explanation": null, "end": 417, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407 }, { "analysis_explanation": null, "end": 573, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 570 }, { "analysis_explanation": null, "end": 700, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 692 }, { "analysis_explanation": null, "end": 795, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 789 }, { "analysis_explanation": null, "end": 823, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 814 }, { "analysis_explanation": null, "end": 883, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 880 } ]
[ "Sleep and pulmonary function in children with well-controlled, stable asthma.", "\nThe aim of this study was to assess sleep and pulmonary function in asthmatic and control children. ", "Forty children with well-controlled, stable asthma, and 34 controls (age range: 8.2 to 15.4 years) were monitored with wrist actigraphs and peak-flow meters for 3 consecutive days. ", "In addition, asthma severity was assessed by subjective parental and self-rating scale and symptom checklist. ", "Asthmatic children had poorer sleep quality in comparison to their controls, as manifested in lower percentages of quiet sleep (p < .05) and increased activity level during sleep (p < .05). ", "As expected, asthmatic children had reduced morning peak expiratory flow measures (p < .01) and a higher evening-to-morning drop in peak expiratory flow (p < .005). ", "Peak-flow measures were significantly correlated with subjective and objective sleep measures. ", "In the asthmatic group, sleep measures were also correlated with subjective asthma severity indices and symptom checklists. ", "We conclude that poorer sleep is associated with reduced pulmonary function. ", "The reduced sleep quality, coupled with subjective reports of increased fatigue and reduced alertness found in asthmatic children, suggest that these children are at risk for developing neurobehavioral deficits associated with chronic sleep loss." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 275, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258 }, { "analysis_explanation": null, "end": 313, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303 }, { "analysis_explanation": null, "end": 357, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 339 }, { "analysis_explanation": null, "end": 710, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 703 }, { "analysis_explanation": null, "end": 771, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 764 } ]
[ "Compare Campervans in Thames - You Could Save $100s\n\nTip: A limited number of campervan companies offer vehicles directly in Thames. ", "For lower prices and a wider range, we recommend you compare campervans in other cities as well such as Tauranga, Hamilton or Auckland.", "\n\nAttractions near Thames\n\nCathedral Cove\n\nCathedral Cove is a key attraction of the Coromandel Peninsula, marked by its iconic white rock natural archway and turquoise waters. ", "The cove can only be accessed by an hour hike or by sea." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.014814814814814815, 0, 0 ]
0.003704
5
[ { "analysis_explanation": null, "end": 18, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8 }, { "analysis_explanation": null, "end": 131, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125 }, { "analysis_explanation": null, "end": 245, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237 }, { "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": 267, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259 }, { "analysis_explanation": null, "end": 372, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 348 }, { "analysis_explanation": null, "end": 484, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480 } ]
[ "Conceptualizing men: a transdiagnostic model of male distress.", "\nThis review aims to produce a comprehensive, parsimonious, and empirically based model of male psychological distress from the perspective of cognitive behaviour therapy (CBT) that may apply in the majority of clinical situations involving men in Britain and possibly elsewhere. ", "This paper reviews studies that pertain to male psychological distress. ", "Studies are selected via examination of the literatures around men's psychological health. ", "Criteria for inclusion of studies are direct and indirect relevance to male distress. ", "Studies are examined on the basis of their possible contribution to a comprehensive yet critical model of male functioning, and are grouped according to their neurological, developmental, and cultural origins. ", "The review suggests that certain factors inform the psychological presentation of males across disorders, and can help predict therapy-interfering behaviours and outcomes. ", "A transdiagnostic model of male distress emerges from existing data and theory containing the hypothesized reflection abandonment mechanism (RAM) that helps account for characteristic male externalizing and therapy-interfering behaviours. ", "Existing data and theory can be synthesized to produce a cognitive behavioural model of male distress that adds value to case conceptualizations regardless of the disorder involved, and has predictive value regarding men's access to and engagement with psychological services." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.0035714285714285713, 0, 0, 0, 0, 0, 0.0041841004184100415, 0 ]
0.000862
5
[ { "analysis_explanation": null, "end": 317, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 310 } ]
[ "The Digital Divide Spectrum is the spectrum freed up by the transition to digital television, since it needs less spectrum. ", "In Europe, it is from 174 to 230 MHz (VHF) and from 470 to 862 MHz (UHF). ", "However, the location and size of digital dividend vary among countries. ", "Most carriers plan to use LTE on the new spectrum.", "\n\nThe auction raised €1.65 billion (US$2.37 billion), above the minimum required but short of the €2 billion ($2.87 billion) the Spanish government had hoped for. ", "Vodafone España won 60MHz of spectrum in the 800MHz and 2.6GHz bands, for which it will pay €518 million, and says it will launch LTE in rural as well as urban areas.", "\n\nThe operator, also known as Vodafone Spain, is paying €518 million (US$744 million) for 20MHz (2 x 10MHz) in the 800MHz band, which will become available in 2014 when the switch from analog to digital TV is completed in Spain, and 40MHz (2 x 20MHz) in the 2.6GHz band, which is available immediately.", "\n\nVodafone Spain, which has 17.35 million customers, says it has also been given permission to “re-farm” some of its 900MHz spectrum, which was initially issued for GSM services, for 3G and, as a result, intends to extend its 3G services into rural areas before the end of this year.", "\n\nMeanwhile, Five Italian operators have submitted requests to participate in Italy’s upcoming spectrum auctions in the 800MHz, 1800MHz, 2000MHz and 2600MHz bands, reports Reuters. ", "Italy’s four main mobile operators, Telecom Italia, Vodafone, Wind and 3 – plus broadband provider Linkem – have declared their interest. ", "The government is hoping to raise EUR2.4 billion. ", "The companies will now have a month to present their offers.", "\n\nThis decision allowed digital terrestrial television to expand its coverage – to match that of analogue, at 98.5% of the population; and its capacity – to around 10 times that of analogue in most of the country, and around 5 times elsewhere.", "\n\nAt the same time, digital switchover will allow the remaining spectrum – 112MHz – to be released for new uses. ", "It is this 112MHz that forms the core of the ‘digital dividend’.", "\n\nThe U.S. 700MHz auctions in 2008 raised a total of $19.6 billion dollars, with the 10 MHz “D-block” spectrum remaining unsold. ", "AT&T Wireless and Verizon Wireless accounted for $16.3 billion of the $19.6 billion of the 700 MHz bids.", "\n\nEurope left 50 MHz in the middle of the 2.6 GHz spectrum, believing unpaired WiMAX might use that space. ", "CEPT carriers lobbied against it (pdf), hoping to commander it for additional downlink channels.", "\n\nNow, with unpaired LTE (TD-LTE) getting strong support from China and India, the industry may be shifting again. ", "The potential of TD-LTE to save spectrum — especially when utilizing next generation LTE Advanced with 20 MHz channels — is significant. ", "Carriers may coordinate their approach to LTE for global roaming — or simply lock out competition by using paired 20 MHz channels – despite being inefficient in a data-driven world that runs on asymmetric channels.", "\n\nBut two of the largest mobile carriers in the world, China Mobile (600 million subs) and Bharti Airtel (208 million subs), are TD-LTE supporters. ", "Their support may help make the unpaired frequency band a lot more competitive.", "\n\nDevelopers can write their app once and deploy it to six major mobile platforms and app stores, including iOS, Android, BlackBerry, webOS, Bada and Symbian.", "\n\nThe open source code is downloaded approximately 40,000 times every month, more than 600,000 times in total. ", "Today’s major release puts the focus on accessing native device APIs, which is new ground for the web, says the company. ", "The plugin development process has also been simplified.", "\n\n“Most of these new enhancements come from our community,” said Brian LeRoux, Senior Software Engineer at Nitobi and PhoneGap evangelist. ", "A team of senior software engineers at IBM has been a major benefit. ", "Other contributors include Adobe, which integrated PhoneGap into Dreamweaver so that developers can package apps with PhoneGap and launch iOS and Android emulators directly from within Dreamweaver. ", "Others include Alcatel-Lucent, Sabre, Cisco, Logitech and Time Warner.", "\n\nIn related news, Alibaba is launching its mobile platform, Aliyun, for China on the K-Touch W700 handset later this month. ", "The Aliyun platform focuses on cloud-based, web applications but is also “fully compatible” with Google Android apps. ", "Alibaba will complement each handset with 100 GB of data storage on its AliCloud service. ", "China, the world’s largest mobile phone market, has nearly 907 million mobile subscribers, according to statistics provided by the three leading telcos in June.", "\n\nAlthough Apple’s 142 percent year-on-year growth placed it as No. ", "1 this quarter, Samsung’s 500 percent year-on-year growth shows that going forward, the top smartphone OEM position is Samsung’s to lose,” said ABI Research analyst Michael Morgan.", "\n\nAccording to IDC, Nokia remained No. ", "1 in overall handset market share in the second quarter, followed closely by Samsung.", "\n\nA new app storefront forecast by Strategy Analytics says the app economy is strong and getting stronger. ", "Paid downloads are expected to drive nearly $2 billion per quarter by the end of 2012. ", "They predict the Android Market will overtake the Apple App Store in quarterly volume by the end of 2012. ", "Android will be helped with additional assistance from third party distribution outlets such as the Amazon App Store, GetJar, Nook App Store and others.", "\n\nPosted by\nSam Churchill\non\nJuly 29th, 2011\n\nThe operating balance for the United States is now at $73.768 billion and falling, according to the U.S. Treasury. ", "Meanwhile, Apple has 75.876 billion in the bank – with more coming in every day (pdf).", "\n\nEarlier this week, shares of Apple began trading North of $400 on the Nasdaq Stock Market for the first time in the company’s history. ", "Apple’s market capitalization currently stands at $363.25 billion, making it the second largest company on the planet, after Exxon Mobil.", "\n\nThe spectrum debate is being tied to the debt ceiling plan, says C/Net. ", "A big part of that is the 700 MHz first responder network. ", "The FCC determined that the best way of delivering more spectrum for first responders was a joint public/private approach. ", "The spectrum would be auctioned to commercial users who would build the nationwide network. ", "It would be available to everyone with priority access for first responders.", "\n\nMany Republicans opposed that move. ", "Their approach was to give public service users the spectrum at no cost and fund it to the tune of $10-$25 billion. ", "But where would the money come from?", "\n\nHow much money can be raised through TV auctions? ", "The Congressional Budget Office (pdf) estimates that incentive auctions could bring in nearly $25 billion over the next 10 years. ", "Under one bill that has already been proposed in the Senate, the Congressional Budget Office expects around $6.5 billion of that could be used to reduce the deficit.", "\n\nNow that the Obama administration has agreed with first responder lobbyists over the D-Block, some Republicans are moving in the opposite direction. ", "D Block legislation will likely face tough opposition in the House, where many members are focused primarily on curbing federal-government spending, not initiating new multi-billion dollar programs.", "\n\nVerizon’s 700 MHz LTE network operates on 10 MHz duplex channels, similar to the proposed dedicated public safety network. ", "With a spectral efficiency of 1.5 bps/Hz, Verizon delivers sector throughput of 15 Mbps. ", "But that’s over a much more dense, 2-3 mile cellular radius, serving around 300 subscribers per sector. ", "If a 10-15 mile radius is planned, coupled with more powerful handsets, then a traffic jam may happen. ", "That’s why cellular-style architecture may be needed. ", "It would cost a lot more money.", "\n\nVerizon spent $10 billion for their frequencies and some $5 billion on LTE infrastructure. ", "But Verizon already had most of the towers and fiber backhaul in place. ", "In addition, Verizon did not have to buy $5,000 radios for every one of its subscribers.", "\n\nA battle between government agencies is now breaking out, says Urgent Communications. ", "All government agencies — from inspectors to parks workers to sanitation department members — would like to use broadband public safety spectrum. ", "But if a city has to create one system for public safety and another for the rest of its work force, the cost to build and support two solutions may be too large.", "\n\nIf the full 10 MHz of the D Block is auctioned, many industry experts say significant costs will be incurred to mitigate interference. ", "On the other hand, if commercial providers fund the bulk of the network, then the government might save $10-20 billion and the spectrum wouldn’t be wasted.", "\n\nThe D-Block can be disputed technically. ", "Both sides have merit. ", "It’s really about funding. ", "A joint public/private partnership would save a lot of money. ", "Perhaps giving the D-Block to both first responders and municipalities would be a reasonable compromise.", "\n\nSpiNNaker is a joint project between the universities of Manchester, Southampton, Cambridge and Sheffield and has been funded with a £5 million (about $8 million) government grant. ", "The chips are based on an old ARM instruction set architecture and were delivered to the university last month.", "\n\nThere are about 100 billion neurons with 1,000 trillion connections in the human brain. ", "Even a machine with one million of the specialized ARM processor cores developed at Manchester would only allow modeling of about 1 percent of the human brain. ", "Furber believes the machine will be a vital tool for neuroscientists and psychologists to test hypotheses on individual brain characteristics." ]
{ "pile_set_name": "Pile-CC" }
[ 0.008064516129032258, 0.02702702702702703, 0, 0.02, 0, 0.012048192771084338, 0.006622516556291391, 0.0035335689045936395, 0.0055248618784530384, 0.021739130434782608, 0, 0, 0, 0, 0, 0, 0.019230769230769232, 0, 0.010416666666666666, 0.017391304347826087, 0.014598540145985401, 0, 0.02027027027027027, 0, 0.02531645569620253, 0, 0, 0, 0.014388489208633094, 0.014492753623188406, 0.020202020202020204, 0.04285714285714286, 0.024, 0.00847457627118644, 0.011111111111111112, 0, 0.014705882352941176, 0.022222222222222223, 0.02564102564102564, 0.011764705882352941, 0.009345794392523364, 0, 0.009433962264150943, 0.019736842105263157, 0.012422360248447204, 0.011627906976744186, 0.014598540145985401, 0.014598540145985401, 0.013513513513513514, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0.015384615384615385, 0.012121212121212121, 0.006622516556291391, 0.005050505050505051, 0, 0, 0, 0, 0, 0, 0.010752688172043012, 0.013888888888888888, 0, 0.011363636363636364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00625, 0 ]
0.007253
5
[ { "analysis_explanation": null, "end": 133, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127 }, { "analysis_explanation": null, "end": 456, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449 }, { "analysis_explanation": null, "end": 743, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 738 }, { "analysis_explanation": null, "end": 811, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 807 }, { "analysis_explanation": null, "end": 875, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 870 }, { "analysis_explanation": null, "end": 1231, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1211 }, { "analysis_explanation": null, "end": 1256, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1249 }, { "analysis_explanation": null, "end": 1314, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1309 }, { "analysis_explanation": null, "end": 1417, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1412 }, { "analysis_explanation": null, "end": 1635, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1628 }, { "analysis_explanation": null, "end": 2031, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2025 }, { "analysis_explanation": null, "end": 2087, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2083 }, { "analysis_explanation": null, "end": 2111, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2107 }, { "analysis_explanation": null, "end": 2317, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2311 }, { "analysis_explanation": null, "end": 2578, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2573 }, { "analysis_explanation": null, "end": 2588, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2583 }, { "analysis_explanation": null, "end": 3313, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3310 }, { "analysis_explanation": null, "end": 3359, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3352 }, { "analysis_explanation": null, "end": 3434, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3423 }, { "analysis_explanation": null, "end": 3475, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3470 }, { "analysis_explanation": null, "end": 3723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3711 }, { "analysis_explanation": null, "end": 3759, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3753 }, { "analysis_explanation": null, "end": 3930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3919 }, { "analysis_explanation": null, "end": 4050, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4039 }, { "analysis_explanation": null, "end": 4199, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4194 }, { "analysis_explanation": null, "end": 4219, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4215 }, { "analysis_explanation": null, "end": 4244, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4228 }, { "analysis_explanation": null, "end": 4256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4250 }, { "analysis_explanation": null, "end": 4444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4436 }, { "analysis_explanation": null, "end": 4459, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4454 }, { "analysis_explanation": null, "end": 4613, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4609 }, { "analysis_explanation": null, "end": 4695, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4681 }, { "analysis_explanation": null, "end": 4860, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4846 }, { "analysis_explanation": null, "end": 4954, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4936 }, { "analysis_explanation": null, "end": 5175, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5160 }, { "analysis_explanation": null, "end": 5208, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5190 }, { "analysis_explanation": null, "end": 5255, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5246 }, { "analysis_explanation": null, "end": 5281, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5266 }, { "analysis_explanation": null, "end": 5459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5446 }, { "analysis_explanation": null, "end": 5478, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5463 }, { "analysis_explanation": null, "end": 5523, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5506 }, { "analysis_explanation": null, "end": 5674, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5665 }, { "analysis_explanation": null, "end": 5699, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5682 }, { "analysis_explanation": null, "end": 6394, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6383 }, { "analysis_explanation": null, "end": 6745, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6728 }, { "analysis_explanation": null, "end": 6931, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6926 }, { "analysis_explanation": null, "end": 7023, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7012 }, { "analysis_explanation": null, "end": 9029, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9019 }, { "analysis_explanation": null, "end": 9042, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9031 }, { "analysis_explanation": null, "end": 9053, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9044 }, { "analysis_explanation": null, "end": 9067, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9058 }, { "analysis_explanation": null, "end": 9253, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9243 }, { "analysis_explanation": null, "end": 9437, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9427 }, { "analysis_explanation": null, "end": 9509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9503 }, { "analysis_explanation": null, "end": 4219, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4215 } ]
[ "\n37 Cal.", "App.4th 1811 (1995)\n44 Cal. ", "Rptr. ", "763\nASPEN ENTERPRISES, INC., ", "Plaintiff and Appellant,\nv.\nGERALD BODGE et al., ", "Defendants and Appellants.", "\nDocket No. ", "D018819.", "\nCourt of Appeals of California, Fourth District, Division One.", "\nSeptember 5, 1995.", "\n*1815 COUNSEL\nLuce, Forward, Hamilton & Scripps, Scott W. Sonne and Roger C. Haerr for Plaintiff and Appellant.", "\nPain, Cluff, Olson & Burns, Pain, Cluff & Burns and Jerry D. Cluff for Defendants and Appellants.", "\nOPINION\nHUFFMAN, J.\nPlaintiff Aspen Enterprises, Inc. (Aspen) sued defendants Gerald and Karen Bodge (collectively Bodge) on a promissory note secured by both real property and personal property. ", "At the outset of the action Aspen repossessed personal property collateral consisting of an inventory of new tires. ", "At trial, the court granted Bodge's motion for nonsuit based on what was stipulated to be Aspen's opening statement, concluding Aspen was barred under the California Uniform Commercial Code from seeking a deficiency judgment.", "\nAspen appeals the grant of nonsuit, contending: (1) its cause of action for judicial foreclosure was not an action for a deficiency judgment because California Uniform Commercial Code[1] section 9501 authorizes a creditor whose security is mixed real and personal property to proceed in any sequence against the collateral without triggering an antideficiency bar; (2) it was not required to give notice of sale of the repossessed collateral under section 9504 because there is a recognized market for the collateral; (3) it *1816 was not required to give notice of sale of the repossessed collateral because, at the time of the initial hearing on the motion for nonsuit, the collateral had not been sold, but merely repossessed; (4) it gave notice of sale of the collateral before the court's final decision on the motion for nonsuit, and whether it acted in a commercially reasonable manner by waiting until then to notice the sale is a question of fact for the jury; and (5) the court erred in ruling it elected to retain the inventory in satisfaction of the judgment.", "\nBodge cross-appeals, contending the trial court abused its discretion in denying Bodge's posttrial motion for attorney fees under Civil Code section 1717.", "\nFor the reasons explained below, we agree with Aspen that the court erred in granting nonsuit.", "\n\nFACTUAL AND PROCEDURAL BACKGROUND\nThe following facts are set forth in Aspen's opening statement, on which the court granted nonsuit.", "\nAspen, a tire wholesaler, took a promissory note from Bodge in a transaction whereby Bodge purchased a retail tire outlet from Aspen. ", "The note was secured in part by the tire store's inventory, which Aspen had sold to Bodge at wholesale prices. ", "The note was additionally secured by residential real property owned by Bodge.", "\nAfter Bodge defaulted on the note, Aspen filed an action for breach of the note, obtained an ex parte writ of possession and temporary restraining order prohibiting Bodge from selling or concealing the tire inventory, and repossessed a quantity of the tires. ", "Subsequently, Aspen amended its complaint to include a cause of action for judicial foreclosure against the real property security.", "\nAspen inventoried the repossessed tires and generated computer invoices giving Bodge credit for the tires at the same published wholesale prices Bodge originally paid for them. ", "Aspen's attorney sent the invoices to Bodge's attorney and issued a credit to Bodge in the amount of $7,432.23, the wholesale market value of the tires. ", "Although Aspen kept the repossessed tires segregated in its warehouse pending resolution of Bodge's challenges to its writ of possession, the tires were eventually returned to and commingled with Aspen's inventory.", "\nThe court treated its resolution of this case as a grant of nonsuit on Aspen's opening statement, although a jury was never impaneled. ", "Bodge *1817 moved for nonsuit on the first day of trial, contending for the first time that Aspen's action for judicial foreclosure against the real property collateral was an action for a deficiency judgment which was barred either by Aspen's failure to conduct a sale or failure to give notice of sale of the repossessed tires as required by section 9504. ", "To save time and the inconvenience of impaneling a jury, the parties stipulated that Aspen's oral argument against the motion for nonsuit and supplemental opposition brief to be filed later would constitute its opening statement.", "\nThe court granted Bodge's motion for nonsuit, ruling that Aspen's \"retention of collateral after its ... non-judicial repossession without either publication of sale or conduct of actual sale of the collateral so repossessed barred the instant action which was for a deficiency judgment.\"", "\n\nDISCUSSION\n\nI\n\nStandard of Review\n(1) In reviewing a grant of nonsuit, the appellate court must evaluate the evidence in the light most favorable to the plaintiff. ", "All presumptions, inferences and doubts must be resolved in plaintiff's favor and against the defendant. ", "Only if the evidence, viewed in this light, requires judgment for defendant as a matter of law should a judgment of nonsuit be affirmed. (", "Nally v. Grace Community Church (1988) 47 Cal.3d 278, 291 [253 Cal. ", "Rptr. ", "97, 763 P.2d 948].)", "\n(2) In ruling on a motion for nonsuit based on plaintiff's opening statement, the trial court must assume the plaintiff will be able to prove all favorable facts alleged. (", "Loral Corp. v. Moyes (1985) 174 Cal. ", "App.3d 268, 272 [219 Cal. ", "Rptr. ", "836].) ", "In the present case, the parties stipulated that Aspen's oral argument and supplemental brief in opposition to the motion for nonsuit would serve as its opening statement. ", "We must therefore assume Aspen could prove the facts asserted in its opposition brief.", "\n\nII\n\nAre the Provisions of the California Uniform Commercial Code Inapplicable to Aspen's Proceedings against Its Personal Property Collateral because Aspen's Lawsuit Is a Unified Foreclosure Action Under Section 9501, Subdivision (4)(a)(ii)?", "\nSection 9501, as amended in 1985, is an attempt by the Legislature to clarify the rights of a secured creditor in foreclosing on mixed property *1818 collateral (i.e., realty and personalty).[2] Section 9501, subdivision (4)(a) essentially provides that a secured creditor with mixed collateral may either (1) proceed against the personal property collateral in accordance with the California Uniform Commercial Code and the real property collateral in accordance with real property law (§ 9501, subd. (", "4)(a)(i)); (2) proceed in any sequence against some or all of real and personal property collateral in accordance with the procedures applicable to real property (§ 9501, subd. (", "4)(a)(ii)); or (3) follow the first option as to part of the personal property collateral and the second option as to other personal property collateral (§ 9501, subd. (", "4)(a)(iii)).", "\n(3) Aspen contends it elected the second option by amending its complaint to include a cause of action for judicial foreclosure of real property, i.e., that its action against Bodge is a \"unified foreclosure\" action against both its real and personal property collateral. ", "Therefore, Aspen argues, pursuant to subparagraph (ii) of section 9501, subdivision (4)(a), its proceedings against the personal property collateral are governed by real property law and not the California Uniform Commercial Code.[3]\nThis contention is without merit. ", "Although there are apparently no published cases interpreting the 1985 amendment to section 9501, the overall statutory scheme suggests the \"unified foreclosure\" option of section 9501, subdivision (4)(a)(ii) was intended to apply only where a debt is secured by collateral which consists of closely related elements of real property and personal property, such as business premises plus the fixtures and inventory *1819 of the business located on the premises. ", "The following commentary regarding amended section 9501 is instructive as to the type of situation subdivision (4)(a)(ii) was designed to address: \"A hotel is perhaps the paradigm of a type of collateral which is comprised of very closely related elements of realty and personalty. ", "Taken together, the real property, the fixtures and the tangible and intangible types of personal property which comprise a typical hotel property constitute an integrated operating business. ", "When combined as a single functional unit, these mixed collateral elements usually have substantial added value as a going concern.... [¶] ... A unified sale of the intertwined portions of the hotel collateral package ... might enhance the likelihood of realizing more of the `going concern' value. ", "Moreover, ... such a sale should result in the personalty included in a unified judicial foreclosure being counted in any computation of `fair value' under [Code of Civil Procedure] section 726.\" (", "Hirsch et al., ", "The U.C.C. Mixed Collateral Statute — Has Paradise Really Been Lost?, ", "supra, 36 UCLA L.Rev. ", "1, 36, fns. ", "omitted.) ", "Aspen's mixed collateral, consisting of tires and residential real property unrelated to the Bodge's tire business, is not the sort of closely-related mixed collateral contemplated by section 9501, subdivision (4)(a)(ii).", "\nMoreover, because a secured creditor's sale of repossessed collateral must be conducted in a commercially reasonable manner (§ 9504, subd. (", "3); Crocker Nat. ", "Bank v. Emerald (1990) 221 Cal. ", "App.3d 852, 861 [270 Cal. ", "Rptr. ", "699]), the unified-sale option of section 9501, subdivision(4)(a)(ii) can be used only where it is commercially reasonable to conduct a unified foreclosure sale of both personal property and real property collateral. ", "As a matter of common sense, it would be commercially unreasonable to conduct a unified sale of the mixed collateral in the present case, as potential buyers of residential real property are not likely to be enticed by the prospect of acquiring a large inventory of tires along with the property. ", "Nor are tire retailers likely to be interested in acquiring residential real property along with their inventory.", "\nThat the unified foreclosure option of section 9501, subdivision (4)(a)(ii) necessarily involves an actual unified sale of mixed collateral, as opposed to merely a \"unified\" complaint encompassing both real and personal property collateral as Aspen suggests, is indicated by the provision in section 9501, subdivision (4)(a)(ii) stating, \"The secured party shall not be deemed to have elected irrevocably to proceed as to both real property and personal property ... unless and until that particular property has been actually disposed of pursuant to a unified sale (judicial or nonjudicial) conducted in accordance with the procedures applicable to real property, and then only as to the *1820 property so sold.\" (", "Italics added.) ", "Aspen cannot be deemed to have elected the unified sale option of section 9501, subdivision(4)(a)(ii) because it would not be commercially reasonable for Aspen to attempt to sell its personal property collateral by conducting such a unified sale. ", "Therefore, the requirements of the California Uniform Commercial Code regarding disposition of personal property collateral apply to Aspen's disposition of the tires it repossessed from Bodge.", "\n\nIII\n\nIs Aspen Barred From Seeking a Deficiency Judgment Because It Failed to Comply With Section 9504, Subdivision (3)?", "\n(4a) Alternatively to arguing Aspen made an implied election to retain the repossessed tires in satisfaction of the entire debt, Bodge contends Aspen failed to comply with the requirement of section 9504, subdivision (3) that the secured party give advance notice to the debtor of the sale of collateral.[4] The threshold issue here is whether Aspen actually sold or \"otherwise dispose[d] of\" the tires within the meaning of section 9504, subdivision (1), as opposed to retaining them.[5]\nThe confusion over this point stems from the fact Aspen commingled the repossessed tires with its general inventory, which presumably resulted in the tires being sold in the ordinary course of Aspen's business. ", "The California Uniform Commercial Code specifically allows fungible collateral to be commingled in this manner. ", "Section 9207, subdivision (2)(d) regarding the duties of a secured creditor in possession of security provides, \"The secured party must keep the collateral identifiable but fungible collateral may be commingled.\" ", "Aspen kept the tires identifiable by inventorying them after they were repossessed, and the tires were fungible goods because each tire could be replaced by an identical tire.", "\nAspen essentially argues the commingling of the repossessed tires did not constitute a sale because, as fungible collateral which has been properly *1821 identified, the tires could be segregated and sold separately at any time.[6] Aspen correctly argues it should not be barred from pursuing a deficiency judgment for failure to give proper notice of the sale of its collateral if the collateral was not sold, but merely retained.", "\nThe confusion over whether the tires were sold or retained is reflected in the contradictory basis for granting nonsuit articulated by the trial court. ", "The court's order after hearing states that \"plaintiff's retention of the collateral after its July 3, 1990, non-judicial repossession without either publication of sale or conduct of actual sale of collateral so repossessed barred the instant action which was for a deficiency judgment.\" ", "The court's statement that the action was barred by Aspen's repossession without \"publication of sale\" implies the court found the collateral was improperly sold without proper notice to Bodge, as there is no requirement of notice absent a sale. ", "On the other hand, the court stated Aspen's action was barred because Aspen failed to sell the collateral. ", "Implicit in this statement is a finding of an implied election by Aspen to retain the collateral in satisfaction of the debt. ", "The judgment of nonsuit is not properly based on such contradictory findings.[7]\nWe are unaware of any authority from any jurisdiction addressing the issue whether commingling and sale of fungible collateral as part of the secured party's general inventory constitutes a \"sale\" or other disposition of collateral of which advance notice must be given to the debtor under section *1822 9504. ", "Accepting as true the facts presented in Aspen's stipulated opening statement, we conclude Aspen sold or otherwise disposed of the repossessed collateral within the meaning of section 9504, subdivision (1), but did so in a commercially reasonable manner with adequate notice under section 9504, subdivision (3).", "\n(5) The purpose of requiring notice of sale to the debtor is to alert the debtor that his or her interest in the collateral is soon to be extinguished, and to afford the debtor or other bidders located by the debtor the opportunity to be present at the sale. ", "This protects the debtor from self-dealing in the disposition of the collateral or an unfairly low auction price. (", "Ford & Vlahos v. ITT Commercial Finance Corp. (1994) 8 Cal.4th 1220, 1232-1233 [36 Cal. ", "Rptr.2d 464, 885 P.2d 877]; PWS, Inc. v. Ban (1991) 234 Cal. ", "App.3d 223, 229 [285 Cal. ", "Rptr. ", "598].)", "\nWhere properly identified fungible collateral is commingled and sold for market value as part of the creditor's overall inventory and the debtor is credited accordingly and given notice of the credit, as here, there is no danger of self-dealing or that an unfairly low price will be realized for the collateral. ", "If the debtor perceives such danger and wishes to have the collateral segregated from the creditor's other inventory and sold in a separate sale, the debtor can object to the sale of the collateral as general inventory and require a separate sale, provided the debtor's demand for such separate sale is made within a reasonable time after receiving notice of the credit given for the value of the collateral.[8] As long as the creditor has properly identified the fungible collateral as required by section 9207, such a separate sale can be easily arranged, even after the collateral has been commingled with other goods in the creditor's possession. ", "Thus, the notice to the debtor that the fungible collateral has been inventoried or otherwise identified and that the debtor is to be credited with the market value of the identified goods can effectively operate as notice of intended disposition of the collateral under section 9504 in appropriate cases, such as the present case.", "\n(4b) Accordingly, we conclude the procedure described in Aspen's stipulated opening statement of commingling its repossessed fungible collateral with general inventory, while giving Bodge credit for the market value of the collateral, was a commercially reasonable and practical manner of disposing *1823 of the collateral without jeopardizing Bodge's right to receive fair credit for its value. ", "Such disposition of fungible collateral serves the interests of both the debtor and the secured party. ", "The debtor receives fair credit for the market value of the collateral while the secured party avoids the pointless exercise and expense of segregating and conducting a separate sale of the collateral which can only fetch the same market price that would be obtained by selling the collateral in the ordinary course of business as part of the secured party's general inventory.", "\nWe conclude the trial court erred in both aspects of its ambiguous ruling. ", "To the extent the court ruled Aspen is barred from seeking a deficiency judgment because it retained the collateral without conducting a sale, the court erred because, based on Aspen's opening statement, the goods were sold or \"otherwise dispose[d] of\" within the meaning of section 9504 and not retained. ", "To the extent the court ruled that Aspen sold the collateral without proper notice, the court erred because Aspen's notice to Bodge of the intended disposition of the collateral was adequate to protect Bodge's interest in receiving fair credit for the value of the collateral.", "\n\nIV\n\nIs There a \"Recognized Market\" for New Tires?", "\nSubdivision (3) of section 9504 provides that notice of sale or disposition of collateral need not be given to the debtor if the collateral is \"of a type customarily sold on a recognized market.\" (§ ", "9504, subd. (", "3).)[9] (6a) Assuming arguendo Aspen disposed of the repossessed tires without notice to Bodge, the trial court erred in granting nonsuit against Aspen on that ground, because the facts asserted by Aspen support a finding that there is a \"recognized market\" for new tires.", "\nThere is very little California case law discussing the applicability of the recognized market exception to the notice requirement of section 9504. (", "7a) The following is a common statement of the factors generally considered in determining whether there is a recognized market for a particular type of collateral: \"A `recognized market' has been described as one where sales involved many items so similar that individual differences are nonexistent or immaterial, where haggling and competitive bidding are not primary factors in each sale, and where the prices paid in actual sales of comparable property are currently available by quotation.\" (", "1st Charter Lease Co. v. McAl, Inc. (Colo. 1984) 679 P.2d 114, 115; see also Norton v. *1824 National Bank of Commerce of Pine Bluff (1966) 240 Ark. 143 [398 S.W.2d 538, 540] overruled on another ground in First State Bank of Morrilton v. Hallett (1987) 291 Ark. 37 [722 S.W.2d 555]; Nelson v. Monarch Invest. ", "Plan of Henderson, Inc. (Ky. 1970) 452 S.W.2d 375, 377; State Bank of Towner v. Hansen (N.D. 1981) 302 N.W.2d 760, 765, quoting Norton; Cottam v. Heppner (Utah 1989) 777 P.2d 468, 473.) ", "In Canadian Commercial Bank v. Ascher Findley Co. (1991) 229 Cal. ", "App.3d 1139 [280 Cal. ", "Rptr. ", "521], the court alluded to this test for determining the existence of a recognized market, stating the recognized market exemption from the notice requirement of section 9504 \"refers to collateral such as stocks and bonds ... which are widely traded on exchanges such as the New York Stock Exchange or commodities markets and for which daily price quotations are available.\" (", "Canadian Commercial Bank v. Ascher Findley Co., supra, at p. 1159.)", "\nReviewing the cases nationwide, it is clear that the recognized market exemption definitely applies to stocks and bonds traded on exchanges such as the New York Stock Exchange, and definitely does not apply to used cars. (", "Canadian Commercial Bank v. Ascher Findley Co., supra, 229 Cal. ", "App.3d at p. 1159 [concluding there is no recognized market for a used oil drilling rig].) ", "With respect to collateral falling between used cars and stocks on the recognized market spectrum, case law is divided.[10]\nFor example, courts of Montana and North Dakota have held there is no recognized market for cattle. (", "State Bank of Towner v. Hansen, supra, 302 N.W.2d at p. 765; Wippert v. Blackfeet Tribe (1985) 215 Mont. 85 [695 P.2d 461].) ", "The North Dakota court, agreeing with a Texas opinion, stated \"`the term recognized market within the meaning of the U.C.C. is most restrictive.' ", "Only those items of collateral which are commonly sold on a market such as the stock market or the commodity market wherein the price at any given moment is fixed and is free from an individualized competitive bidding process fall within the category of `recognized market' collateral which is exempt from the notice requirement....\" (State Bank of Towner v. Hansen, supra, 302 N.W.2d at p. 765.)", "\nHowever the South Dakota Supreme Court disagreed with the Montana and North Dakota courts and held that \"... commercial cattle herds raised for sale at public livestock markets are collateral `of a type customarily sold on a recognized market' for purposes of [UCC section 9504(3)].\" (", "First Nat. ", "Bank of Minneapolis v. Kehn Ranch (S.D. 1986) 394 N.W.2d 709, 715, fn. *", "1825 omitted.) ", "The court stated, \"Admittedly the cattle market is not identical to the New York Stock Exchange or the bond markets. ", "But like the stock exchange, prices paid for cattle are available by quotation on a daily basis, as are prices paid for shares on the NYSE. ", "Furthermore, when the Bank took possession of the security, cattle were being traded daily on the commodity futures markets, similar to grain and other commodities. ", "Under such a marketing system there is no room for bidding on individual cattle, and `[t]he forces of supply and demand determine price and the valuation of goods....' [Citation.]\" (", "Ibid. ", "Accord, Cottam v. Heppner, supra, 777 P.2d 468.)", "\nIn American Parts System v. T & T Automotive (Minn. Ct. ", "App. ", "1984) 358 N.W.2d 674 the court held collateral consisting of an inventory of new auto parts was \"`of a type customarily sold on a recognized market.'\" (", "Id. at p. 677 quoting Minn. Stat. §§ ", "336.9-504(3) (1982).) (", "6b) Aspen argues if there is a recognized market for new auto parts, there is also one for new tires. ", "Based upon the facts asserted in Aspen's opening statement, we are inclined to agree.", "\n(7b) We adopt the view that a recognized market within the meaning of section 9504, subdivision (3) is one where sales involve many items so similar that individual differences are nonexistent or immaterial, where haggling and competitive bidding are not primary factors in each sale, and where the prices paid are currently available by quotation. ", "The question of whether there is a recognized market for any particular collateral within the meaning of section 9504, subdivision (3) is generally a question of fact, although some courts have decided the question as one of law based on the relevant underlying facts. (", "Compare M.P. Crum Co. v. First Southwest Sav. & ", "Loan (Tex. ", "Ct. ", "App. ", "1986) 704 S.W.2d 925 [question of whether collateral consisting of home mortgages was of a type customarily sold in a recognized market submitted to jury to be decided by special verdict] and Cottam v. Heppner, supra, 777 P.2d at p. 471 [jury made finding that debtors' cattle were collateral customarily sold on a recognized market]; with State Bank of Towner v. Hansen, supra, 302 N.W.2d at p. 765 [holding there is no recognized market for cattle and used farm machinery as a matter of law].)", "\n(6c) In the instant case, the question of whether there is a recognized market for new tires is a question of fact turning on the jury's resolution of the underlying questions of whether the sale of tires involves many items so similar that individual differences are nonexistent or immaterial, whether haggling and competitive bidding are absent as primary factors in each sale, and whether the wholesale prices paid for tires are currently available by *1826 quotation. ", "In its stipulated opening statement, Aspen alleged the following facts which support a finding of a recognized market for tires under the aforementioned test:\n\"There is an established and recognized wholesale market for new tires in Southern California. ", "The market demand for tires in this region is one of the greatest in the world, and the fierce competition has resulted in relatively identical wholesale prices for comparable tires. ... ", "There is little or no price differential between tires sold by competitors when comparing tires of similar brand names, size, quality, and performance.", "\n\"Aspen and its competitors publish price lists of their wholesale tire prices for dissemination to tire retailers. ", "Although the published prices for individual tires may vary a little, the actual wholesale price differential is virtually nonexistent when a competitor's advertising, credit terms and incentives are taken into consideration. ", "In this recognized market, there is no haggling or competitive bidding for each sale. ", "Rather, the prices paid for sales of comparable tires are always available by quotation from published price lists.\" (", "Italics added.)", "\nIn ruling on Bodge's motion for nonsuit, the court should have assumed Aspen would prove its asserted facts going to the issue of whether there is a recognized market for new tires. ", "Based on those facts, a jury could reasonably conclude there is a recognized market for new tires such that Aspen was not required to give notice of its disposition of the tires repossessed from Bodge, pursuant to section 9504, subdivision (3). ", "Accordingly, the court erred to the extent its granting of nonsuit was based on Aspen's failure to give proper notice of its intended disposition of the tires.", "\n\nV\n\nDid the Trial Court Err in Basing Its Grant of Nonsuit on Aspen's Retention of the Collateral?", "\n(8) Without citing any supporting authority, the trial court decided that Aspen was barred from seeking a deficiency judgment because it elected to retain the repossessed collateral rather than conducting a sale. ", "Since Aspen's opening statement establishes the collateral was sold \"or otherwise disposed of\" under section 9504, as discussed above, the court erred in basing nonsuit on the conclusion that Aspen elected to retain the collateral in lieu of a sale.", "\nAssuming arguendo the collateral was not sold but retained and commingled, as permitted by section 9207, the trial court nevertheless erred in ruling *1827 as a matter of law that such retention bars a deficiency judgment. ", "In re Crosby (Bankr. ", "9th Cir.1994) 176 Bankr. ", "189 is instructive. ", "Crosby noted:\n\"... there exist three points of view on whether a secured party should be held to have retained collateral in satisfaction of a debtor's obligation, even though the security holder never made a proposal in writing [as required by section 9505].[[11]]\n\"Under the first viewpoint, `[a]n election to take the collateral in full satisfaction will not be implied; it must be made by written notice to the debtor.' [", "Citation.]", "\n\"While both the second and third viewpoints allow implied elections to retain collateral in satisfaction of indebtedness, one is based on duration and the other on the secured party's intent. ", "The second viewpoint holds that an election may be implied from an unreasonably prolonged retention of collateral by the secured party. [", "Citation.] ...", "\n\"The third viewpoint allows an implied election, but only if it is shown that the secured party manifested an intent to accept the collateral in satisfaction of the obligation. [", "Citation.] ", "The debtor bears the burden of showing that the secured party manifested an intent to retain the collateral in satisfaction of the obligation under the third viewpoint. [", "Citation.]\" (", "176 Bankr. ", "at p. 193.)", "\nCrosby noted the California Supreme Court has not decided which viewpoint is to be followed in California, and apparently no California appellate court has addressed the issue either. ", "However, under any of the viewpoints adopted by other jurisdictions it would be error to conclude as a matter of law, based on Aspen's opening statement, that Aspen elected to retain the repossessed tires, worth about $7,000, in full satisfaction of a debt in an amount exceeding $103,000.", "\nFirst, there is no indication in Aspen's opening statement, nor does Bodge contend, that Aspen gave written notice of such election to Bodge under section 9505.", "\nSecond, whether a sale of collateral is conducted in a commercially reasonable manner is generally a question of fact. (", "U.S. Roofing, Inc. v. *1828 Credit Alliance Corp. (1991) 228 Cal. ", "App.3d 1431, 1453 [279 Cal. ", "Rptr. ", "533].) ", "Accordingly, assuming the tires were retained and not sold or \"otherwise disposed of,\" whether Aspen's delay in conducting a sale was unreasonable to the point of constituting an implied election to retain the tires in satisfaction of the entire debt is a question of fact to be decided at trial. ", "Such implied election cannot be deemed to have been made as a matter of law based on Aspen's stipulated opening statement construed in the light most favorable to Aspen.", "\nFinally, there is nothing in Aspen's stipulated opening statement from which it could be inferred Aspen intended to accept the tires in satisfaction of the entire debt. ", "To the contrary, Aspen expressly stated in its opening statement, \"At no time did Aspen intend to take the repossessed tires in satisfaction of the $103,000 debt.\"", "\nThe trial court erred in concluding Aspen was barred from seeking a deficiency judgment because it elected to retain rather than sell the collateral.", "\n\nVI\n\nConclusion\nAspen's action is not properly viewed as a unified foreclosure action under section 9501, subdivision (4)(a)(ii) because it would not be commercially reasonable for Aspen to foreclose against its real and personal property collateral in a single unified foreclosure sale as contemplated by that provision. ", "Therefore, Aspen's proceedings against its personal property collateral are governed by the California Uniform Commercial Code.", "\nIt was error to grant nonsuit against Aspen on the ground Aspen failed to comply with the notice-of-sale requirement of section 9504, subdivision (3). ", "The facts alleged in Aspen's stipulated opening statement establish that Aspen sufficiently complied with that notice requirement by notifying Bodge it had inventoried the repossessed tires and credited Bodge for their wholesale value prior to returning the tires to inventory to be sold in the course of business. ", "Alternatively, nonsuit on that ground was improper because the trier of fact could have found, based on the factual contentions in Aspen's stipulated opening statement, that the repossessed tires were collateral \"of a type customarily sold on a recognized market\" within the meaning of section 9504, subdivision (3), and therefore could be sold without notice to Bodge, pursuant to that section.", "\nNonsuit was not properly granted on the ground Aspen elected to retain the collateral in full satisfaction of the debt because it could not be concluded from Aspen's stipulated opening statement that the collateral was *1829 retained. ", "Alternatively, assuming the collateral was retained, it could not be concluded from Aspen's stipulated opening statement that written notice of intent to retain the collateral in satisfaction of the debt was given pursuant to section 9505, that Aspen's retention of the collateral was of an unreasonable duration, or that Aspen manifested any intent to retain the collateral in satisfaction of the debt.", "\n\nDISPOSITION\nThe judgment of nonsuit is reversed and the case is remanded for trial. ", "Defendants' cross-appeal is moot and therefore dismissed.", "\nBenke, Acting P.J., and Nares, J., concurred.", "\nA petition for a rehearing was denied September 27, 1995, and the petition of defendants and appellants for review by the Supreme Court was denied December 21, 1995. ", "Mosk, J., was of the opinion that the petition should be granted.", "\nNOTES\n[1] All statutory references are to the California Uniform Commercial Code unless otherwise specified.", "\n[2] See Hirsch et al., ", "The U.C.C. Mixed Collateral Statute — Has Paradise Really Been Lost? (", "1988) 36 UCLA L.Rev. ", "1, 2.", "\n[3] Section 9501, subdivision (4)(a)(ii) provides in relevant part: \"(4) If an obligation secured by a security interest in personal property or fixtures ... is also secured by an interest in real property or an estate therein: [¶] (a) The secured party may ... [¶] (ii) Proceed in any sequence, as to both some or all of the real property and some or all of the personal property or fixtures in accordance with the secured party's rights and remedies in respect of the real property, by including the portion of the personal property or fixtures selected by the secured party in the judicial or nonjudicial foreclosure of the real property in accordance with the procedures applicable to real property. ", "In proceeding under this subparagraph, (A) no provision of this chapter other than this subparagraph ... [and other specified provisions of section 9501] shall apply to any aspect of the foreclosure; (B) a power of sale under the deed of trust or mortgage shall be exercisable with respect to both the real property and the personal property or fixtures being sold; and (C) the sale may be conducted by the mortgagee under the mortgage or by the trustee under the deed of trust. ", "The secured party shall not be deemed to have elected irrevocably to proceed as to both real property and personal property or fixtures as provided in this subparagraph with respect to any particular property, unless and until that particular property has been actually disposed of pursuant to a unified sale (judicial or nonjudicial) conducted in accordance with the procedures applicable to real property, and then only as to the property so sold.\"", "\n[4] In relevant part, section 9504, subdivision (3) states: \"A sale or lease of collateral may be as a unit or in parcels, at wholesale or retail and at any time and place and on any terms, provided the secured party acts in good faith and in a commercially reasonable manner. ", "Unless collateral is perishable or threatens to decline speedily in value or is of a type customarily sold on a recognized market, the secured party must give to the debtor ... a notice in writing of the time and place of any public sale or of the time on or after which any private sale or other intended disposition is to be made.\"", "\n[5] Section 9504, subdivision (1) states in pertinent part: \"A secured party after default may sell, lease or otherwise dispose of any or all of the collateral in its then condition or following any commercially reasonable preparation or processing.\"", "\n[6] In fact, Aspen gave notice of sale of the repossessed tires after Bodge moved for nonsuit.", "\n[7] The court further articulated its contradictory reasoning in open court when granting nonsuit. ", "When Aspen's counsel asked if the court was finding, as a matter of law, that a sale had been conducted under section 9504, the court responded, \"No. ", "I am saying [Aspen] did not follow the necessary procedures of notice and notice of sale to allow them to proceed by way of a deficiency judgment.\" ", "When Aspen's counsel then suggested that the court had to find a sale in order to conclude that notice was required to be given, the court replied, \"No, counsel. ", "There [are] ways to proceed. ", "There [are] ways to retain the goods without conducting a sale, or there is conducting a sale. ", "It's my understanding there hasn't been a sale conducted, so there has been no notice of giving a sale. ", "And that by electing to proceed in the retention remedy area, that they have charted a course that prohibits them from obtaining a deficiency judgment.\"", "\n\nAspen's counsel then asked if the court was finding as a matter of law that it was unreasonable for Aspen to have held onto the collateral since it was repossessed without conducting a sale. ", "The court responded, \"No. ", "I think I go back to my other statement. ", "Once they take it and retain it and proceed in that course, I don't feel it's necessary for the court to make a ruling as to whether or not that was reasonable. ", "I think they have made a choice of which course they are going to take, whether they are going to go by way of sale or whether they are going to go by way of retention. ", "And the fact that they take retention, they are then prohibiting a deficiency judgment procedure.\"", "\nThus, the court apparently concluded that retention of collateral by a secured creditor for some unspecified period of time without conduct of a sale bars a deficiency judgment as a matter of law, regardless whether such retention is commercially reasonable.", "\n[8] A requirement that the debtor assert any objection and demand for a segregated sale within a reasonable time after receiving notice of credit for the value of commingled fungible collateral would preclude the debtor's attempting to take unfair advantage of an increase in the market price of the collateral occurring long after it is repossessed.", "\n[9] See ante, page 1820, footnote 4.", "\n[10] See cases collected at 9-504 through 11-108 Uniform Commercial Code Case Digest (1988) section 9504.31, pages 162-170.", "\n[11] Section 9505, subdivision (2) provides, in pertinent part: \"[A] secured party in posession [of collateral] may, after default, propose to retain the collateral in satisfaction of the obligation. ", "Written notice of such proposal shall be sent to the debtor if he has not signed after default a statement renouncing or modifying his rights under this subdivision....\"\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0, 0, 0, 0.034482758620689655, 0.02040816326530612, 0, 0, 0, 0.015873015873015872, 0, 0.044642857142857144, 0.030612244897959183, 0.02030456852791878, 0, 0.008888888888888889, 0, 0.0064516129032258064, 0, 0.007407407407407408, 0.007407407407407408, 0.009009009009009009, 0.01282051282051282, 0.007692307692307693, 0.007633587786259542, 0.011235955056179775, 0.006535947712418301, 0.009345794392523364, 0.007352941176470588, 0.002793296089385475, 0.004366812227074236, 0.0034602076124567475, 0, 0, 0, 0.014705882352941176, 0, 0, 0.005780346820809248, 0.02702702702702703, 0, 0, 0, 0.005813953488372093, 0.011627906976744186, 0.00411522633744856, 0.003968253968253968, 0, 0, 0, 0.003663003663003663, 0.007462686567164179, 0, 0, 0, 0, 0, 0.06666666666666667, 0.014285714285714285, 0.045454545454545456, 0.08333333333333333, 0, 0.004524886877828055, 0, 0.058823529411764705, 0.03125, 0, 0, 0, 0, 0, 0, 0, 0.004048582995951417, 0.005208333333333333, 0, 0.005706134094151213, 0.008928571428571428, 0, 0, 0, 0, 0, 0.0040650406504065045, 0.009345794392523364, 0, 0, 0, 0, 0, 0.022727272727272728, 0.03278688524590164, 0, 0, 0, 0, 0, 0, 0.005037783375314861, 0, 0, 0, 0.006535947712418301, 0.007246376811594203, 0, 0, 0, 0, 0, 0, 0.02903225806451613, 0.021505376344086023, 0.030303030303030304, 0, 0, 0.0026595744680851063, 0.029850746268656716, 0.004484304932735426, 0.03125, 0, 0, 0.016, 0.00684931506849315, 0.0025252525252525255, 0.0034965034965034965, 0.09090909090909091, 0.013888888888888888, 0, 0.008547008547008548, 0.007142857142857143, 0.006060606060606061, 0, 0, 0.0625, 0.017543859649122806, 0, 0, 0.05405405405405406, 0, 0, 0, 0, 0, 0.041666666666666664, 0, 0, 0, 0.00404040404040404, 0, 0.003937007874015748, 0, 0, 0, 0, 0, 0, 0, 0.01092896174863388, 0, 0.006289308176100629, 0.020202020202020204, 0, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005405405405405406, 0.0034602076124567475, 0.012422360248447204, 0, 0.030303030303030304, 0, 0, 0, 0.006734006734006734, 0.005917159763313609, 0, 0.006134969325153374, 0, 0.0030959752321981426, 0.007874015748031496, 0, 0.006349206349206349, 0, 0, 0.0024813895781637717, 0, 0, 0.043478260869565216, 0.005988023952095809, 0.03076923076923077, 0.00909090909090909, 0, 0.014285714285714285, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0, 0.010416666666666666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.006855
5
[ { "analysis_explanation": null, "end": 26, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16 }, { "analysis_explanation": null, "end": 214, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199 }, { "analysis_explanation": null, "end": 247, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230 }, { "analysis_explanation": null, "end": 312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298 }, { "analysis_explanation": null, "end": 331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317 }, { "analysis_explanation": null, "end": 372, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 367 }, { "analysis_explanation": null, "end": 427, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 413 }, { "analysis_explanation": null, "end": 519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514 }, { "analysis_explanation": null, "end": 543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 537 }, { "analysis_explanation": null, "end": 559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 548 }, { "analysis_explanation": null, "end": 579, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574 }, { "analysis_explanation": null, "end": 688, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 683 }, { "analysis_explanation": null, "end": 804, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 799 }, { "analysis_explanation": null, "end": 866, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 861 }, { "analysis_explanation": null, "end": 904, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 899 }, { "analysis_explanation": null, "end": 1002, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 997 }, { "analysis_explanation": null, "end": 1360, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1342 }, { "analysis_explanation": null, "end": 1527, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1523 }, { "analysis_explanation": null, "end": 2074, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2069 }, { "analysis_explanation": null, "end": 2155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2150 }, { "analysis_explanation": null, "end": 2276, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2271 }, { "analysis_explanation": null, "end": 2395, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2390 }, { "analysis_explanation": null, "end": 2458, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2453 }, { "analysis_explanation": null, "end": 2512, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2507 }, { "analysis_explanation": null, "end": 2543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2538 }, { "analysis_explanation": null, "end": 2585, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2580 }, { "analysis_explanation": null, "end": 2658, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2653 }, { "analysis_explanation": null, "end": 2676, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2671 }, { "analysis_explanation": null, "end": 2775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2770 }, { "analysis_explanation": null, "end": 2788, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2783 }, { "analysis_explanation": null, "end": 2817, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2812 }, { "analysis_explanation": null, "end": 2947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2942 }, { "analysis_explanation": null, "end": 3055, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3050 }, { "analysis_explanation": null, "end": 3173, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3168 }, { "analysis_explanation": null, "end": 3252, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3247 }, { "analysis_explanation": null, "end": 3318, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3313 }, { "analysis_explanation": null, "end": 3350, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3345 }, { "analysis_explanation": null, "end": 3388, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3383 }, { "analysis_explanation": null, "end": 3428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3423 }, { "analysis_explanation": null, "end": 3512, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3507 }, { "analysis_explanation": null, "end": 3595, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3590 }, { "analysis_explanation": null, "end": 3699, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3694 }, { "analysis_explanation": null, "end": 3789, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3784 }, { "analysis_explanation": null, "end": 3853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3848 }, { "analysis_explanation": null, "end": 3859, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3855 }, { "analysis_explanation": null, "end": 3894, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3881 }, { "analysis_explanation": null, "end": 3945, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3940 }, { "analysis_explanation": null, "end": 4089, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4084 }, { "analysis_explanation": null, "end": 4296, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4291 }, { "analysis_explanation": null, "end": 4459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4454 }, { "analysis_explanation": null, "end": 4499, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4494 }, { "analysis_explanation": null, "end": 5170, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5166 }, { "analysis_explanation": null, "end": 5209, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5207 }, { "analysis_explanation": null, "end": 5420, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5415 }, { "analysis_explanation": null, "end": 5426, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5422 }, { "analysis_explanation": null, "end": 5530, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5525 }, { "analysis_explanation": null, "end": 5678, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5673 }, { "analysis_explanation": null, "end": 5890, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5885 }, { "analysis_explanation": null, "end": 6009, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6005 }, { "analysis_explanation": null, "end": 6126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6122 }, { "analysis_explanation": null, "end": 7024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7019 }, { "analysis_explanation": null, "end": 7131, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7126 }, { "analysis_explanation": null, "end": 7453, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7449 }, { "analysis_explanation": null, "end": 8829, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8816 }, { "analysis_explanation": null, "end": 8928, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8926 }, { "analysis_explanation": null, "end": 8950, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8945 }, { "analysis_explanation": null, "end": 9043, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9038 }, { "analysis_explanation": null, "end": 9346, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9342 }, { "analysis_explanation": null, "end": 9457, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9437 }, { "analysis_explanation": null, "end": 10265, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10260 }, { "analysis_explanation": null, "end": 10711, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10707 }, { "analysis_explanation": null, "end": 10754, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10749 }, { "analysis_explanation": null, "end": 10849, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10829 }, { "analysis_explanation": null, "end": 10908, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10903 }, { "analysis_explanation": null, "end": 11134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11129 }, { "analysis_explanation": null, "end": 11187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11182 }, { "analysis_explanation": null, "end": 11344, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11339 }, { "analysis_explanation": null, "end": 11443, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11438 }, { "analysis_explanation": null, "end": 11458, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11453 }, { "analysis_explanation": null, "end": 11658, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11653 }, { "analysis_explanation": null, "end": 11853, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11848 }, { "analysis_explanation": null, "end": 11996, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11991 }, { "analysis_explanation": null, "end": 12339, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12334 }, { "analysis_explanation": null, "end": 12515, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12510 }, { "analysis_explanation": null, "end": 12663, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12659 }, { "analysis_explanation": null, "end": 13201, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13189 }, { "analysis_explanation": null, "end": 13440, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13435 }, { "analysis_explanation": null, "end": 13575, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13570 }, { "analysis_explanation": null, "end": 13670, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13665 }, { "analysis_explanation": null, "end": 13704, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13699 }, { "analysis_explanation": null, "end": 13807, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13802 }, { "analysis_explanation": null, "end": 14299, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14294 }, { "analysis_explanation": null, "end": 14349, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14344 }, { "analysis_explanation": null, "end": 14991, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14987 }, { "analysis_explanation": null, "end": 15078, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15074 }, { "analysis_explanation": null, "end": 16485, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16480 }, { "analysis_explanation": null, "end": 16610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16605 }, { "analysis_explanation": null, "end": 16772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16767 }, { "analysis_explanation": null, "end": 17410, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17405 }, { "analysis_explanation": null, "end": 17557, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17552 }, { "analysis_explanation": null, "end": 17721, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17716 }, { "analysis_explanation": null, "end": 17794, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17789 }, { "analysis_explanation": null, "end": 17812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17807 }, { "analysis_explanation": null, "end": 17888, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17883 }, { "analysis_explanation": null, "end": 18257, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18252 }, { "analysis_explanation": null, "end": 18315, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18310 }, { "analysis_explanation": null, "end": 18372, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18367 }, { "analysis_explanation": null, "end": 18424, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18419 }, { "analysis_explanation": null, "end": 18525, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18515 }, { "analysis_explanation": null, "end": 19190, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19186 }, { "analysis_explanation": null, "end": 19209, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19206 }, { "analysis_explanation": null, "end": 19281, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19277 }, { "analysis_explanation": null, "end": 19291, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19287 }, { "analysis_explanation": null, "end": 19389, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19382 }, { "analysis_explanation": null, "end": 19395, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19391 }, { "analysis_explanation": null, "end": 19405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19401 }, { "analysis_explanation": null, "end": 19433, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19427 }, { "analysis_explanation": null, "end": 19481, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19478 }, { "analysis_explanation": null, "end": 19486, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19482 }, { "analysis_explanation": null, "end": 19539, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19530 }, { "analysis_explanation": null, "end": 19545, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19541 }, { "analysis_explanation": null, "end": 19550, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19546 }, { "analysis_explanation": null, "end": 19595, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19589 }, { "analysis_explanation": null, "end": 19606, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19599 }, { "analysis_explanation": null, "end": 19612, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19608 }, { "analysis_explanation": null, "end": 19617, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19613 }, { "analysis_explanation": null, "end": 19694, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19690 }, { "analysis_explanation": null, "end": 19716, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19712 }, { "analysis_explanation": null, "end": 20710, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20703 }, { "analysis_explanation": null, "end": 20727, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20715 }, { "analysis_explanation": null, "end": 20812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20803 }, { "analysis_explanation": null, "end": 20850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20843 }, { "analysis_explanation": null, "end": 20875, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20871 }, { "analysis_explanation": null, "end": 20886, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20881 }, { "analysis_explanation": null, "end": 20889, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20887 }, { "analysis_explanation": null, "end": 20923, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20911 }, { "analysis_explanation": null, "end": 20952, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20947 }, { "analysis_explanation": null, "end": 21030, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21024 }, { "analysis_explanation": null, "end": 21418, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21409 }, { "analysis_explanation": null, "end": 21515, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21508 }, { "analysis_explanation": null, "end": 21532, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21520 }, { "analysis_explanation": null, "end": 21786, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21782 }, { "analysis_explanation": null, "end": 21791, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21787 }, { "analysis_explanation": null, "end": 21824, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21820 }, { "analysis_explanation": null, "end": 22041, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22036 }, { "analysis_explanation": null, "end": 22471, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22464 }, { "analysis_explanation": null, "end": 22560, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22556 }, { "analysis_explanation": null, "end": 22741, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22731 }, { "analysis_explanation": null, "end": 22764, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22760 }, { "analysis_explanation": null, "end": 22779, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22774 }, { "analysis_explanation": null, "end": 22910, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22905 }, { "analysis_explanation": null, "end": 23650, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23646 }, { "analysis_explanation": null, "end": 23844, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23838 }, { "analysis_explanation": null, "end": 23855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23848 }, { "analysis_explanation": null, "end": 24016, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24007 }, { "analysis_explanation": null, "end": 24602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24598 }, { "analysis_explanation": null, "end": 24656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24651 }, { "analysis_explanation": null, "end": 24866, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24847 }, { "analysis_explanation": null, "end": 25213, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25208 }, { "analysis_explanation": null, "end": 25787, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25782 }, { "analysis_explanation": null, "end": 25845, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25840 }, { "analysis_explanation": null, "end": 26064, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26059 }, { "analysis_explanation": null, "end": 26151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26146 }, { "analysis_explanation": null, "end": 26281, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26276 }, { "analysis_explanation": null, "end": 26413, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26406 }, { "analysis_explanation": null, "end": 26422, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26417 }, { "analysis_explanation": null, "end": 26533, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26528 }, { "analysis_explanation": null, "end": 26678, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26673 }, { "analysis_explanation": null, "end": 26864, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26859 }, { "analysis_explanation": null, "end": 27072, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27068 }, { "analysis_explanation": null, "end": 27152, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27146 }, { "analysis_explanation": null, "end": 27212, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27206 }, { "analysis_explanation": null, "end": 28392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28386 }, { "analysis_explanation": null, "end": 28491, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28481 }, { "analysis_explanation": null, "end": 28521, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28511 }, { "analysis_explanation": null, "end": 28702, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28697 }, { "analysis_explanation": null, "end": 28734, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28729 }, { "analysis_explanation": null, "end": 28898, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28893 }, { "analysis_explanation": null, "end": 28934, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28929 }, { "analysis_explanation": null, "end": 28954, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28949 }, { "analysis_explanation": null, "end": 29000, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28995 }, { "analysis_explanation": null, "end": 29169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29165 }, { "analysis_explanation": null, "end": 29197, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29193 }, { "analysis_explanation": null, "end": 29636, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29631 }, { "analysis_explanation": null, "end": 29714, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29709 }, { "analysis_explanation": null, "end": 29750, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29745 }, { "analysis_explanation": null, "end": 29819, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29814 }, { "analysis_explanation": null, "end": 29907, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29902 }, { "analysis_explanation": null, "end": 29972, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29967 }, { "analysis_explanation": null, "end": 30090, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30085 }, { "analysis_explanation": null, "end": 30384, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30379 }, { "analysis_explanation": null, "end": 30536, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30531 }, { "analysis_explanation": null, "end": 30691, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30686 }, { "analysis_explanation": null, "end": 30711, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30706 }, { "analysis_explanation": null, "end": 30825, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30820 }, { "analysis_explanation": null, "end": 30877, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30872 }, { "analysis_explanation": null, "end": 30947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30942 }, { "analysis_explanation": null, "end": 31007, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31002 }, { "analysis_explanation": null, "end": 31250, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31245 }, { "analysis_explanation": null, "end": 31482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31477 }, { "analysis_explanation": null, "end": 31517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31510 }, { "analysis_explanation": null, "end": 31562, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31557 }, { "analysis_explanation": null, "end": 31673, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31668 }, { "analysis_explanation": null, "end": 31734, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31730 }, { "analysis_explanation": null, "end": 31834, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31829 }, { "analysis_explanation": null, "end": 31995, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31990 }, { "analysis_explanation": null, "end": 32072, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32067 }, { "analysis_explanation": null, "end": 32296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32291 }, { "analysis_explanation": null, "end": 32309, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32305 }, { "analysis_explanation": null, "end": 32324, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32322 }, { "analysis_explanation": null, "end": 32393, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32375 }, { "analysis_explanation": null, "end": 32501, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32484 }, { "analysis_explanation": null, "end": 32507, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32503 }, { "analysis_explanation": null, "end": 32511, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32509 }, { "analysis_explanation": null, "end": 32701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32688 }, { "analysis_explanation": null, "end": 32778, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32774 }, { "analysis_explanation": null, "end": 32799, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32798 }, { "analysis_explanation": null, "end": 35319, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35314 }, { "analysis_explanation": null, "end": 35376, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35371 }, { "analysis_explanation": null, "end": 35506, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35501 }, { "analysis_explanation": null, "end": 35664, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35659 }, { "analysis_explanation": null, "end": 35804, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35799 }, { "analysis_explanation": null, "end": 36342, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36337 }, { "analysis_explanation": null, "end": 36442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36437 }, { "analysis_explanation": null, "end": 37659, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37655 }, { "analysis_explanation": null, "end": 37764, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37760 }, { "analysis_explanation": null, "end": 8920, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8916 }, { "analysis_explanation": null, "end": 32792, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 32788 }, { "analysis_explanation": null, "end": 165, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 158 } ]
[ "Relationship between tests of physical qualities and physical match performance in elite rugby league players.", "\nPrevious investigators have reported significant relationships between tests of physical qualities and physical match performance in high-intensity, intermittent team sport (e.g., soccer) players. ", "Although rugby league requires competitors to perform high-intensity running, unlike most other high-intensity intermittent team sports, the physical demands are significantly increased through the large amounts of tackling, wrestling, and grappling that players are required to perform during match play. ", "This study investigated the relationship between tests of physical qualities and match performance in professional rugby league players and determined whether running capacities were associated with the collision and repeated high-intensity effort demands of match play. ", "Thirty-eight elite rugby league players (mean ± SD, age, 23.1 ± 2.7 years) performed tests of repeated sprint ability (12 × 20-m sprints on a 20-second cycle), prolonged high-intensity intermittent running ability (8 × 12-second shuttle sprints on a 48-second cycle), and estimated maximal aerobic power (VO2max) (multistage fitness test). ", "Global positioning system data were collected during 16 professional rugby league matches. ", "Players with better, prolonged, high-intensity intermittent running ability covered greater total distance and greater distance in high-speed running during match play. ", "However, inconsistent relationships were found between tests of running abilities and other match performance variables, with prolonged high-intensity running ability (negative), VO2max (positive), and repeated-sprint ability (no relationship) differentially associated with the total number of collisions and repeated high-intensity effort bouts performed in competition. ", "These findings demonstrate the importance of prolonged high-intensity running ability to the match running performance of elite rugby league players but also highlight the need for game-specific conditioning to prepare players for the high-intensity collision and repeated-effort demands of the game." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 958, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 949 }, { "analysis_explanation": null, "end": 1036, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1027 }, { "analysis_explanation": null, "end": 1144, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1135 } ]
[ "Raimund Hilger\n\nRaimund Hilger (born 13 December 1965) is a German ice hockey player. ", "He competed in the men's tournaments at the 1992 Winter Olympics and the 1994 Winter Olympics.", "\n\nReferences\n\nCategory:1965 births\nCategory:Living people\nCategory:German ice hockey players\nCategory:Olympic ice hockey players of Germany\nCategory:Ice hockey players at the 1992 Winter Olympics\nCategory:Ice hockey players at the 1994 Winter Olympics\nCategory:Sportspeople from Bavaria\nCategory:People from Rosenheim" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.023255813953488372, 0, 0 ]
0.007752
5
[ { "analysis_explanation": null, "end": 30, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 53, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40 }, { "analysis_explanation": null, "end": 66, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60 }, { "analysis_explanation": null, "end": 134, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130 }, { "analysis_explanation": null, "end": 163, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159 }, { "analysis_explanation": null, "end": 252, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246 }, { "analysis_explanation": null, "end": 318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311 }, { "analysis_explanation": null, "end": 358, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354 }, { "analysis_explanation": null, "end": 414, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410 }, { "analysis_explanation": null, "end": 496, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487 } ]
[ "Share Article\n\n#HylandsFYFL shares an intimate glimpse into what it takes to succeed in the world’s most prestigious running event.", "\n\n“In a marathon, while everyone runs the same physical 26.2 miles, each of us crosses a very unique finish line, our own personal tale of victory,” said Lisa Shapiro, Hyland’s Brand Manager.", "\n\nLos Angeles, CA (PRWEB)March 30, 2016\n\nHyland’s, the country’s oldest and largest homeopathic medicine manufacturer and proud partner of the Boston Marathon®, is pleased to announce the launch of its “Find Your Finish Line” campaign. ", "Find Your Finish Line (#HylandsFYFL) is dedicated to encouraging runners everywhere by sharing the inspirational personal stories of a select group of marathon runners. ", "The campaign uses these narratives to encourage all athletes to discover their own unique finish line, challenge to tackle, or obstacle to overcome. ", "Hyland’s Leg Cramps, the Official Cramp Relief Partner of the Boston Marathon, will support all runners before, during and after the 120th running of the world’s most historic road race.", "\n\n“In a marathon, while everyone runs the same physical 26.2 miles, each of us crosses a very unique finish line, our own personal tale of victory,” said Lisa Shapiro, Hyland’s Brand Manager. “", "We want to help runners discover what that finish line will be and then cheer them on the whole way there.”", "\n\nHyland’s FYFL campaign commits to inspiring, educating and energizing runners as they journey towards the historic Boston Marathon, whether as a seasoned participant or a first time runner. ", "The campaign includes a content-rich website dedicated to providing runners with motivational resources and practical tips to help achieve their athletic aspirations.", "\n\nAdditionally, 10 Boston runners have been invited to kick off the Hyland’s inaugural FYFL campaign. ", "Each of these participants will submit 26 social media posts, over 26 days. ", "The challenges will showcase each runner’s journey of self-discovery, including hearty mental and emotional conditioning, and give athletes everywhere the opportunity to vicariously prepare for the Boston Marathon.", "\n\nHyland’s invites all athletes to share their personal finish line stories on social media using #HylandsFYFL.", "\n\nAs part of the #HylandsFYFL campaign, Hyland’s will have subject matter experts throughout the campaign to encourage, motivate and help participants be successful:\n\nSarah Bowen Shea, author of the “Another Mother Runner” book series and co-founder of Another Mother Runner\n\nHyland’s, a trusted maker of homeopathic medicines for over 100 years, will exhibit at booth #520 at the John Hancock Sports and Fitness Expo and provide resources to runners throughout the race weekend. ", "To learn more about Find Your Finish Line, visit Hylands.com/findyourfinishline. ", "Follow or join the Find Your Finish Line conversation, #HylandsFYFL. ", "To learn more about Hyland’s Leg Cramps products, visit Hylands.com/products/hylands-leg-cramps and watch the video.", "\n\nABOUT HYLAND’S\nHyland’s, Inc., a division of Standard Homeopathic Co., develops homeopathic medicines with the highest‐quality natural ingredients, following the strictest standards of preparation. ", "With its commitment to excellence for over a century, Hyland’s consistently provides quality and integrity in every product. ", "From Hyland’s Baby Teething Tablets to Hyland’s Calms Forté, Hyland's cares for families at every stage of life. ", "Consumers can trust all Hyland’s products to be natural, gentle, effective and safe for the entire family. ", "For more information on products, visit http://www.hylands.com\n\nABOUT THE BOSTON ATHLETIC ASSOCIATION (B.A.A.)\nEstablished in 1887, the Boston Athletic Association is a non-profit organization with a mission of promoting a healthy lifestyle through sports, especially running. ", "The B.A.A.’s Boston Marathon is the world's oldest annual marathon. ", "The B.A.A. manages other local events and supports comprehensive charity, youth and year-round running programs, including high performance athletes and running clubs. ", "Since 1986, the principal sponsor of the Boston Marathon has been John Hancock Financial. ", "The Boston Marathon is part of the Abbott World Marathon Majors, along with international marathons in Tokyo, London, Berlin, Chicago and New York City. ", "More than 60,000 runners will participate in B.A.A. events in 2016. ", "The 120th Boston Marathon will be held on Monday, April 18, 2016. ", "For more information on the B.A.A., please visit http://www.baa.org." ]
{ "pile_set_name": "Pile-CC" }
[ 0.015267175572519083, 0.010471204188481676, 0.00423728813559322, 0, 0, 0.010752688172043012, 0.010362694300518135, 0, 0.005208333333333333, 0, 0.0196078431372549, 0, 0, 0, 0.008333333333333333, 0, 0, 0.008620689655172414, 0.015, 0.008, 0.02654867256637168, 0.009345794392523364, 0.010830324909747292, 0, 0, 0.022222222222222223, 0.013071895424836602, 0, 0.015151515151515152, 0.029411764705882353 ]
0.008081
5
[ { "analysis_explanation": null, "end": 296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284 }, { "analysis_explanation": null, "end": 333, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 322 }, { "analysis_explanation": null, "end": 337, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 335 }, { "analysis_explanation": null, "end": 359, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 351 }, { "analysis_explanation": null, "end": 880, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 874 }, { "analysis_explanation": null, "end": 893, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 883 }, { "analysis_explanation": null, "end": 1225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1213 }, { "analysis_explanation": null, "end": 1367, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1361 }, { "analysis_explanation": null, "end": 1741, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1735 }, { "analysis_explanation": null, "end": 1892, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1885 }, { "analysis_explanation": null, "end": 2400, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2384 }, { "analysis_explanation": null, "end": 2562, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2548 }, { "analysis_explanation": null, "end": 2695, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2679 }, { "analysis_explanation": null, "end": 2873, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2867 }, { "analysis_explanation": null, "end": 3214, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3200 }, { "analysis_explanation": null, "end": 3332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3326 }, { "analysis_explanation": null, "end": 3637, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3633 }, { "analysis_explanation": null, "end": 3841, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3835 }, { "analysis_explanation": null, "end": 4030, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4026 }, { "analysis_explanation": null, "end": 4218, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4213 }, { "analysis_explanation": null, "end": 4226, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4220 }, { "analysis_explanation": null, "end": 4234, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4228 }, { "analysis_explanation": null, "end": 4243, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4236 }, { "analysis_explanation": null, "end": 4261, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4248 }, { "analysis_explanation": null, "end": 4314, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4308 }, { "analysis_explanation": null, "end": 4329, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4325 }, { "analysis_explanation": null, "end": 4395, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4373 }, { "analysis_explanation": null, "end": 3569, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 3547 }, { "analysis_explanation": null, "end": 4464, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 4446 }, { "analysis_explanation": null, "end": 2777, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2746 }, { "analysis_explanation": null, "end": 2942, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2903 } ]
[ "A couple of years ago, your correspondent would have tripped over himself running to his laptop to condemn England rugby union coach Eddie Jones for saying rugby league “is not a skilful game”.", "\n\nI’ve seen that one media outlet has already compiled a video dossier to disprove Jones’ claims – a sort of new-media open letter.", "\n\nFor those who aren’t aware, Jones made the comment when asked about Sam Burgess’s failed foray into the 15-man game.", "\n\nFacebook Twitter Whatsapp Reddit Email Share\n\nRugby league is a small sport that gets very tetchy when it starts being treated like a small sport. ", "This writer has been as guilty as anyone of leading the charge of the treiziste peasants against enemies real and imagined for years now.", "\n\nBut learning to deal with criticism in a mature way is part of the process of growing up and this is a perfect opportunity for us to take a little step forward in this regard. ", "It’s time to care a good deal less about throwaway lines like these.", "\n\nEddie Jones is actually one of the more pro-league figures in rugby union and, to the best of my knowledge, is not a serial basher of the 13-man game.", "\n\nAside from that, it is almost inconceivable that he meant what he said. ", "Jones is not a Twickenham toff who has spent his life turning his nose up at the mere mention of Mungos. ", "He is aware of Peter Sterling and Arthur Beetson and Andrew Johns and Wally Lewis and Johnathan Thurston. ", "It beggars belief that Jones actually believes rugby league is not a skilful game.", "\n\nSo, for a start, I honestly don’t think his words came out the way he intended.", "\n\nSecondly, if someone said “football is boring”, would anyone of any note in that game’s strongholds really give a rat’s?", "\n\n\n\nThe only people offended would be those where football is not a mainstream sport. ", "People involved in the sport would be far more offended in America than Brazil, for instance.", "\n\nRugby league is a popular sport in NSW and Queensland – so in those places at least, the Jones quotes should be seen as the ravings of a lunatic and summarily dismissed.", "\n\nI can understand rugby league people in England taking Jones personally. ", "Rugby union gets infinitely more publicity there and the media will have given Jones a platform that can genuinely damage them.", "\n\nThe comments would be seen in terms of a wider “conspiracy” to English rugby league folk.", "\n\nBut when people say they don’t like Mondays, that doesn’t reflect on the future viability of Mondays.", "\n\nThere’ll still be a Monday next week. ", "And there’ll still be rugby league." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.0051813471502590676, 0, 0.01694915254237288, 0.006711409395973154, 0, 0, 0, 0.006578947368421052, 0, 0, 0.04716981132075472, 0.012195121951219513, 0, 0, 0, 0, 0.011695906432748537, 0, 0.007874015748031496, 0, 0, 0, 0 ]
0.004972
5
[ { "analysis_explanation": null, "end": 21, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 114, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107 }, { "analysis_explanation": null, "end": 144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133 }, { "analysis_explanation": null, "end": 280, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275 }, { "analysis_explanation": null, "end": 357, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 352 }, { "analysis_explanation": null, "end": 403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 392 }, { "analysis_explanation": null, "end": 720, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 715 }, { "analysis_explanation": null, "end": 982, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 971 }, { "analysis_explanation": null, "end": 1199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1194 }, { "analysis_explanation": null, "end": 1219, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1209 }, { "analysis_explanation": null, "end": 1328, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1314 }, { "analysis_explanation": null, "end": 1347, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1333 }, { "analysis_explanation": null, "end": 1364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1352 }, { "analysis_explanation": null, "end": 1380, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1369 }, { "analysis_explanation": null, "end": 1403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1385 }, { "analysis_explanation": null, "end": 1433, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1428 }, { "analysis_explanation": null, "end": 1837, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1830 }, { "analysis_explanation": null, "end": 1849, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1843 }, { "analysis_explanation": null, "end": 1903, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1900 }, { "analysis_explanation": null, "end": 1918, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1908 }, { "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": 2082, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2075 }, { "analysis_explanation": null, "end": 2095, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2090 }, { "analysis_explanation": null, "end": 2192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2187 }, { "analysis_explanation": null, "end": 2369, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2362 }, { "analysis_explanation": null, "end": 2426, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2419 }, { "analysis_explanation": null, "end": 2464, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2448 } ]
[ "\n203 U.S. 109 (1906)\nCOVINGTON AND CINCINNATI BRIDGE COMPANY\nv.\nHAGER.", "\nNo. ", "37.", "\nSupreme Court of United States.", "\nSubmitted October 17, 1906.", "\nDecided November 5, 1906.", "\nERROR TO THE CIRCUIT COURT OF THE UNITED STATES FOR THE EASTERN DISTRICT OF KENTUCKY.", "\nMr. Shelley D. Rouse and Mr. Charlton B. Thompson for plaintiff in error.", "\n*110 Mr. N.B. Hays, Attorney General of the State of Kentucky, Mr. John W. Ray and Mr. C.H. Morris, for defendant in error.", "\nMR. ", "JUSTICE DAY delivered the opinion of the court.", "\nIn this case an original action in mandamus was begun in the Circuit Court of the United States for the Eastern District of Kentucky. ", "It was brought by the Bridge Company to compel the Auditor of Public Accounts for the State to issue his warrant on the state treasury for the amount of a franchise tax collected under authority of sections 4079 and 4080 of the Kentucky Statutes. ", "The return of the tax was asked upon the ground that it levied a burden on the interstate commerce business of the Bridge Company, pertaining exclusively to commerce between Kentucky and Ohio, and was therefore repugnant to the Federal Constitution.", "\nThe Auditor appeared by counsel, and, by general demurrer, raised the question of the sufficiency of the allegations of the petition, and by special demurrer challenged the jurisdiction of the court to entertain the action. ", "The Circuit Court, passing the question of jurisdiction, held that levying the tax in question did not violate the commerce clause of the Federal Constitution, as it was a tax upon property and not upon the business of the company, sustained the general demurrer and dismissed the petition.", "\nWe are of the opinion that the court below had no jurisdiction of this action. ", "It has been too frequently decided in this court to require the citation of the cases that the Circuit Courts of the United States have no jurisdiction in original cases of mandamus, and have only power to issue such writs in aid of their jurisdiction in cases already pending, wherein jurisdiction has been acquired by other means and by other process.", "\n*111 Many of these cases are collected in 4 Federal Statutes Annotated, 503.", "\nThe question was before this court recently in Knapp v. Lake Shore & Michigan Southern Railway Co., 197 U.S. 536, an action by the Interstate Commerce Commission, by petition for mandamus in the Circuit Court of the United States for the Northern District of Ohio, against the Lake Shore and Michigan Southern Railway Company to compel it to file reports required by the act to regulate interstate commerce. ", "It was argued for the Government that while decisions of this court under the Judiciary Act of September 24, 1789, c. 20, 1 Stat. ", "73, and the act of March 3, 1875, 18 Stat. ", "470, had been construed to confer no original jurisdiction in mandamus in the United States courts, yet the act of March 3, 1887, 24 Stat. ", "552, c. 373, in view of the modern development in proceedings by mandamus, should be held to confer the jurisdiction upon the Circuit Courts to entertain original suits in mandamus. ", "The contention was rejected and the prior cases adhered to.", "\nWe deem it settled beyond controversy, until Congress shall otherwise provide, that Circuit Courts of the United States have no power to issue a writ of mandamus in an original action brought for the purpose of securing relief by the writ, and this result is not changed because the relief sought concerns an alleged right secured by the Constitution of the United States.", "\nIt follows that the Circuit Court should have dismissed the case for want of jurisdiction instead of determining it upon the merits. ", "The judgment dismissing the petition is therefore modified so as to show that the case was dismissed for want of jurisdiction, and, as thus modified, the judgment is\nAffirmed.", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0.014285714285714285, 0, 0, 0.03125, 0, 0, 0, 0.02702702702702703, 0.03225806451612903, 0, 0, 0.007407407407407408, 0.008097165991902834, 0.004016064257028112, 0, 0.0034482758620689655, 0, 0.0028328611898017, 0.012987012987012988, 0.007334963325183374, 0.007692307692307693, 0, 0, 0.01098901098901099, 0, 0.005361930294906166, 0.007462686567164179, 0, 0 ]
0.006291
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": 18, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14 }, { "analysis_explanation": null, "end": 108, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95 }, { "analysis_explanation": null, "end": 136, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120 }, { "analysis_explanation": null, "end": 162, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146 }, { "analysis_explanation": null, "end": 270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254 }, { "analysis_explanation": null, "end": 299, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279 }, { "analysis_explanation": null, "end": 342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 333 }, { "analysis_explanation": null, "end": 402, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 391 }, { "analysis_explanation": null, "end": 422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 411 }, { "analysis_explanation": null, "end": 595, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 578 }, { "analysis_explanation": null, "end": 620, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 600 }, { "analysis_explanation": null, "end": 632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 624 }, { "analysis_explanation": null, "end": 1063, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1055 }, { "analysis_explanation": null, "end": 1072, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1068 }, { "analysis_explanation": null, "end": 1855, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1838 }, { "analysis_explanation": null, "end": 2208, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2203 }, { "analysis_explanation": null, "end": 2385, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2368 }, { "analysis_explanation": null, "end": 2411, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2390 }, { "analysis_explanation": null, "end": 2419, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2415 }, { "analysis_explanation": null, "end": 2443, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2429 }, { "analysis_explanation": null, "end": 2677, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2659 }, { "analysis_explanation": null, "end": 2692, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2679 }, { "analysis_explanation": null, "end": 2696, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2694 }, { "analysis_explanation": null, "end": 2726, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2713 }, { "analysis_explanation": null, "end": 2828, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2815 }, { "analysis_explanation": null, "end": 2865, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2852 }, { "analysis_explanation": null, "end": 3237, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3220 } ]
[ "P&N Bank\n\nP&N Bank is the largest bank owned and managed in Western Australia. ", "Operating under a mutual model, P&N Bank provides retail banking services such as savings and lending products, insurance and financial planning services. ", "With a branch network of 14 branches in Western Australia, P&N Bank also has a Perth based Contact centre, online banking facilities and is part of the national rediATM network. ", " As a mutual bank there are no third party shareholders, as distinct from a listed company, members who bank with P&N Bank and hold a share in Police & Nurses Limited are the owners of the Bank. ", "P&N Bank is a member of COBA, the industry body that represents the credit unions, building societies and mutual banks in Australia and BCCM (Bureau of Credit Unions, Co-operatives and Mutuals). ", "P&N Bank is also the membership sponsor of the Perth Wildcats.", "\n\nHistory\n\nPolice & Nurses Credit Society originated in Western Australia in 1990 from the merger of the Police Credit Society of Western Australia Ltd and Western Australia Nurses Credit Society Ltd. In 2001, the organisation merged with Energy Credit Union Ltd, which was the amalgamation of a number of smaller WA credit unions, the oldest of which was established in 1949. ", "Around 15 credit unions make up P&N Bank’s history.", "\n\nIn March 2013, after obtaining regulator approval, Police & Nurses Credit Society became a mutual bank trading as P&N Bank.", "\n\nCorporate governance\n\nThe P&N Bank Board of Directors is responsible for the Corporate Governance of P&N and its controlled entities. ", "The Board manages the business in accordance with its policies, legislation, APRA prudential requirements and the Constitution of P&N. To ensure the Board can fulfil its responsibilities and comply with policies and ethical standards, a Code of Conduct and Board Charter are in place.", "\n\nAwards and recognition\n\nIn 2013 P&N Bank took out the inaugural Pinnacle Award for Marketing Excellence for their re-brand to a Bank.", "\n\nP&N Bank was awarded the Bank of the Year in the 2014 Roy Morgan Customer Satisfaction Awards \n\nP&N Bank was awarded Mutual Bank of the Year in the 2017 RfI Australian Lending Awards.", "\n\nSee also\n\n Banking in Australia\n\nReferences\n\nExternal links\n \n\nCategory:Banks of Australia" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.012658227848101266, 0.0064516129032258064, 0.011235955056179775, 0.015384615384615385, 0.020512820512820513, 0.03225806451612903, 0.007936507936507936, 0.0196078431372549, 0.016, 0.014705882352941176, 0.007042253521126761, 0.022058823529411766, 0.016216216216216217, 0 ]
0.014433
5
[ { "analysis_explanation": null, "end": 77, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60 }, { "analysis_explanation": null, "end": 291, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274 }, { "analysis_explanation": null, "end": 318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313 }, { "analysis_explanation": null, "end": 737, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 728 }, { "analysis_explanation": null, "end": 853, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 848 }, { "analysis_explanation": null, "end": 935, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 918 }, { "analysis_explanation": null, "end": 943, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 939 }, { "analysis_explanation": null, "end": 1071, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1067 }, { "analysis_explanation": null, "end": 1179, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1177 }, { "analysis_explanation": null, "end": 1238, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1234 }, { "analysis_explanation": null, "end": 1305, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1295 }, { "analysis_explanation": null, "end": 1866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1862 }, { "analysis_explanation": null, "end": 2023, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2019 }, { "analysis_explanation": null, "end": 2122, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2118 } ]
[ "Q:\n\nAny chances \"spell\" means \"pronounce\"?", "\n\nInspired by this question of mine and that @BenKovitz suggested that I should ask a new question, I attempt to do so. ", "Here goes:\n\nThe Persian Wikipedia (Persian: ویکی‌پدیا، دانشنامهٔ آزاد‎ Vikipedia, Daneshnameye Azad / \"Wikipedia, The Free Encyclopedia\") is the Persian language version of Wikipedia, spelled Vikipedia. ", "The Persian version of Wikipedia was started in December 2003. ", "It passed 1,000 articles on December 16, 2004 and 200,000 articles on July 10, 2012.The article about Persian wikipedia\n\n\"Spelled vikipedia\"? ", "I'm a native Persian speaker and I can tell you that we don't even write \"vikipedia\", since we've got our own alphabet. ", "We pronounce it that way: The w is pronounced \\v\\ instead of \\w\\ , and that must have been the point wikipedia wanted to make. ", "This would've been very very idiotic if it was a mistake. ", "So, it seems that there might have been another sense for \"spell\" than what I believed.", "\nCould \"spell\" mean \"pronounce\" or something similar in any ways?", "\n\nA:\n\nDirect answer: no, \"spell\" never means \"pronounce\". ", " Spell only refers to the letters used to form the written word.", "\nThe quote you cite would do better to use the word \"transliterated\" instead of \"spelled\". ", " OED:\n\ntransliterate: To replace (letters or characters of one language) by those of another used to represent the same sounds; to write (a word, etc.) ", "in the characters of another alphabet.", "\n\nI wouldn't go quite so far as to say that the use of the word is wrong: that is how the word is \"spelled\" in the English alphabet. ", "I would say that it is an incomplete statement; if the word \"spelled\" is used for a transliterated word, then \"in English\" should go along, in my opinion, for exactly the reason you mention.", "\nOf course, the transliteration of a word (and often there may be multiple transliterations in use, especially from languages that have sounds that do not exactly match those in English) is typically going to be based on the pronunciation of the word (possibly, as in this case, in combination with the spelling of the English translation), so there will likely be a relationship between the spelling and the pronunciation, but the two terms are never synonymous.", "\n\nA:\n\nI agree with you: that usage looks questionable to me. ", "I think that a more precise wording would be … transliterated as \"Vikipedia\". ", "Then it becomes clear that you are spelling it in an alphabet not ordinarily used for Farsi.", "\nAlternatively, just say pronounced as. ", "The focus would be slightly different: on the sound rather than the textual representation of the sound.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.008333333333333333, 0.024630541871921183, 0.015873015873015872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01282051282051282, 0.010869565217391304, 0, 0, 0 ]
0.003022
5
[ { "analysis_explanation": null, "end": 96, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86 }, { "analysis_explanation": null, "end": 203, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196 }, { "analysis_explanation": null, "end": 241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226 }, { "analysis_explanation": null, "end": 260, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243 }, { "analysis_explanation": null, "end": 375, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 368 }, { "analysis_explanation": null, "end": 425, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 412 }, { "analysis_explanation": null, "end": 472, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 455 }, { "analysis_explanation": null, "end": 504, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 497 }, { "analysis_explanation": null, "end": 546, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 529 }, { "analysis_explanation": null, "end": 589, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582 }, { "analysis_explanation": null, "end": 513, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 506 } ]
[ "It is known to provide a data acquisition system which includes a plurality of networked data acquisition units, each data acquisition unit being connected to at least one sensor and being arranged to gather survey data from the sensors. ", "The received survey data is passed via the network to a central computing device for processing. ", "Synchronisation of the received survey data is also carried out via the network.", "\nHowever, a disadvantage of this arrangement is that the gathered survey data often includes a significant amount of noise which can be of sufficiently large magnitude to obscure the desired signal response associated with a relatively deeply buried target.", "\nIn the claims which follow and in the preceding description of the invention, except where the context requires otherwise due to express language or necessary implication, the word “comprise” or variations such as “comprises” or “comprising” is used in an inclusive sense, i.e. to specify the presence of the stated features but not to preclude the presence or addition of further features in various embodiments of the invention." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0 ]
0
5
[]
[ "Background\n==========\n\nLymphomas are a heterogeneous group of cancers that are characterized by abnormal growth of tissue in the lymphatic system. ", "These disorders originate from B-lymphocytes, T-lymphocytes, and natural killer (NK) cells. ", "Between 1950 and 1999, the incidence of Non-Hodgkin's Lymphoma (NHL) increased by 90% in the United States,[@b1-cin-08-45] resulting in one of the largest documented increases in cancer. ", "This rapid increase may be a result of improved diagnostic techniques and access to medical care, the rise in HIV-related NHLs, or other causes. ", "Currently, NHL represents approximately 4% of all cancer diagnoses, being the fifth most common cancer among men and women.[@b2-cin-08-45] In 2008, 66,120 new cases of NHL and 8,220 new cases of Hodgkin lymphoma (HL) are expected to be diagnosed in the United States.[@b2-cin-08-45]\n\nThe World Health Organization (WHO) classification system divides lymphomas according to the cell of origin (B, T/NK) and incorporates morphology, immunophenotype, genetic, and clinical features to define subtypes. ", "Approximately 85% of all NHLs are of B-cell origin and the remaining 15% of T-cell origin.[@b3-cin-08-45] The WHO classification schema for NHL was devised to help aid in prognosis and treatment decision making. ", "The most frequent clinical entities recognized by the WHO classification are diffuse large B-cell lymphoma (DLBCL, 31%) and follicular lymphoma (FL, 22%). ", "The WHO classification divides HL into 2 main types: classical and lymphocyte-predominant ([Table 1](#t1-cin-08-45){ref-type=\"table\"}). ", "Classical HL accounts for 95% of the cases and is further divided into 4 subtypes: nodular sclerosis, mixed cellularity, lymphocyte-depleted, and lymphocyte-rich. ", "Current treatment modalities for lymphoma include conventional chemotherapy, immunotherapy, radioimmunotherapy, and stem cell transplant. ", "Prognostic factors such as age, performance status, and number of relapses can influence how a patient will respond to certain treatments.", "\n\nIn order to expedite the development of innovative clinical and therapeutic strategies for lymphoma, our oncology informatics group has been developing means to integrate existing clinical information into database systems that support cancer research.[@b4-cin-08-45] To this end, we designed a platform for integrated clinical and biomedical informatics research using patient-level data linking the institution's existing clinical trials, cancer registry, clinical, administrative, and pharmacy systems with biological databases. ", "However, semantic integration of data from disparate systems remains challenging even when similar concepts are represented in different data systems.", "\n\nThe Cancer Biomedical Informatics Grid\n======================================\n\nThe cancer Biomedical Informatics Grid (caBIG™)[@b5-cin-08-45],[@b6-cin-08-45] is a voluntary network or grid linking individuals and institutions to promote the sharing of data and tools. ", "The caBIG™ development and research covers clinical trials management systems, tissue banks, pathology tools, integrated cancer research, system architecture, vocabularies, common data elements, data sharing, and intellectual capital. ", "The infrastructure and tools established by caBIG™ are likely also to have broad utility outside the cancer community. ", "Currently, more than 900 individuals from over 50 National Cancer Institute (NCI)-designated cancer centers and a multitude of other organizations are working collaboratively on over 70 projects as part of the caBIG™ initiative.[@b5-cin-08-45],[@b7-cin-08-45]\n\nThe systems developed within the caBIG™ community can be organized into four levels of maturity based on different degrees of interoperability defined by the caBIG™ Compatibility Guidelines: Legacy, Bronze, Silver, and Gold.[@b7-cin-08-45],[@b8-cin-08-45] Legacy compliance implies no interoperability with an external system or resource. ", "In order to achieve Bronze compatibility, the resource should provide at least programmatic access to data through a public, documented application programming interfaces (API). ", "Silver compatibility requires more conditions, which must provide well-documented API that is based upon an object-oriented abstraction of the underlying data. ", "Gold compatibility includes a service--oriented data and analytical service grid with standardized service advertising and discovery features, and grid--level security strategy. [", "Table 2](#t2-cin-08-45){ref-type=\"table\"} details the pertinent categories that must be addressed to obtain caBIG™ Silver compliance: 1) programming and messaging interfaces; 2) vocabularies, terminologies, and ontologies; 3) data elements; and 4) information models (shown in [Table 2](#t2-cin-08-45){ref-type=\"table\"}).[@b7-cin-08-45]\n\nThe caBIG™ is creating a common, extensible informatics platform that can integrate diverse data types and support interoperable analytic tools in areas including clinical trials management, tissue banks and pathology, imaging, and integrative cancer research. [", "Table 3](#t3-cin-08-45){ref-type=\"table\"} displays the various tools, infrastructure, and data resources in caBIG™ and their roles.", "\n\nThe NCI's Center for Biomedical Informatics and Information Technology (NCIBIIT) has developed a set of software packages to support application development for cancer research, the caCORE Software Development Kit (SDK).[@b9-cin-08-45] This SDK provides a platform for data management and semantic integration.", "\n\nThe Cancer Common Ontological Representation Environment SDK\n============================================================\n\nTo establish a common representation within this SDK, the cancer Common Ontological Representation Environment (caCORE) was established to provide a framework for developing syntactically and semantically interoperable biomedical information services. ", "It has several key components: the Enterprise Vocabulary Services (EVS), the cancer Data Standards Repository (caDSR), the Cancer Bioinformatics Infrastructure Objects, and the Common Security Module. ", "A brief description for these components is included in [Table 4](#t4-cin-08-45){ref-type=\"table\"}. ", "Complete documentation and updated information on caCORE and its components can be found on the NCI Center for Bioinformatics (NCICB) web site.", "\n\nA caCORE SDK generated system has two characteristics: 1) a Model Driven Architecture that provides a conceptual framework and standards for expressing the model, relationships between models, and transformations between models using the Meta-Object Facility, Unified Modeling Language (UML), XML Metadata Interchange (XMI), and Common Warehouse Meta-model specifications, and 2) an n-tier architecture with open API. ", "When a caCORE SDK generated system is combined with controlled vocabularies and registered metadata, the resulting system is semantically integrated with all exposed API elements having runtime accessible metadata that defines the meaning of the data elements using a controlled terminology.", "\n\nThe NCICB has developed the EVS to supply controlled vocabularies, and the caDSR to provide a dynamic metadata registry[@b10-cin-08-45] specifically for cancer informatics applications. ", "Systems developed using the caCORE methodology use the same approach for defining, registering, and adopting data and representation of standards. ", "Clients of those systems can therefore extract information from multiple data sources using similar API calls, and can rely upon the semantic equivalence of the data retrieved.", "\n\nSemantic Structure of caBIG™\n============================\n\nOne of the problems confronting the biomedical data management community is the vast number of ways that similar or identical concepts are described. ", "Such inconsistency in data descriptors (metadata) makes it challenging to aggregate and manage even modest-sized data sets and share data across current information resources. ", "Consider for instance, the number of different ways that each of the 51 types of lymphoma shown in [Table 1](#t1-cin-08-45){ref-type=\"table\"} can be coded if one or more is represented in various administrative, clinical, pathological, radiology, or clinical trials databases. ", "Examples of different coding schemes include International Classification of Diseases, Tenth Revision (ICD-10) diagnosis codes,[@b11-cin-08-45] International Classification of Diseases for Oncology (ICD-O) topography and histology codes,[@b12-cin-08-45] and institutional representations within clinical trials systems that may be based on the WHO classification system[@b13-cin-08-45] or the older Working Formulation, Kiel, or Revised European-American Lymphoma classification systems.[@b14-cin-08-45]\n\nIn order to address these problems, the NCI created the EVS, which forms the semantic underpinnings of caCORE. ", "Semantic interoperability lies in the UML model, the use of publicly accessible terminologies/vocabularies/ontologies (EVS-NCI Thesaurus) and the use of publicly accessible metadata repository (caDSR). ", "The EVS organizes distinct but overlapping terminologies and thus provides a rich controlled vocabulary for data coding and retrieval including the NCI Thesaurus and the NCI Metathesaurus. ", "The controlled terminology component of caBIG™ is maintained in the NCI Thesaurus. ", "The NCI Metathesaurus is based on National Library Medicine's UML System Metathesaurus supplemented with additional cancer-centric vocabulary. ", "It maps many biomedical vocabularies useful to the cancer community and contains both public domain and proprietary vocabularies.[@b15-cin-08-45]\n\nThe caBIG™ organizes semantic metadata in three layers of abstraction, as illustrated in [Figure 1](#f1-cin-08-45){ref-type=\"fig\"}. ", "At the top level, semantic concepts are organized through the NCI Thesaurus, and accessed through the EVS. ", "These concepts are related to each other through the use of Common Data Elements (CDEs) which are stored and accessed through the caDSR. ", "The bottom layer is the Domain Model layer where each UML class is linked to a concept within the NCI Thesaurus, each relationship between UML classes is linked to an association, and each relationship between a UML class and an attribute value is linked to a CDE.", "\n\nUsing the caBIG™ semantic modeling methodology, Tobias et al developed a model by which the College of American Pathologists cancer protocols could be used as the basis for an electronic data standard in pathology.[@b16-cin-08-45] Wang et al. ", "developed a Lung Cancer Clinical Database Application System using caCORE SDK.[@b17-cin-08-45],[@b18-cin-08-45] There are approximately 69 Silver compliant systems registered with the caBIG™.[@b19-cin-08-45] The models investigate cancer registries, clinical trials, gene expression, genomics, and behavioral research data management.", "\n\nThe data system described herein is the first system that aids lymphoma research and is registered with caBIG™ (<http://umlmodelbrowser.nci.nih.gov/umlmodelbrowser/>). ", "As of writing of this paper, we are not aware of any other lymphoma databases developed using caCORE SDK. ", "However, there are lymphoma databases developed but not registered with caBIG™. ", "For example, the Lymphoma NCI Specialized Programs of Research Excellence initiated at the University of Iowa/Mayo Clinic is a highly successful lymphoma translational research program.[@b20-cin-08-45] The Lymphoma Foundation of America is an independent, nonprofit charitable organization that conducts lymphoma research especially on dietary factors, environmental factors, treatment, and genetics.[@b21-cin-08-45] Other national lymphoma databases include the Surveillance, Epidemiology, and End Result[@b22-cin-08-45] database and National Cancer Database.[@b23-cin-08-45]\n\nUsing the semantic metadata framework ([Fig. ", "1](#f1-cin-08-45){ref-type=\"fig\"}), we have developed a caBIG™ silver compliant database, the Lymphoma Enterprise Architecture Data-system (LEAD™), that establishes domain specific ontologies and meta--data for lymphoma translational research and lymphoma clinical research. ", "With LEAD™ deployed, we have established reusable data structures for institutional case-control studies, national SEER cohort studies, and lymphoid malignancy clinical trials. ", "This work provides a clear example of how semantic technologies from caBIG™ can be applied to support a wide range of clinical and research tasks, and illustrates the central importance of caBIG™ to the management of clinical and biological data.", "\n\nMethods\n=======\n\nLEAD™ Development\n-----------------\n\nAs a member of caBIG™ community, we followed the caCORE SDK guidance and developed LEAD™ in accordance with the Silver compatibility guidelines. ", "Steps involved in caCORE SDK workflow and the development of LEAD™ are shown in [Figure 2](#f2-cin-08-45){ref-type=\"fig\"}.[@b24-cin-08-45] The major steps in the workflow include: using case development; information modeling; semantic annotation; metadata registration; code generation; and system deployment.[@b25-cin-08-45] LEAD™ development involved creating class diagrams and data models within Enterprise Architecture (EA). ", "The structure and relationships between classes in the LEAD™ model are shown in [Figure 3](#f3-cin-08-45){ref-type=\"fig\"}. ", "The actual software code, such as API for data access, data services, is generated from the model.", "\n\nIn the model, classes represent discrete scientific entities. ", "For instance, in LEAD™, a patient's demographic information is denoted by class Registration, and his/her histological diagnosis is modeled by class Histology. ", "Disparate methods for representing diagnosis (e.g. ICD-9 codes, ICD-O codes, pathology-free text reports) are semantically integrated by mapping to this class. ", "Attributes of each class represent specific characteristics of the entities and become Data Elements in the software system. ", "For example, one of the attributes of Histology is defined as 'immune_phenotype'. ", "In addition to classes and attributes, the model also specifies the associations between classes including cardinality and direction. ", "For instance, each patient has only one registration record, but he can have multiple adverse events. ", "Thus, the association between class Onstudy and class AdverseEvent is one--to--many relationship. ", "It is important and required that the UML model be annotated with descriptions. ", "This facilitates the subsequent semantic integration. ", "In LEAD™, UML entities are matched to vocabulary concepts; and annotated by an expert in the subject area (CF).", "\n\nAfter the UML model was created, the NCI EVS staff were involved the annotation of entities. ", "Once the annotated UML model was approved by the model owner, it was loaded into the caDSR by the NCI EVS staff. ", "The caCORE SDK automatically generates code for web services, an API for data access and a basic class browser. ", "The class browser allows the developer to check the attributes in a class, and to search based on the criteria the user enters. ", "The result set is displayed for all those records that meet the search criteria. ", "Any other classes that have associations with this class are searched and displayed as well. ", "After the data system is deployed biomedical researchers can query the system through well-documented API, web browsers, or web services.", "\n\nIn this manuscript we describe the use of semantic tools to integrate data from heterogeneous systems. ", "LEAD™ compiles data from multiple data different sources with unique data elements including: the ONCORE^®^[@b26-cin-08-45] data from clinical trials, clinical data from Emory University's legacy administrative (Health Quest: hospital; IDX: clinic), cancer registry (IMPAC Medical Systems), electronic medical records (Cerner PowerChart), laboratory, pharmacy, clinical trials databases[@b4-cin-08-45] and data from populated SEER registry. ", "All these data sources have unique representations of data elements that are integrated using caBIG™ semantic tools ([Fig. ", "3](#f3-cin-08-45){ref-type=\"fig\"}). ", "For example, the clinical trials data has information on patient identifiers, clinical and laboratory data, and data on the treatment and response. ", "The Emory University clinical data on the other hand is comprised of linked data from the clinical, administrative, pharmacy and biological databases that contains clinical, laboratory, and treatment response data coded using different schemas and terminology. ", "The SEER data has detailed sociodemographic information in addition to the details on the disease histology, treatments, and survival represented in yet another manner. ", "Through LEAD™ we integrated the data from these data sources into a single comprehensive database with a unified semantic meaning for concepts shared across these databases.", "\n\nThe relationship between entities and classes in the model and data fields from lymphoma cohort studies, SEER registry data, and clinical trials case report forms are shown in [Figure 4](#f4-cin-08-45){ref-type=\"fig\"}. ", "The EA model was used to generate an XMI file and Data Definition Language Script. ", "Classes and attributes within the model were iteratively annotated by authors TH, CF, and NCI's EVS personnel and the final annotated XMI file was uploaded to the caDSR. ", "Once the LEAD™ metadata passed compatibility review, the final APIs were created using the SDK code generator. ", "Development was implemented on and supported by Dell™ PowerEdge™ 1800 web server. ", "Once stabilized, the LEAD™ application was migrated to a Dell™ PowerEdge™ 6800 production server running an Oracle 10 g relational database.", "\n\nThe Semantic Web is a vision for the next generation of the Web.[@b27-cin-08-45] The first generation Web is characterized by static and handwritten HTML pages; the second generation is characterized by dynamics and interactive HTML pages. ", "However, these two generations share a similar property; the information on Web is represented only in natural language for human processing. ", "The goal of the next generation, namely Semantic Web, is to make information on the Web available for computational processing.", "\n\nTrue semantic integration requires a common and shared vocabulary. ", "The ontology serves this purpose and Semantic Web technology provides language for this goal. ", "The World Wide Web consortium approved two key Semantic Web technologies: the Resource Description Framework (RDF) and the Web Ontology Language (OWL). ", "The RDF provides a common data model so that when RDF is built on top of XML, systems can achieve the level of interoperability required by highly dynamic and integrated bioinformatics applications.[@b28-cin-08-45] Both RDF and OWL are Semantic Web standards that provide a framework for sharing the data on the Web. ", "OWL builds on RDF and RDF Schema, and adds more vocabulary for describing properties and classes. ", "Thus, OWL has strict and precise semantics that are not found in RDF Schema. ", "As Semantic Web resources become mature and available, there is an increasing tendency in bioinformatics applications to use Semantic Web technologies.[@b29-cin-08-45] This higher level of semantic integration may be possible in future versions of LEAD™.", "\n\nTo use LEAD™, the researcher interacts with a web browser through the Internet to input and query the relevant information ([Fig. ", "5](#f5-cin-08-45){ref-type=\"fig\"}). ", "The web browser sends the user's request to the web server, the web server parses the requests and transfers the requests to the application server, the application server accesses the backend database using object-relational mapping, generates the required content dynamically, and sends the response back to the web browser through the web server. ", "In order for the outside cancer research community to access the data stored in the lymphoma clinical database application system, the system provides programmatic APIs generated using caCORE SDK code generator.", "\n\nPopulating the database with lymphoma data\n------------------------------------------\n\nTo populate LEAD™, we utilized data sources from three ongoing research studies: 1) a cohort studies of NHL patients previously treated at Emory University, 2) SEER registry data on patients with lymphoid malignancies, and 3) phase 1 lymphoma clinical trials data.", "\n\n### Emory University Clinical Data\n\nEmory University clinical source data for LEAD™ was derived from a large linked database that represents a fully integrated platform combining clinical and administrative legacy databases.[@b4-cin-08-45] This platform interfaces Emory Healthcare's existing legacy administrative (Health Quest: hospital; IDX: clinic), cancer registry (IMPAC Medical Systems), electronic medical records (Cerner PowerChart), laboratory, pharmacy, clinical trials databases creating a stand-alone structured query language-(SQL) based data warehouse.", "\n\nWe utilized a series of search strategies to identify a joint population of interest containing potential patients with selected NHL subtypes; FL, DLBCL, and mantle cell lymphoma (MCL). ", "We searched the linked database using cancer registry ICD-O histology codes to identify patients: FL(9690, 9695, 9691, 9698), DLBCL (9680, 9684), and MCL (9693).[@b30-cin-08-45] The query also included the ICD-O behavior code 3 (malignant neoplasms, primary). ", "This query is labeled Q1 in [Table 5A](#t5A-cin-08-45){ref-type=\"table\"}. ", "The next series of queries involved text searches of the electronic medical records using simple free text with the histological diagnosis or more complex free-text including synonyms from the UML System Metathesaurus Concept Search.[@b4-cin-08-45] Each text string search was conducted twice, once limited to anatomical pathology (AP) reports, and once accessing all medical records. [", "Table 5A](#t5A-cin-08-45){ref-type=\"table\"} describes the phrases used to identify patients with FL, DLBCL, and MCL. ", "A list of 2471 patients was obtained from the text search of AP reports and 3170 patients were identified from the text search of electronic medical records. ", "Each query defines a different schema for representing patients with a lymphoma diagnosis within the clinical data repository.", "\n\nNext, a group of trained abstractors (PS, KB, and TH) ascertained each patient's histological diagnosis by reviewing pathology reports and medical charts. ", "In all cases, WHO classification schema for NHL was utilized as the gold standard for diagnosis.[@b31-cin-08-45] A hematological oncologist (CF) resolved all cases where there was uncertainty as to whether the WHO criteria were met. ", "The pathology-verified diagnosis status for each individual was used to calculate the sensitivity and specificity of each query strategy as follows: Lymphoma Subtype PositiveLymphoma Subtype NegativeQueryabSensitivityPositive= a/a + cQuerycdSpecificityNegative= d/b + d\n\nIndividuals identified by AP and medical reports to have a definitive diagnosis of FL, DLBCL, or MCLwere integrated into LEAD™ using the semantic architecture to map individuals identified by the means described in each query into a unified definition of histological subtype. ", "Data elements were mapped into LEAD™ representations using a Perl script and loaded into the LEAD™ Oracle 10 g database.", "\n\n### SEER data\n\nThe SEER registry is an authoritative source of information on cancer incidence and survival in the United States. ", "The SEER limited-use data include SEER incidence and population data. ", "Eighty-two fields from the SEER dataset have been incorporated into LEAD™. ", "Data were obtained in a tab-delimited format and mapped to LEAD™ data elements.", "\n\nNext, we built a 2-tier web interface by using Java 2 Enterprise Edition (J2EE) technology to query the data in the relational database. ", "This web interface simplifies reading and searching SEER data. ", "The user interacts with a web interface that uses JSP and a set of rich, custom tag libraries to provide the view. ", "The Java Server Page communicates with the database management system through object-relational mapping. ", "This provides a powerful, flexible platform for allowing users to query SEER lymphoma data. ", "Moreover, the data are stored in a semantic framework such that data analyses examining the SEER lymphoma populations can be readily compared to equivalent populations of Emory patients since they are mapped to the same LEAD™ concept. ", "The generated LEAD™ application system is a distributed, web-based application which provides two interfaces: one is a web-based user interface for inputting and querying data; the second provides programmatic APIs for outside institutions to query the data stored in the backend database using object/relational mapping technology ([Fig. ", "5](#f5-cin-08-45){ref-type=\"fig\"}).", "\n\n### Lymphoma clinical trials data\n\nWeb forms for the clinical trial database were generated using a web application template developed in J2EE.[@b32-cin-08-45] This web application is meta-data driven, which means all the requirements that are used to generate a web form are stored in a relational database (e.g. column names, data types, data length, constraints, etc), allowing all of the web forms to be generated dynamically. ", "If a change needs to be made on the form (e.g. converting a text field to a selection list) no programming effort is required. ", "Through modifying the metadata in the database by SQL, the change is reflected immediately when the form is reloaded. ", "The web application template was used to generate data entry forms for database table.", "\n\nResults\n=======\n\nWe performed data integration across disparate data sources: 1) to illustrate integration capabilities of the LEAD™ infrastructure, and 2) to establish datasets that facilitate use by physicians and researchers with a common interface.", "\n\nIntegration of emory university clinical data for cohort studies\n----------------------------------------------------------------\n\nQuery strategies varied in terms of their sensitivity and specificity across lymphoma subtypes, but strategies using ICD-O codes had the most favorable characteristics ([Table 5B](#t5B-cin-08-45){ref-type=\"table\"}). ", "A total of 930 patients (324 FL, 519 DLBCL, and 87 MCL) were verified by histological diagnosis. ", "Queries based on cancer registry histology codes (Q1) had high specificity for FL and MCL but not for DLBCL. ", "Simple free-text queries of pathology reports (Q2) or all medical records documents (Q4) had a high sensitivity for FL, DLBCL, and MCL. ", "Simple free-text searches of all medical records identified 92% of potential FL cases, 64% of DLBCL and 89% of potential MCL cases but had varying sensitivity and specificity: FL(97%, 13%); DLBCL (55%, 50%); and MCL (44%, 6%) ([Table 5B](#t5B-cin-08-45){ref-type=\"table\"}). ", "Queries using additional phrases from the UML System synonym list (Q3, Q5) had higher specificity for FL and DLBCL and higher sensitivity for MCL.", "\n\nNo query strategy had ideal characteristics for all lymphoma histological subtypes, thus use of a combination of strategies, representations, and terminologies is required to best identify a robust patient population for clinical research. ", "To render data gathered using heterogeneous terminologies useful, we integrated the resulting data set into LEAD™ by mapping heterogeneous representations for lymphoma histology into the unified meaning 'Histology Type' shown in [Figure 4](#f4-cin-08-45){ref-type=\"fig\"}. ", "The semantically integrated database allows for data management and data analysis where histological diagnosis has a unique clinical research meaning in LEAD™ regardless of how it was coded in the source data set.", "\n\nIntegration of surveillance epidemiology and end results[@b22-cin-08-45] data\n-----------------------------------------------------------------------------\n\nSEER registry data for the years 1973--2005 were extracted from the tab-delimited limited-use data set. ", "The entire database contains more than 3.5 million tumors. ", "Lymphoma patients were identified from this data set using ICD-O, Third Edition codes as described previously.[@b33-cin-08-45] Cases of lymphoma were identified during this time frame and classified into histological diagnosis categories using the WHO system shown in [Table 1](#t1-cin-08-45){ref-type=\"table\"}. ", "One or more ICD-O codes maps to each histology type.[@b33-cin-08-45]\n\nEighty--two fields from the SEER dataset were incorporated into LEAD™. ", "Tab-delimited data were translated into clinical concepts using the SEER Data Dictionary (<http://seer.cancer.gov/manuals/CD2_popdic.html>) and mapped to LEAD™ data elements. [", "Figure 4](#f4-cin-08-45){ref-type=\"fig\"} shows the relationships between SEER and LEAD™ data elements. ", "The common representation of entities and classes between SEER data and other sources ([Fig. ", "4](#f4-cin-08-45){ref-type=\"fig\"}) and the relations between entities and classes across data sources permit data sharing and analysis of data elements with a common meaning. ", "The architecture described permits comparative analyses of institutional and national datasets that address common clinical problems. ", "We have used the representation schema and semantic integration from LEAD™ to investigate the incidence and outcomes for peripheral T-cell lymphoma.[@b34-cin-08-45] In this instance, LEAD™ provided a common user interface for researchers to examine data regardless of its original source or representation.", "\n\nIntegration of Phase 1 clinical trials data\n-------------------------------------------\n\nFL is the second most frequent lymphoma subtype worldwide with a rapidly increasing incidence in the Western world. ", "The majority of patients with FL present with advanced disease. ", "For these patients, there is no standard treatment and the clinical course is characterized by a pattern of multiple relapses and remissions and a median survival of 6.2 years.[@b33-cin-08-45] We have developed an early phase clinical trial investigating a novel combination chemotherapy regimen (bortezomib, rituximab, cyclophosphamide, adriamycin, vincristine, and prednisone) designed to improve outcomes for patients with FL. ", "The primary objectives of this study are: To identify the maximal tolerated doses of bortezomib and vincristine when used in this combinationTo estimate the complete response rate associated with this regimen\n\n[Table 6](#t6-cin-08-45){ref-type=\"table\"} shows the schedule for data collections for this lymphoma clinical trial. [", "Figure 6](#f6-cin-08-45){ref-type=\"fig\"} shows an example graphical user interface for entering clinical trial data into LEAD™. ", "Data collected during the course of the trial are mapped to LEAD™ classes and entities as shown in [Figure 4](#f4-cin-08-45){ref-type=\"fig\"}. ", "Again, since LEAD™ relies on the caBIG™ architecture for semantic integration, patients with a histological diagnosis of FL within the clinical trial can be matched to patients who share the same histology in SEER or the Emory lymphoma cohort study. ", "Moreover, since the latter dataset contains patients who overlap with those treated on the clinical trial, data elements that are common to the two studies may be stored once with a common representation and those unique to each study are stored as well with the relationships between the data elements made explicit as shown in [Figure 4](#f4-cin-08-45){ref-type=\"fig\"}.", "\n\nSemantic queries using LEAD™\n----------------------------\n\nViewing caBIG™ semantic metadata as formal standard ontology, querying can be defined as the search of the members of classes from multiple data sources.[@b35-cin-08-45] The most important types of queries can be categorized as those that employ joins and merges. ", "If the data services are built upon semantically rich metadata, individual members of different classes ought to be related to each other. ", "Consider for example an individual member of class emory: OnStudy, and an individual of class emory: AdverseEvent, whenever a patient is registered in the clinical trial, this patient has a member of class emory: OnStudy. ", "A query such as the one that seeks to retrieve information about adverse events and event details for a patient, then returns the join on the object property OnStudy has AdverseEvent in class emory: OnStudy and the object property AdverseEvent has AdverseEvent Detail in class emory: AdverseEvent. ", "The strength of caBIG™ semantics in facilitating data integration is obvious, as the join conditions are directly specified by the class properties from the data sources.", "\n\nThe LEAD™ model has been registered in caDSR and can be searched by NCI UML model browser (<http://umlmodelbrowser.nci.nih.gov/umlmodelbrowser/>). ", "This model can be deployed by another institution to collect and store its lymphoma clinical data. ", "Data stored in this manner will facilitate data integration and could thus promote the conduct of inter-institutional clinical trials and epidemiology studies. ", "Moreover, the model browser permits queries of the model structure and CDEs. ", "An example is querying the adverse events CDEs contained in LEAD™. ", "The execution of this query would return every individual member of AdverseEvent based on the same conditions from these two data sources. ", "It is worth noting that it is necessary to determine one or more data type properties of AdverseEvent, i.e. CDEs which have the class AdverseEvent as its subject that is shared by both subclasses. ", "The researcher who adopts the current LEAD™ UML model can add more attributes or modify the existing attributes in the classes. ", "Readers who are interested in query formulation techniques on semantic data can further reference papers by Shironoshita et al. ", "and Baer et al.[@b35-cin-08-45],[@b36-cin-08-45]\n\nInvestigational review board approval and controlling access\n------------------------------------------------------------\n\nWe obtained Investigational Review Board (IRB) approval for storing and maintaining patient-related data for cancer patients, and an IRB approved process has been developed for incorporating new patient data into our lymphoma database system. ", "This database will use the same procedures for access control that is used for other Emory confidential databases. ", "The research database is protected by the standard Emory Firewall. ", "Dr. Flowers reviews any application for passwords and userIDs from researchers. ", "The Informatics Project Manager (TH) assists investigators in applying for the appropriate level of access, in accordance with the researcher's individual protocol.", "\n\nDiscussion\n==========\n\nIn cancer research, we need to link clinical outcomes and tissue based research data to support the discovery of correlations between molecular studies and prognostic and treatment response profiles. ", "Some of the challenges we face in cancer research include, but not limited to, data sharing, data complexity, and organizational complexity. ", "We also need to use shared languages, such as XML, RDF, or XOL[@b37-cin-08-45] for reporting. ", "Clinical trials are run over many sites, and data is held by multiple stakeholders and researchers. ", "Thus we need to adopt semantic web technologies, including RDF and OWL to share and integrate data models, which enable us to report results and phenomena with shared languages. ", "Moreover, we should and make it possible to interpret models with more complete and semantically integrated data. ", "The emergence of grid technologies facilitates the collaboration of different centers and allows clinical trials to be scattered in different sites. ", "However, to be meaningful grid technologies must integrate data from multiple stakeholders semantically. ", "Successful semantic integration involves use of controlled vocabularies and structured, standard-based metadata to unambiguously describe diverse data sets.", "\n\nSignificance\n------------\n\nThis paper successfully demonstrates the application of caCORE SDK in lymphoma research and this methodology serves as a model for adoption into other cancer research domains, such as lung cancer,[@b32-cin-08-45] prostate cancer, and breast cancer. ", "The tool sets from the NCI facilitate rapid data modeling, data sharing and exchange, and comprehensive question answering. ", "Hence the tools can expedite drug discovery, cancer detection, and improve disease diagnosis and treatment.", "\n\nLimitations and future work\n---------------------------\n\nWhile there has been substantial progress within caBIG™, and in particular in the implementation of caGrid, there is still much work in progress. ", "Although the caCORE SDK provides a rich set of tools to rapidly develop the silver-level compatible system, there is no robust search tool that allows biomedical researchers easily to search the underlying data. ", "Programming effort is still required to extract data from the databases. ", "DBsurfer[@b38-cin-08-45] is one of such tools that may allow complex queries of semantically integrated databases, but open source tools are needed in this area.", "\n\nAnother issue addressed by the LEAD™ system is the integration of data across numerous legacy systems: Health Quest, IDX, IMPAC Medical cancer registry, Cerner PowerChart electronic medical records, OnCore clinical trials data, and other databases. ", "Other valuable data are contained in different systems, such as data in spreadsheets on personal computers, patient data in electronic systems such as The Emory Electronic Medical Record, and various other cancer database systems that are outside caGrid framework. ", "In the future, caCORE SDK must provide tools for integrating data from legacy systems coded in various formats and performing data quality assurance evaluations. ", "Our future work will concentrate on the provision of grid-enabled access to our lymphoma cancer data and web services within caGrid, through the public APIs, XML, SOAP to allow other data holders to exchange data without intimate knowledge of each other's system implementations.", "\n\nConclusion\n==========\n\nLymphomas are a heterogeneous group of cancers that require the development of focused research and clinical approaches for specific histological subtypes. ", "Integrating existing clinical, genomic and proteomic information provides a platform for examining biological variability in the pathogenesis of lymphomas and their responses to treatment response and will promote the development of innovative treatment strategies. ", "To expedite the development of novel therapeutics for lymphoma, our oncology informatics group developed a caBIG™ silver-level compliant information system that incorporates clinical and biological data into a semantically integrated structure, LEAD™, that supports information sharing between cancer research scientists and clinicians. ", "The LEAD™ system links cancer registry, pathology, clinical, administrative, pharmacy, and clinical trials data with biological data elements at the patient--level. ", "We demonstrated that the same data elements and structures in LEAD™ could be used for institutional cohort studies linking data across numerous legacy systems,[@b4-cin-08-45] early phase lymphoma clinical trials data collection, and national SEER registry data on lymphoid malignancies. ", "This caCORE SDK generated system built upon an n--tier architecture with open APIs, utilizes controlled vocabularies and registered metadata to achieve semantic integration. ", "For LEAD™ and other caBIG™ compliant systems the NCI's EVS supplies the controlled vocabularies, and the caDSR provides dynamic metadata registry. ", "Data from LEAD™ can be combined and reused by systems, programmers, and investigators in the broader cancer community. ", "We have demonstrated that reusable data structures can be applied to a number of research settings and provided examples from institutional retrospective epidemiological studies, national cancer registry data queries, and clinical trials. ", "LEAD™ was populated with data from three ongoing research studies 1) cohort studies of NHL patients previously treated at Emory University, 2) SEER registry data for lymphoma, and 3) case report forms data from phase 1 clinical trials. ", "Source data for each of these research scenarios originated in a variety of formats and, once stored within LEAD™, can be shared and reused based on the standards of the caBIG™ architecture. ", "We have shown how semantic technologies from caBIG™ were applied to support a wide range of clinical and research tasks, and our work serves to illustrate the central importance of caBIG™ to the management of clinical and biological data in cancer research. ", "The infrastructure and tools created by caBIG™ can also benefit researchers outside the cancer community.", "\n\nThis work was supported by grant funding from Dr. Flowers' Georgia Cancer Coalition Distinguished Scholar Award, The Leukemia and Lymphoma Society's Translational Research grant, and Amos Medical Faculty Development Award from the American Society of Hematology/Robert Woods Johnson Foundation.", "\n\n**Disclosure**\n\nThe authors report no conflicts of interest.", "\n\n**Copyright in this article, its metadata, and any supplementary data is held by its author or authors. ", "It is published under the Creative Commons Attribution By licence. ", "For further information go to: <http://creativecommons.org/licenses/by/3.0/>.**", "\n\n![**", "Layers of semantic interoperability in caBIG**™. ", "Semantic interoperability lies in UML model, use of publicly accessible Terminologies/vocabularies/ontologies (EVS--NCI Thesaurus) and use of publicly accessible metadata repository (caDSR).](CIN-08-45-g001){#f1-cin-08-45}\n\n![**", "The caCORE workflow.** ", "This figure describes the steps involved in creating a silver level compliant system. ", "A UML object model is the input into the workflow. ", "The model is exported from the format native to the tool it was developed into the standard XMI representation. ", "The XMI file is then annotated with terminology services. ", "Once the annotated XMI is reviewed and approved, it is used as input to generate code and public APIs, and it is deposited into production caDSR.](CIN-08-45-g002){#f2-cin-08-45}\n\n![**", "Logic Model for lymphoma clinical database developed using Enterprise Architecture.** ", "This figure demonstrates the relationships between the key data elements in LEAD™. ", "Components within each key element are not represented in this figure due to practical constraints of resolution and size.](CIN-08-45-g003){#f3-cin-08-45}\n\n![**", "Relations between entities and classes from all data sources.** ", "This figure depicts the color--coded sources of various key data elements of LEAD™. ", "The codes for colors are shown in the legend.\\\n**Abbreviations:** ELCD, Emory Lymphoma Clinical Data; SEER, Surveillance, Epidemiology, and End Result; CT, Emory University Lymphoma Clinical Trials data.](CIN-08-45-g004){#f4-cin-08-45}\n\n![**", "Architecture for LEAD™.** ", "This figure describes the architecture of the Lymphoma Enterprise Architecture Data--system. ", "It contains the presentation tier, business tier and data source tier. ", "The web server passes the requests from web browsers and transfers them to the application server which then accesses the backend database and generates the required content dynamically and sends the response back to the web browser through the web server. ", "Outside community accesses the data through the provided programmatic API.](CIN-08-45-g005){#f5-cin-08-45}\n\n![**", "Graphical user interface for entering adverse event data into LEAD™.** ", "This figure is a sample screen shot of the graphical user interface for entering clinical trial data into LEAD™.](CIN-08-45-g006){#f6-cin-08-45}\n\n###### \n\nWorld Health Organization classification for lymphomas.", "\n\n Non Hodgkin Lymphomas (NHL) \n ----------------------------------------------------------------------------------------------------------- --------------------------------------------------------------\n **Precursor B-cell Neoplasms** **Precursor T-cell Neoplasm**\n -- Precursor B lymphoblastic leukemia (9835/3) -- Precursor T lymphoblastic leukemia (9837/3)\n -- Precursor B lymphoblastic lymphoma (9728/3) -- Precursor T lymphoblastic lymphoma (9729/3)\n -- Blastic NK cell lymphoma (9727/3)\n **Peripheral (mature) B-cell Neoplasms** **Peripheral (mature) T-cell Neoplasms**\n -- Chronic lymphocytic leukemia (9823/3) -- T-cell prolymphocytic leukemia (9834/3)\n -- Small lymphocytic lymphoma (9670/3) -- T-cell large granular lymphocytic leukemia (9831/3)\n -- B-cell prolymphocytic leukemia (9833/3) -- Aggressive NK cell leukemia (9948/3)\n -- Lymphoplasmacytic lymphoma (9671/3) -- Adult T-cell leukemia/lymphoma (9827/3)\n -- Splenic marginal zone lymphoma (9689/3) -- Extranodal NK/T cell lymphoma, nasal type (9719/3)\n -- Hairy cell leukemia (9940/3) -- Enteropathy type T-cell lymphoma (9717/3)\n -- Plasmacytoma/Multiple myeloma (9732/3) -- Hepatosplenic T-cell lymphoma (9716/3)\n -- Solitary plasmacytoma of bone (9731/3) -- Subcutaneous panniculitis-like T-cell lymphoma (9708/3)\n -- Extraosseous plasmacytoma (9734/3) -- Mycosis fungoides (9700/3)\n -- Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue (MALT-lymphoma) (9699/3) -- Sezary Syndrome (9701/3)\n -- Nodal marginal zone B-cell lymphoma (9699/3) -- Primary cutaneous anaplastic large cell lymphoma (9718/3)\n -- Follicular lymphoma, NOS (9690/3) -- Peripheral T-cell lymphoma, unspecified (9702/3)\n -- Follicular lymphoma Grade 1 (9690/3) -- Angioimmunoblastic T-cell lymphoma (9705/3)\n -- Follicular lymphoma Grade 2 (9690/3) -- Anaplastic large cell lymphoma (9714/3)\n -- Follicular lymphoma Grade 3 (9690/3) -- Lymphomatoid papulosis (9718/1)\n -- Mantle cell lymphoma (9673/3) \n -- Diffuse large B-cell lymphoma (9680/3) \n -- Mediastinal (thymic) large cell lymphoma (9679/3) \n -- Intravascular large B-cell lymphoma (9680/3) \n -- Primary effusion lymphoma (9678/3) \n -- Burkitt lymphoma (9687/3) \n -- Burkitt lymphoma leukemia (9826/3) \n -- B-cell proliferations of uncertain malignant potential \n -- Lymphomatoid granulomatosis (9766/1) \n -- Post-transplant lymphoproliferative disorder, pleomorphic (9970/1) \n **Hodgkin Lymphoma, NOS** \n -- Nodular lymphocyte predominant Hodgkin lymphoma (9659/3) \n -- Classical Hodgkin lymphoma (9650/3) \n -- Nodular sclerosis classical Hodgkin lymphoma (9663/3) \n -- Lymphocyte-rich classical Hodgkin lymphoma (9651/3) \n -- Mixed cellularity classical Hodgkin lymphoma (9652/3) \n Lymphocyte-depleted classical Hodgkin lymphoma (9653/3) \n\n**Source:** Jaffe et al.[@b31-cin-08-45]\n\n###### \n\nSilver level compatibility guidelines.", "\n\n Sections Compatibility Requirements\n ------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n Programming and Messaging Interfaces Well--described API approved by the caBIG™ ARCHWS that provide access to data in the form of data objects that are instances of classes represented by a domain model.", "Electronic data formats reviewed and approved by the caBIG ARCHWS that are supported for both input to and output from the system.", "Messaging protocols approved by the caBIG™ ARCHWS that are supported wherever messaging is indicated by the use cases.", "\n Vocabularies/Terminologies and Ontologies Terminologies reviewed and validated by the caBIG™ VCDEWS that are used for all appropriate data collection fields and attributes of data objects.", "Term definitions must meet VCDEWS workspace guidelines.", "\n Data Elements CDEs built from controlled terminologies and according to practices validated by the VCDEWS that are used throughout.", "CDEs are registered as ISO/IEC 11179 metadata components in the caBIG™ Context of the caDSR.", "\n Information Models Object-oriented domain information models are expressed in UML as class diagrams and as XMI files, and are reviewed and validated by VCDEWS.", "\n\n**Abbreviations:** API, application programming interfaces; caBIG™, Cancer Biomedical Informatics Grid™; ARCHWS, Architecture workspace; VCDEWS, Vocabulary/Common Data Elements Workspace; CDE, Common Data Elements; ISO, International Organization for Standardization; IEC, International Electrotechnical Commission; caDSR, cancer Data Standards Repository; UML, Unified Modeling Language; XMI, XML Metadata Interchange.", "\n\n###### \n\ncaBIG™ tools, infrastructure and data resources.", "\n\n Category Role\n ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n Tools caIntegrator: a novel translational informatics platform that allows researchers and bioinformaticians to access and analyze clinical and experimental data across multiple clinical trials and studies.", "\n caBIO: a domain model and architecture used to model the rapidly-changing genomics and proteomics domain and to integrate data from numerous sources providing a holistic view of the human and mouse genomes. ", " \n caTissue Core: a web tissue bank repository tool for biospecimen inventory, tracking, and basic annotation \n caArray: a web and programmatically accessible array data management system \n caXchange: a lab integration hub for clinical trials \n C3PR: a web patient registration system for clinical trials \n Infrastructure caGrid: enables universal mechanisms for providing interoperable programmatic access to data and analytics in caBIG™, creates a self-described infrastructure wherein the structure and semantics of data can be programmatically determined, and provides a powerful means by which services available in caBIG™ can be programmatically discovered and leveraged\n BRIDG: provides a shared view of the dynamic and static semantics that collectively define a shared domain-of-interest \n CTODS: provides a single, unified set of APIs that can access clinical data from multiple data sources \n caBIO: facilitates the communication and integration of information from the various initiatives supported by caBIG™ and NCI \n caCORE: helps streamline the informatics development and providing a common data management and application development framework \n caDSR: stores and manages CDEs developed by caBIG™ participants and various NCI-sponsored organizations \n EVS: produces the NCI Thesaurus, Metathesaurus and provides NCI with licenses for MedDRA, SNOMED, ICD-O-3, and other proprietary vocabularies \n caCORE SDK: a set of tools that aid in the design and creation of a \"caCORE-like\" software system. ", " \n Data Resources caArray: an open-source, web and programmatically accessible array data management system\n caBIO: a biomedical data system built using a model-driven approach to develop objects, data models middleware, vocabularies, and ontologies for biomedical research. ", " \n Cancer Gene Data Curation Pilot: creates a database of associations between genes and diseases and genes and drug compounds derived from the biomedical literature. ", " \n caIntegrator: provides a mechanism for integrating and aggregating biomedical research data and access to a variety of data types \n caMOD: provides information about animal models for human cancer to the public research community \n Pathway Interaction Database: a highly structured, curated collection of information about known biomolecular interactions and key cellular processes assembled into signaling pathways \n\n**Source:** <https://cabig.nci.nih.gov/inventory/>.", "\n\n###### \n\nThe key caCORE components.", "\n\n Component Description\n ----------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n EVS A description-logic based thesaurus and ontology management system. ", "It is a set of services and resources that address NCI's needs for controlled vocabulary.", "\n caDSR A repository that the NCI and its partners use it to create, edit and deploy the Common Data Elements.", "\n caBIO A model driven information system using the cancer Common Ontological Representation Environment; a synthesis of software, vocabulary, and metadata models for cancer research. ", "Each of the caBIO domain objects represents an entity found in biomedical research such as Gene, Chromosome, Single Nucleotide Polymorphisms.", "\n CSM A comprehensive and integrated solution to common security objectives. ", "It helps eliminate the need for development teams to create their own security methodology.", "\n\n**Abbreviations:** EVS, Enterprise Vocabulary System; caDSR, cancer Data Standards Repository; caBIO, cancer Bioinformatics Infrastructure Objects; CSM, Common Security Module.", "\n\n###### \n\nQueries used to identify NHL cases within linked legacy databases.", "\n\n Query Source Criteria Records Identified (% of all records) \n ---------------------- -------------------------------------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------ ----------- ----------- -----------\n Q1 Cancer Registry, ICD-O morphology codes plus behavior code 3 Morphology codes 9690, 9691, 9695, 9698 Morphology codes 9680, 9684 Morphology codes 9693 258 (40%) 337 (38%) 66 (8%)\n Q2 Text search-pathology reports 'follicular lymphoma' 'diffuse large B' and 'diffuse large cell' 'lymphoma lymphocytic' OR 'lymphocytic diffuse' OR 'lymphocytic lymphoma' 441 (69%) 367 (41%) 710 (82%)\n Q3 Text search-pathology reports 'follicular lymphoma' OR 'nodular lymphoma' OR 'Brill-Symmers' OR 'reticulosarcoma--- follicular' OR 'follicular lymphosarcoma' OR 'follicle center lymphoma' OR 'follicular non-Hodgkin' 'lymphoma diffuse histiocytic' OR 'lymphoma diffuse large' OR 'lymphoma large B' OR 'lymphoma large cell' OR 'lymphoma diffuse' OR 'diffuse non Hodgkin' OR 'lymphoma histiocytic' 'mantle cell lymphoma' OR 'lymphoma mantle cell' OR 'mantle zone lymphoma' OR 'lymphoma mantle zone' 176 (27%) 321 (36%) 456 (52%)\n Q4 Text search-all medical reports Same as Q2 Same as Q2 Same as Q2 591 (92%) 567 (64%) 775 (89%)\n Q5 Text search-all medical reports Same as Q3 Same as Q3 Same as Q3 272 (42%) 471 (53%) 494 (57%)\n Total cases reviewed 643 886 871 \n\n**Abbreviations:** FL, Follicular lymphoma; DLBCL, Diffuse large B--cell lymphoma; MCL, Mantle cell lymphoma.", "\n\n###### \n\nSensitivity and specificity for linked database queries.", "\n\n Follicular Lymphoma Diffuse Large B--cell Lymphoma Mantle Cell Lymphoma \n -------- --------------------- -------------------------------- ---------------------- -------- -------- --------\n **Q1** **53** **73** **65** **60** **54** **98**\n **Q2** **70** **33** **38** **66** **72** **17**\n **Q3** **37** **82** **55** **78** **85** **51**\n **Q4** **97** **13** **55** **50** **44** **6**\n **Q5** **57** **73** **78** **56** **97** **48**\n\n###### \n\nPhase 1/Phase 2 Lymphoma clinical trial data collection schedule.", "\n\n Procedures Screen Cycle 1--8 day 1 Cycle 1--8 day 8 End of cycle 2,4,6,8 End of induction Every 3 months maintenance\n ----------------------------------- -------- ------------------ ------------------ ---------------------- --------------------- ----------------------------\n Physical exam X X X X X\n ECG X \n ECOG Performance Status X X X X X X\n Chemotherapy administration X \n Bortezomib administration X X \n Adverse Event assessment X X X X X\n Tumor assessment \n Chest, Abdomen, Pelvis CT scan X X X X\n Pathology slides X \n Tumor tissue block X \n Bone Marrow Biopsy X X (if in remission) X (if in remission) X (if in remission)\n Minimal Residual Disease Analysis X X (if in remission) X (if in remission) X (if in remission)\n **Labs** \n Hematology (CBC) X X X X X X\n Clinical Chemistry X X X X X X\n (basic metabolic) \n Clinical Chemistry (hepatic) X X \n Uric Acid X X \n LDH X \n Serum HCG X \n HIV--1 X \n Hepatitis B X \n Hepatitis C X \n" ]
{ "pile_set_name": "PubMed Central" }
[ 0.006802721088435374, 0, 0.0213903743315508, 0, 0.012024048096192385, 0.009433962264150943, 0.0064516129032258064, 0.007352941176470588, 0, 0, 0, 0.0018726591760299626, 0, 0.011111111111111112, 0, 0, 0.008333333333333333, 0.011235955056179775, 0.00625, 0, 0.0016666666666666668, 0, 0.01282051282051282, 0.005305039787798408, 0.024875621890547265, 0, 0.006993006993006993, 0.014285714285714285, 0.010309278350515464, 0.015957446808510637, 0, 0.005681818181818182, 0, 0.005681818181818182, 0, 0.017857142857142856, 0.0049504950495049506, 0.010582010582010581, 0, 0.02097902097902098, 0.0035842293906810036, 0.018691588785046728, 0.0072992700729927005, 0.01893939393939394, 0.00816326530612245, 0.008982035928143712, 0.0058823529411764705, 0.009433962264150943, 0, 0.01765650080256822, 0.01090909090909091, 0.005649717514124294, 0, 0.004975124378109453, 0.0069767441860465115, 0.008130081300813009, 0.01020408163265306, 0, 0.0125, 0.00625, 0, 0.012195121951219513, 0, 0, 0.02040816326530612, 0.0125, 0, 0.018018018018018018, 0.021052631578947368, 0.017699115044247787, 0.017857142857142856, 0, 0, 0, 0.0072992700729927005, 0, 0.013605442176870748, 0.008130081300813009, 0, 0, 0, 0.005917159763313609, 0, 0.004524886877828055, 0.024096385542168676, 0.011764705882352941, 0.018018018018018018, 0, 0.014285714285714285, 0.004132231404958678, 0, 0, 0, 0, 0.019736842105263157, 0.015772870662460567, 0.02040816326530612, 0, 0.007874015748031496, 0.015151515151515152, 0, 0, 0, 0.0113314447592068, 0.01054481546572935, 0.005319148936170213, 0.019230769230769232, 0, 0.0051813471502590676, 0.008547008547008548, 0.006329113924050633, 0, 0.01910828025477707, 0.012875536480686695, 0.005474452554744526, 0.008333333333333333, 0.015151515151515152, 0.02857142857142857, 0.02666666666666667, 0, 0.007194244604316547, 0.015873015873015872, 0.008695652173913044, 0, 0.010869565217391304, 0.00425531914893617, 0.0029498525073746312, 0, 0.0023094688221709007, 0, 0.00847457627118644, 0, 0.003937007874015748, 0.0057306590257879654, 0, 0.009174311926605505, 0.007352941176470588, 0.0072992700729927005, 0.02054794520547945, 0, 0.003676470588235294, 0, 0.0076045627376425855, 0, 0.00641025641025641, 0.02127659574468085, 0.011363636363636364, 0.009708737864077669, 0.021505376344086023, 0.005714285714285714, 0, 0.00980392156862745, 0, 0, 0.002325581395348837, 0, 0.0078125, 0, 0.004, 0, 0.006153846153846154, 0, 0, 0.006711409395973154, 0, 0.020134228187919462, 0, 0, 0, 0.014925373134328358, 0.007194244604316547, 0.005076142131979695, 0.0078125, 0, 0.014423076923076924, 0.008695652173913044, 0, 0.0125, 0.012195121951219513, 0, 0, 0.02127659574468085, 0, 0.0056179775280898875, 0, 0, 0, 0.00641025641025641, 0.0035971223021582736, 0.008064516129032258, 0, 0, 0.0047169811320754715, 0, 0.006211180124223602, 0.02390438247011952, 0.0037735849056603774, 0, 0, 0.0055248618784530384, 0, 0.002967359050445104, 0.006060606060606061, 0.006968641114982578, 0.011494252873563218, 0.02040816326530612, 0, 0, 0.012711864406779662, 0.005235602094240838, 0, 0, 0.02027027027027027, 0, 0, 0.014925373134328358, 0.012658227848101266, 0, 0, 0.013157894736842105, 0, 0, 0.0196078431372549, 0, 0, 0, 0, 0.012048192771084338, 0, 0, 0.011904761904761904, 0.02074688796680498, 0, 0.010752688172043012, 0, 0, 0, 0.014084507042253521, 0.009523809523809525, 0.0020591538749532012, 0.0026666666666666666, 0, 0, 0.0051813471502590676, 0.01818181818181818, 0.006097560975609756, 0.010869565217391304, 0.0106951871657754, 0.028503562945368172, 0, 0, 0, 0.002867383512544803, 0, 0, 0.0013623978201634877, 0, 0, 0.011235955056179775, 0.017094017094017096, 0.010471204188481676, 0.014184397163120567, 0, 0, 0.016853932584269662, 0.012987012987012988, 0.0014444903012794056, 0, 0, 0.0005925925925925926 ]
0.006471
5
[ { "analysis_explanation": null, "end": 260, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239 }, { "analysis_explanation": null, "end": 705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 688 }, { "analysis_explanation": null, "end": 717, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 713 }, { "analysis_explanation": null, "end": 849, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 824 }, { "analysis_explanation": null, "end": 1429, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1427 }, { "analysis_explanation": null, "end": 3784, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3778 }, { "analysis_explanation": null, "end": 3792, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3786 }, { "analysis_explanation": null, "end": 3944, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3938 }, { "analysis_explanation": null, "end": 5151, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5145 }, { "analysis_explanation": null, "end": 5655, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5652 }, { "analysis_explanation": null, "end": 8627, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8619 }, { "analysis_explanation": null, "end": 10263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10251 }, { "analysis_explanation": null, "end": 10444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10434 }, { "analysis_explanation": null, "end": 14176, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14169 }, { "analysis_explanation": null, "end": 18118, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18110 }, { "analysis_explanation": null, "end": 18822, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18814 }, { "analysis_explanation": null, "end": 20859, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20857 }, { "analysis_explanation": null, "end": 21043, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21039 }, { "analysis_explanation": null, "end": 21720, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21718 }, { "analysis_explanation": null, "end": 22767, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22765 }, { "analysis_explanation": null, "end": 23208, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23191 }, { "analysis_explanation": null, "end": 24123, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24118 }, { "analysis_explanation": null, "end": 25962, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25953 }, { "analysis_explanation": null, "end": 26098, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26096 }, { "analysis_explanation": null, "end": 26244, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26242 }, { "analysis_explanation": null, "end": 26341, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26339 }, { "analysis_explanation": null, "end": 26640, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26638 }, { "analysis_explanation": null, "end": 27609, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27589 }, { "analysis_explanation": null, "end": 29368, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29361 }, { "analysis_explanation": null, "end": 29408, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29406 }, { "analysis_explanation": null, "end": 29868, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29866 }, { "analysis_explanation": null, "end": 30592, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30590 }, { "analysis_explanation": null, "end": 30682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30678 }, { "analysis_explanation": null, "end": 30695, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30690 }, { "analysis_explanation": null, "end": 31618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31611 }, { "analysis_explanation": null, "end": 31773, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31766 }, { "analysis_explanation": null, "end": 31940, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31933 }, { "analysis_explanation": null, "end": 31957, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31945 }, { "analysis_explanation": null, "end": 31981, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31974 }, { "analysis_explanation": null, "end": 33384, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33366 }, { "analysis_explanation": null, "end": 33892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33887 }, { "analysis_explanation": null, "end": 33982, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33968 }, { "analysis_explanation": null, "end": 33995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33988 }, { "analysis_explanation": null, "end": 35725, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35701 }, { "analysis_explanation": null, "end": 40365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40358 }, { "analysis_explanation": null, "end": 40601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40570 }, { "analysis_explanation": null, "end": 46646, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46640 }, { "analysis_explanation": null, "end": 47202, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47195 }, { "analysis_explanation": null, "end": 47313, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47306 }, { "analysis_explanation": null, "end": 53807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53802 }, { "analysis_explanation": null, "end": 54696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54683 }, { "analysis_explanation": null, "end": 57243, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57239 }, { "analysis_explanation": null, "end": 59200, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59196 }, { "analysis_explanation": null, "end": 62545, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62539 }, { "analysis_explanation": null, "end": 63627, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63613 }, { "analysis_explanation": null, "end": 66118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66072 }, { "analysis_explanation": null, "end": 10945, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 10894 }, { "analysis_explanation": null, "end": 28319, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 28273 }, { "analysis_explanation": null, "end": 32387, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 32336 }, { "analysis_explanation": null, "end": 40910, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 40867 }, { "analysis_explanation": null, "end": 56276, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 56240 }, { "analysis_explanation": null, "end": 21184, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 21182 }, { "analysis_explanation": null, "end": 26069, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26067 }, { "analysis_explanation": null, "end": 26175, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26173 }, { "analysis_explanation": null, "end": 26213, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26211 }, { "analysis_explanation": null, "end": 26605, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26603 }, { "analysis_explanation": null, "end": 26609, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26607 }, { "analysis_explanation": null, "end": 58901, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 58899 }, { "analysis_explanation": null, "end": 59493, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 59491 }, { "analysis_explanation": null, "end": 60087, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 60085 }, { "analysis_explanation": null, "end": 60681, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 60679 }, { "analysis_explanation": null, "end": 60775, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 60773 }, { "analysis_explanation": null, "end": 60963, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 60961 }, { "analysis_explanation": null, "end": 61144, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 61142 }, { "analysis_explanation": null, "end": 61275, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 61273 }, { "analysis_explanation": null, "end": 61369, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 61367 }, { "analysis_explanation": null, "end": 61557, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 61555 }, { "analysis_explanation": null, "end": 61738, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 61736 }, { "analysis_explanation": null, "end": 62846, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 62844 }, { "analysis_explanation": null, "end": 62960, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 62958 }, { "analysis_explanation": null, "end": 63074, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 63072 }, { "analysis_explanation": null, "end": 63188, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 63186 }, { "analysis_explanation": null, "end": 63301, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 63299 } ]
[ "High Quality CT Imaging Provided By The Best Diagnostic Centers\n\nGone are the days, when people had to travel far to diagnose their ailments and to get the very best treatments. ", "With the country advancing slowly and adopting modern technology in all its spheres including in the field of medicine, patients of all types and ages are provided with complete respite. ", "They are now able to derive the very best diagnostic checkups and treatments from some of the reputed hospitals and facilities in the country. ", "As a matter of fact, modern technological developments made in medical science field has completely revolutionized the way how treatments are provided to patients. ", "The latest technology-driven diagnostic devices and processes are found to offer patients with more accurate data. ", "This way, diagnosis of the ailment and its subsequent treatment is very much accurate and also cost-effective.", "\n\nCT Scan\n\nThere are numerous modern test techniques introduced of which CT imaging tends to stand out. ", "It has been gaining importance as an effective medical imaging technique. ", "It stands for Computed Tomography and also called X-ray computed tomography. ", "In this imaging technique, x-rays are used for producing tomographic images related to the different organs and body parts.ct scan in New Delhi does offer respite to patients by offering them accurate results.", "\n\nCT Scanning – Its Specialty\n\nA specialty of CT scan technique tends to lie in its capability to generate data in enormous volume, which in turn could be processed through computers. ", "It helps to produce accurate 3D images related to the human systems and body. ", "CT Scan generated data can be structured and manipulated in various ways to come up with different kinds of images. ", "This, in turn, can prove to be useful to diagnose different ailments and to demonstrate different bodily conditions. ", "data consistency and accuracy proved by CT imaging technique does make it be among the most preferred choices by medical practitioners across the globe.", "\n\nNeed for CT Scan\n\nThe body’s CT Scan could be necessary for determining the type of diagnosis to be carried out, based upon specific condition. ", "CT scan is considered to be a sophisticated technology and does require superior quality imaging software and equipment. ", "Hence, the technicians carrying out this technique are to be well trained, qualified and experienced. ", "Only then will they be able to get optimum accuracy and clarity in their produced data.", "\n\nThe ct scan centers in New Delhi do perfectly fit the needs and budget of the patients and help surgeons and physicians to identify the ailment and the region of the body where it has affected. ", "This way, the patient is offered with accurate diagnostic checkup and treatment. ", "PET/CT scans do offer the highest precision and accuracy to determine the best possible treatment to be advised to the patients.", "\n\nAs a matter of fact, it can be safely stated that PET scan images have been found to be highly effective to determine the patient’s health conditions, to detect different types of diseases, etc. ", "The scan offers color image pertaining to the body’s biologically active substances to help physicians to detect any problems present.", "\n\nAdd comment\n\nYou may also like\n\nThere are various benefits of exercising, but there are several mental advantages to it as well. ", "Various studies highlight how exercising helps in relieving tension. ", "Due to the extremely busy lives that require us to be...\n\nTelemedicine is a breakthrough in the very structure of contemporary medicine itself. ", "The revolution in medicine that leads to the development of telehealth and telemedicine only came about to be because companies...\n\nHistory of Ayurveda The concept of Ayurveda takes us to a long time back around 5000 years ago in its inception. ", "The name Ayurveda means the science of the life. ", "It was mainly used in the Vedic era, where natural..." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0.012987012987012988, 0, 0, 0, 0, 0, 0.006578947368421052, 0, 0, 0, 0, 0, 0, 0.0078125, 0.005076142131979695, 0, 0, 0, 0, 0.004081632653061225, 0.02040816326530612, 0 ]
0.001898
5
[ { "analysis_explanation": null, "end": 82, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74 }, { "analysis_explanation": null, "end": 1294, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1285 }, { "analysis_explanation": null, "end": 2494, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2485 }, { "analysis_explanation": null, "end": 3764, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3743 } ]
[ "Butabika Hospital\n\nButabika National Referral Hospital, commonly known as Butabika Hospital is a hospital in Kampala, Uganda's capital and largest city. ", "It is the mental health national referral hospital for the entire country's estimated population of 36 million in 2014.", "\n\nLocation\nButabika National Referral Hospital is located in Butabika, a neighborhood within Kampala. ", "Butabika lies in the southeastern part of the city, in Nakawa Division, adjacent to the northern shores of Lake Victoria, Africa's largest fresh-water lake. ", "This location is approximately , by road, east of Kampala's central business district. ", "The coordinates of Butabika Hospital are: 0°18'57.0\"N, 32°39'33.0\"E (latitude: 0.315845 and longitude: 32.659160).", "\n\nOverview\nButabika Hospital is a public psychiatric hospital, funded and administered by the Uganda Ministry of Health and general care in the hospital is free. ", "The hospital is the only referral psychiatric hospital in Uganda. ", "Opened in 1955, it has a bed capacity of 900, as of February 2010. ", "The hospital also serves as the psychiatric teaching hospital for Makerere University College of Health Sciences for both undergraduate and postgraduate training, especially for the degrees of Bachelor of Medicine and Bachelor of Surgery (MBChB), Master of Medicine in Psychiatry (MMed Psych) and Doctor of Philosophy (PhD) in psychiatry.", "\n\nButabika Hospital is also the location of the Institute of Psychiatric Clinical Officers (IPCO), a school administered by the Uganda Ministry of Health, which trains high school graduates to become psychiatric clinical officers. ", "It is the only school of its kind in Eastern Africa.", "\n\nSee also\n\nReferences\n\nExternal links\n Butabika Hospital Homepage\n Uganda Ministry of Health Homepage\n\nCategory:Hospital buildings completed in 1955\nCategory:Psychiatric hospitals in Uganda\nCategory:Hospitals in Kampala\nCategory:Nakawa Division\nCategory:1955 establishments in the British Empire" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.013071895424836602, 0, 0, 0.006369426751592357, 0, 0.017543859649122806, 0.006172839506172839, 0, 0, 0.005917159763313609, 0.008658008658008658, 0, 0.0033783783783783786 ]
0.004701
5
[ { "analysis_explanation": null, "end": 116, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109 }, { "analysis_explanation": null, "end": 124, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118 }, { "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": 371, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 364 }, { "analysis_explanation": null, "end": 493, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480 }, { "analysis_explanation": null, "end": 501, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495 }, { "analysis_explanation": null, "end": 587, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 580 }, { "analysis_explanation": null, "end": 956, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 950 }, { "analysis_explanation": null, "end": 972, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 968 }, { "analysis_explanation": null, "end": 1023, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1010 }, { "analysis_explanation": null, "end": 1458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1454 }, { "analysis_explanation": null, "end": 1644, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1630 }, { "analysis_explanation": null, "end": 1793, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1789 }, { "analysis_explanation": null, "end": 1834, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1828 }, { "analysis_explanation": null, "end": 1933, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1926 }, { "analysis_explanation": null, "end": 704, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 698 }, { "analysis_explanation": null, "end": 729, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 723 } ]
[ "Relation between cerebral blood flow and extracellular glucose in rat striatum during mild hypoxia and hyperoxia.", "\nRats were exposed to mild hyperoxia and hypoxia by the administration of oxygen/air and nitrogen/air mixtures through plastic tubing held close to their snouts for periods of 3 min. ", "Changes in tissue oxygen were monitored at an implanted carbon paste electrode; local cerebral blood flow (rCBF) at an implanted platinum electrode using the hydrogen clearance technique; extracellular brain glucose at an implanted glucose oxidase-based biosensor and changes in lactate were measured using microdialysis. ", "The nitrogen/air mixture led to a decrease in tissue oxygen, an increase in rCBF, a decrease in extracellular glucose, and an increase in lactate. ", "The oxygen/air mixture led to an increase in tissue oxygen and extracellular glucose but no change in lactate or rCBF. ", "The effects in unanaesthetised rats were compared with those in rats given 350 mg/kg chloral hydrate. ", "The increase in lactate was greater in unanaesthetised than anaesthetised rats. ", "The results show a dissociation between changes in rCBF and extracellular glucose and suggest that changes in oxygen affect utilisation rather than supply of glucose to the extracellular compartment." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0.006802721088435374, 0.008403361344537815, 0, 0, 0.005025125628140704 ]
0.002529
5
[ { "analysis_explanation": null, "end": 294, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289 } ]
[ "Natalie Irish\n\nNatalie Irish (born 8 October 1982) is a Houston-based visual artist. ", " Her mediums include metal, paint, clay, fabric, and charcoal, but she has gained attention for portraits created using lipstick. ", "She gained media attention in 2011 for her lip print portraits of pop icons such as Marilyn Monroe, Jimi Hendrix, and Roy Rogers.", "\n\nBiography \nBorn in New Orleans, Louisiana to parents Denise and Sherman Irish, Irish has lived in Manvel, Texas since elementary school. ", "Irish married Dennis Bateman at a drive-thru chapel in Las Vegas. ", "They live together with four cats and a dog. ", "Irish also has two brothers.", "\n\nIrish was diagnosed with type I diabetes in 2000 during her senior year in high school. ", "She uses an insulin pump to manage her disease. ", "She attended the University of North Texas for their metalsmithing program, but left school after three semesters. ", "She returned to Houston and has since become active in the Juvenile Diabetes Research Foundation and American Diabetes Association, donating both time and art to raise awareness of the disease. ", "In lieu of wearing a medical alert bracelet, Irish had “Diabetic” tattooed on to the inside of the right wrist.", "\n\nArt \nIrish was interested in art from a young age. ", " The first pieces of art she recalls creating are a pitcher, two cups, and a bird - all made from clay she dug up in her backyard and dried in the sun while in elementary school. ", "She still has the pitcher and cups in her home.", "\n\nIn 2011, Irish gained media attention when website Oddity Central linked to a YouTube video of her creating one of her “lip print” pieces, a technique that Irish pioneered in 2001. ", "Irish’s lip prints are created using lipstick and kissing the canvas. ", "A 2011 Houston Press article details her method, including a video of her creating a self-portrait.", "\n\nJermaine Rogers, a celebrated Houston-born poster artist known for his work with rock and roll bands, met Irish during a promotional tour for Vans. ", "Irish’s first commission was a lip print of Jimi Hendrix for Rogers. ", "Her lipstick portrait of Princess Catherine hangs in Ripley’s Believe it or Not in London.", "\n\nIn addition to her signature lip prints, Irish creates fashion accessories including clothing, purses and jewelry, as well as sculptures, charcoal drawings, pencil sketches and oil paintings. ", " She has been featured in ABC News, Bored Panda, Glam.com, The Conan O’Brien Show, The Huffington Post, The Daily Mail, Time, and Yahoo News. ", "Her art has also been featured at the Scottsdale Art Festival.", "\n\nReferences \n\nCategory:Living people\nCategory:Artists from Texas\nCategory:1982 births\nCategory:American women artists\nCategory:People with type 1 diabetes\nCategory:People from Brazoria County, Texas" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.023529411764705882, 0, 0.023255813953488372, 0.014388489208633094, 0.015151515151515152, 0, 0, 0, 0, 0.008695652173913044, 0.010309278350515464, 0, 0, 0, 0, 0.01092896174863388, 0, 0.010101010101010102, 0.006666666666666667, 0.028985507246376812, 0, 0, 0.056338028169014086, 0.016129032258064516, 0 ]
0.008979
5
[ { "analysis_explanation": null, "end": 28, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 49, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35 }, { "analysis_explanation": null, "end": 63, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56 }, { "analysis_explanation": null, "end": 248, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244 }, { "analysis_explanation": null, "end": 312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298 }, { "analysis_explanation": null, "end": 326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 314 }, { "analysis_explanation": null, "end": 342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 332 }, { "analysis_explanation": null, "end": 374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 363 }, { "analysis_explanation": null, "end": 385, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 376 }, { "analysis_explanation": null, "end": 403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 397 }, { "analysis_explanation": null, "end": 421, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408 }, { "analysis_explanation": null, "end": 428, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 423 }, { "analysis_explanation": null, "end": 448, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 442 }, { "analysis_explanation": null, "end": 455, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450 }, { "analysis_explanation": null, "end": 486, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481 }, { "analysis_explanation": null, "end": 509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495 }, { "analysis_explanation": null, "end": 545, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 536 }, { "analysis_explanation": null, "end": 597, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 592 }, { "analysis_explanation": null, "end": 626, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 621 }, { "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": 692, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 677 }, { "analysis_explanation": null, "end": 870, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 855 }, { "analysis_explanation": null, "end": 895, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 888 }, { "analysis_explanation": null, "end": 1116, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1111 }, { "analysis_explanation": null, "end": 1188, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1178 }, { "analysis_explanation": null, "end": 1462, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1458 }, { "analysis_explanation": null, "end": 1469, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1464 }, { "analysis_explanation": null, "end": 1616, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1611 }, { "analysis_explanation": null, "end": 1634, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1630 }, { "analysis_explanation": null, "end": 1641, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1636 }, { "analysis_explanation": null, "end": 1712, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1708 }, { "analysis_explanation": null, "end": 1821, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1806 }, { "analysis_explanation": null, "end": 1843, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1836 }, { "analysis_explanation": null, "end": 1917, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1912 }, { "analysis_explanation": null, "end": 1959, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1954 }, { "analysis_explanation": null, "end": 2014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1998 }, { "analysis_explanation": null, "end": 2021, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2015 }, { "analysis_explanation": null, "end": 2066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2057 }, { "analysis_explanation": null, "end": 2082, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2076 }, { "analysis_explanation": null, "end": 2112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2106 }, { "analysis_explanation": null, "end": 2160, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2155 }, { "analysis_explanation": null, "end": 2386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2368 }, { "analysis_explanation": null, "end": 2573, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2568 }, { "analysis_explanation": null, "end": 2612, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2604 }, { "analysis_explanation": null, "end": 2700, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2685 }, { "analysis_explanation": null, "end": 2707, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2702 }, { "analysis_explanation": null, "end": 2362, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2354 } ]
[ "Introduction\n============\n\nAdrenocorticotropic hormone (ACTH)-independent macronodular adrenal hyperplasia (AIMAH), an impairment demonstrated by bilateral macronodular adrenal hypertrophy and autonomous cortisol production, is a rare cause of Cushing's syndrome. ", "Although bilateral adrenalectomy is considered the standard treatment for AIMAH \\[[@B1],[@B2]\\], patients receiving this treatment are subsequently obliged to receive lifetime steroid replacement therapy and may be susceptible to adrenal insufficiency. ", "Given these concerns, the operative strategy for treating AIMAH must be considered carefully for each individual case.", "\n\nHere we report the surgical and clinical aspects of four cases of AIMAH that were treated by laparoscopic adrenalectomy, including two requiring bilateral adrenalectomy.", "\n\nCase presentations\n==================\n\nWe performed adrenalectomies on four consecutive patients with AIMAH from 1999 to 2010. ", "The patients' clinical and biochemical findings are summarized in Table [1](#T1){ref-type=\"table\"}. ", "Enhanced computed tomography (CT) showed bilateral adrenal enlargement with slight enhancement (Figure [1](#F1){ref-type=\"fig\"}), and adrenal scintigraphy revealed bilateral uptake of ^131^I-norcholesterol was observed in all patients.", "\n\n###### \n\nClinical and biochemical findings\n\n ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n **Case** **Age** **Gender** **Body mass index (kg/m**^**2**^**)** **Size of adrenal gland**\\ **Cushing's symptoms** **Serum cortisol (μg/dL) (basal values: 5.3 to 11.0)** **Plasma adrenocorticotropic hormone (pg/mL) (normal values: 7.2 to 63.3)** \n **(L/R, cm)** \n ---------- --------- ------------ --------------------------------------- ---------------------------- ------------------------ -------------------------------------------------------- ----------------------------------------------------------------------------- -------\n 1 56 F 21.2 6.5/5.5 \\+ 21.5 20.4 \\<5.0\n\n 2 37 M 26.6 10.5/8.5 \\+ 34.1 28.7 \\<5.0\n\n 3 80 F 21.7 4.0/3.5 \\+ 14.2 16.2 \\<5.0\n\n 4 66 M 29.6 6.0/8.5 \\- 10.4 10.7 \\<5.0\n ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n![", "Abdominal computed tomography in patient 2 showing bilateral multinodular adrenal enlargement with maximum diameters of 8.5cm and 10.5cm on the right and left sides, respectively.](1752-1947-6-312-1){#F1}\n\nCase 1\n------\n\nA 56-year-old Japanese woman presented with several symptoms characteristic of Cushing's syndrome, including moon face and central obesity, during treatment for diabetes mellitus and hypertension. ", "She was diagnosed as Cushing's syndrome caused by AIMAH due to autonomous production of adrenal cortisol, which was accompanied by suppressed serum ACTH levels (\\<5.0pg/mL) and a loss of cortisol circadian rhythm. ", "She underwent laparoscopic bilateral adrenalectomy because of her overt Cushing's symptoms. ", "The operative procedure in this case has been described by Shinbo *et al*. ", "\\[[@B3]\\]. ", "Cortisol replacement therapy was started immediately upon completion of surgery.", "\n\nCase 2\n------\n\nA 37-year-old Japanese man presented with severe Cushing's symptoms during treatment for diabetes mellitus and hypertension. ", "Symptoms included moon face, central obesity, and muscle weakness. ", "He underwent laparoscopic bilateral adrenalectomy and cortisol replacement therapy post-operatively (Figure [2](#F2){ref-type=\"fig\"}).", "\n\n![**", "Macroscopic appearance of the adrenal glands of patient 2.** (**", "A**) The right gland weighed 141g and measured 85×60×40mm. (**", "B**) The left gland weighed 145g and measured 105×45×40mm. ", "Both glands exhibited many macronodules on the exposed surface.](1752-1947-6-312-2){#F2}\n\nCase 3\n------\n\nAn 80-year-old Japanese woman was hospitalized because of unusual weight gain (about 10kg over about two years) and general fatigue. ", "Upon admission, she was diagnosed as Cushing's syndrome. ", "She underwent unilateral adrenalectomy due to high operative risk. ", "We based our decision on the side to operate on based on which gland was larger according to CT scan findings.", "\n\nCase 4\n------\n\nA 66-year-old Japanese man was incidentally discovered to have bilateral adrenal tumors but no Cushing's symptoms. ", "The endocrinological data showed a normal level of cortisol (10.4μg/dL) with a suppressed serum ACTH level (\\<5.0pg/mL), which showed neither a cortisol circadian rhythm nor suppression by dexamethasone administration (9.1μg/dL after 1mg; 16.9μg/dL after 8mg). ", "He underwent right laparoscopic adrenalectomy due to subclinical Cushing's syndrome. ", "In this case, the right adrenal gland was removed, because adrenal venous sampling revealed that cortisol production from the right gland was much greater than from the left (right: 38.9μg/dL; left: 20.3μg/dL).", "\n\nThe surgical procedures and results are summarized in Table [2](#T2){ref-type=\"table\"}. ", "The duration of the operations for patients 1 and 2 included the time required to change the patient's position. ", "The estimated blood loss was for patient 1 was 350mL and negligible in the others. ", "All patients were able to walk and receive oral nutrient intake by post-operative day 2. ", "Hydrocortisone was administered intravenously to patients 1 and 2 starting on the day of the operation. ", "The drug was administered orally after the patients stared taking meals orally. ", "The dose was tapered to 15 or 20mg/day until discharge, which prolonged the length of their hospitalization. ", "No conversions to open surgery were performed, and no severe complications occurred during the post-operative period.", "\n\n###### \n\nOperative procedures and results\n\n **Case** **Site of adrenalectomy** **Operation time (minutes)** **Blood loss (g)** **Weight of adrenal gland (L/R, g)** **Discharge (post-operative day)** **Dosage of hydrocortisone at discharge (mg/day)** **Complications**\n ---------- --------------------------- ------------------------------ -------------------- -------------------------------------- ------------------------------------ ---------------------------------------------------- -------------------------\n 1 Bilateral 424 350 57/51 20 20 Surgical site infection\n 2 Bilateral 520 Negligible 145/141 18 15 None\n 3 Left 134 Negligible 30/- 7 None None\n 4 Right 244 Negligible -/50 6 None None\n\nClinical courses and outcomes are summarized in Table [3](#T3){ref-type=\"table\"}. ", "Clinical improvements, such as disappearance of moon face, central obesity, and muscle weakness were evident in patients 1, 2, and 3. ", "Patient 4 remained asymptomatic for Cushing's syndrome during follow-up. ", "Serum cortisol levels have remained within normal ranges and serum ACTH levels were unsuppressed in all cases during follow-up.", "\n\n###### \n\nClinical course and outcomes\n\n **Case** **Follow-up duration (months)** **Dosage of hydrocortisone (mg/day)** **Cushing\\'s symptoms** **Body mass index (kg/m**^**2**^**)** **Endocrinological examination** \n ---------- --------------------------------- --------------------------------------- ------------------------- --------------------------------------- ---------------------------------- ------\n 1 146 15 Improved 20.5 2.7 25.7\n 2 35 15 Improved 24.2 1.1 50.1\n 3 24 None Improved 20.3 11.2 7.9\n 4 90 None Subclinical 28.3 14.6 4.1\n\nDiscussion\n==========\n\nBilateral adrenalectomy and steroid replacement therapy is considered the standard treatment for AIMAH \\[[@B1],[@B2]\\]. ", "Several cases of successful laparoscopic bilateral adrenalectomy for AIMAH have been reported \\[[@B3]-[@B6]\\], and each involved little blood loss during surgery. ", "Laparoscopic adrenalectomy is less invasive than open surgery for treating AIMAH and may prevent a number of post-operative complications due to impaired glucose tolerance and immunodeficiency. ", "However, treatment of AIMAH requires considerable skill given the impressive size and fragility of adrenal tumors.", "\n\nAlthough we opted for a bilateral approach here, several patients have been treated successfully after receiving only medical treatment or subtotal or unilateral adrenalectomy \\[[@B7]-[@B9]\\]. ", "The rationale for implementing these treatments was to avoid impairing our patients' quality of life due to the risk of critical adrenal insufficiency after bilateral adrenalectomy. ", "Two recent reports note that unilateral adrenalectomy of the larger gland with AIMAH resulted in improvement in Cushing's symptoms after a mean follow-up time of 53 or 78.8 months \\[[@B10],[@B11]\\]. ", "However, the efficacy of unilateral adrenalectomy for AIMAH remains controversial because the mean patient age in these reports is 52.6 years, clearly insufficient for long-term assessment. ", "We reasoned, therefore, that if a patient receives a second operation to remove the remaining gland when Cushing's syndrome recurs during follow-up, unilateral adrenalectomy might also be effective in selected cases such as those reported here. ", "In patients with subclinical AIMAH, the decision regarding therapy should take into account normalization of cortisol excess. ", "Unilateral adrenalectomy is the treatment of choice, as well as medical treatment or subtotal or unilateral adrenalectomy, for normalization of cortisol excess. ", "However, careful attention must be paid after unilateral adrenalectomy, as the criteria and long-term prognosis of this procedure in subclinical AIMAH have not been well established. ", "If unilateral adrenalectomy is performed, determination of the surgical site should be based on asymmetrical adrenal enlargement or adrenal venous sampling analysis; the gland more strongly influencing the patient's condition should be removed.", "\n\nConclusions\n===========\n\nIn our experience, laparoscopic bilateral adrenalectomy for AIMAH with obvious Cushing's symptoms was effective in rapidly improving symptoms when performed by an experienced surgical team. ", "Further, unilateral adrenalectomy can also be effective when the patient is older and subject to high operative risk or does not present with clinical symptoms. ", "Because long-term prognosis associated with this surgical technique remains controversial, strategies for treating AIMAH must be carefully considered on a case-by-case basis.", "\n\nConsent\n=======\n\nWritten informed consent was obtained from all patients for publication of this case report and accompanying images. ", "A copy of the written consent is available for review by the Editor-in-Chief of this journal.", "\n\nCompeting interests\n===================\n\nThe authors declare that they have no competing interests.", "\n\nAuthors' contributions\n======================\n\nTI and YK wrote the manuscript. ", "TI, YK, AO, HS, HF, SM, TU, and KS cared for our patients. ", "YO performed endocrinological examinations and patient management. ", "All authors reviewed the report and approved the final version of the manuscript.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0.007575757575757576, 0.011857707509881422, 0.00847457627118644, 0.005847953216374269, 0.007751937984496124, 0.01, 0.00425531914893617, 0.0012043356081894822, 0.0023923444976076554, 0.018691588785046728, 0.010869565217391304, 0, 0.09090909090909091, 0.0125, 0.007042253521126761, 0, 0, 0, 0, 0.016129032258064516, 0, 0, 0.017543859649122806, 0, 0, 0.007575757575757576, 0.007662835249042145, 0.011764705882352941, 0.004761904761904762, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0.0012674271229404308, 0, 0.0136986301369863, 0, 0.0029784065524944155, 0.018404907975460124, 0.005154639175257732, 0.008771929824561403, 0.010256410256410256, 0, 0.020100502512562814, 0.005263157894736842, 0.004081632653061225, 0.007936507936507936, 0, 0.00546448087431694, 0, 0.009216589861751152, 0, 0.005747126436781609, 0, 0, 0, 0, 0.0847457627118644, 0.014925373134328358, 0, 0 ]
0.007599
5
[ { "analysis_explanation": null, "end": 251, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244 }, { "analysis_explanation": null, "end": 923, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 919 }, { "analysis_explanation": null, "end": 931, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 927 }, { "analysis_explanation": null, "end": 1701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1694 }, { "analysis_explanation": null, "end": 3993, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3982 }, { "analysis_explanation": null, "end": 4002, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3994 }, { "analysis_explanation": null, "end": 4066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4059 }, { "analysis_explanation": null, "end": 4205, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4198 }, { "analysis_explanation": null, "end": 4470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4463 }, { "analysis_explanation": null, "end": 4556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4542 }, { "analysis_explanation": null, "end": 4678, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4667 }, { "analysis_explanation": null, "end": 4687, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4679 }, { "analysis_explanation": null, "end": 4721, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4714 }, { "analysis_explanation": null, "end": 5303, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5292 }, { "analysis_explanation": null, "end": 5312, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5304 }, { "analysis_explanation": null, "end": 5399, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5384 }, { "analysis_explanation": null, "end": 5466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5459 }, { "analysis_explanation": null, "end": 5685, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5674 }, { "analysis_explanation": null, "end": 5694, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5686 }, { "analysis_explanation": null, "end": 5774, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5767 }, { "analysis_explanation": null, "end": 6120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6113 }, { "analysis_explanation": null, "end": 6715, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6710 }, { "analysis_explanation": null, "end": 6802, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6795 }, { "analysis_explanation": null, "end": 7238, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7231 }, { "analysis_explanation": null, "end": 8829, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8828 }, { "analysis_explanation": null, "end": 8881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8874 }, { "analysis_explanation": null, "end": 9120, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9114 }, { "analysis_explanation": null, "end": 11346, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11339 }, { "analysis_explanation": null, "end": 11406, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11395 }, { "analysis_explanation": null, "end": 11567, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11557 }, { "analysis_explanation": null, "end": 11728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11721 }, { "analysis_explanation": null, "end": 12687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12680 }, { "analysis_explanation": null, "end": 13568, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13566 }, { "analysis_explanation": null, "end": 350, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 348 }, { "analysis_explanation": null, "end": 356, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 354 }, { "analysis_explanation": null, "end": 1012, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1010 }, { "analysis_explanation": null, "end": 1143, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1141 }, { "analysis_explanation": null, "end": 3962, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3960 }, { "analysis_explanation": null, "end": 4564, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4562 }, { "analysis_explanation": null, "end": 4972, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4970 }, { "analysis_explanation": null, "end": 5271, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5269 }, { "analysis_explanation": null, "end": 6411, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6409 }, { "analysis_explanation": null, "end": 8683, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8681 }, { "analysis_explanation": null, "end": 10369, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10367 }, { "analysis_explanation": null, "end": 10375, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10373 }, { "analysis_explanation": null, "end": 10480, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10478 }, { "analysis_explanation": null, "end": 10486, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10484 }, { "analysis_explanation": null, "end": 11034, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11032 }, { "analysis_explanation": null, "end": 11040, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11038 }, { "analysis_explanation": null, "end": 11414, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11411 }, { "analysis_explanation": null, "end": 11421, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 11418 } ]
[ "\n(2008)\nCITY OF RATON, a municipal corporation and political subdivision of the State of New Mexico, Plaintiff,\nv.\nARKANSAS RIVER POWER AUTHOITY, a public power corporation and political subdivision of the State of Colorado, Defendant.", "\nNo. ", "Civ 08-0026 JB/WDS.", "\nUnited States District Court, D. New Mexico.", "\nSeptember 17, 2008.", "\n\nMEMORANDUM OPINION AND ORDER\nJAMES O. BROWNING, District Judge.", "\nTHIS MATTER comes before the Court on the Defendant's Motion to Stay, or in the Alternative, to Transfer Venue Pursuant to 28 U.S.C. § 1404(a), or Dismiss Pursuant to Fed.", "R.Civ.", "P. 12(b)(6), filed February 15, 2008 (Doc. ", "5)(\"Motion\"). ", "The Court held a hearing on May 2, 2008. ", "The primary issues are: (i) whether the Court should transfer venue of this action to the United States District Court for the District of Colorado; (ii) whether Plaintiff City of Raton's claim for declaratory relief under the New Mexico Joint Powers Agreements Act states a claim for which relief can be granted; (iii) whether the Colorado Governmental Immunity Act bars the City of Raton's claim for negligent misrepresentation; and (iv) whether the City of Raton can state a claim, under the circumstances alleged, for violation of the New Mexico Constitution's Anti-Donation Clause. ", "For the reasons stated at the hearing, for reasons stated herein that are consistent with those stated at the hearing, and because the Court does not believe that the Colorado venue is a measurably, if any, better forum than the jurisdiction of New Mexico, the Court will deny the motion to transfer and to abstain. ", "The Court will permit Defendant Arkansas River Power Authority (\"ARPA\") to withdraw its motion to dismiss City of Raton's First Claim. ", "The Court will grant the motion to dismiss City of Raton's Third Claim for negligent misrepresentation because the Court believes that New Mexico courts would extend governmental immunity to the Arkansas River Power Authority under the principle of comity. ", "The Court will grant the motion to dismiss City of Raton's Fifth Claim for Relief because Raton has failed to state a claim for violation of the Anti-Donation Clause, because the Court believes the purpose of the Anti-Donation Clause is to prevent gifts from governmental entities and the City of Raton is not gifting electricity to non-ARPA subscribers.", "\n\nFACTUAL BACKGROUND\nARPA is a political subdivision of the State of Colorado, formed by six Colorado municipalities and the City of Raton, to provide wholesale electric power to its member municipalities. ", "See Motion at 1. ", "The City of Raton entered into the Organic Contract and the Power Sales Agreement forming ARPA in 1979. ", "See Complaint for Declaratory. ", "Judgment, Breach of Contract, Misrepresentation, Violation of the New Mexico Constitution and Permanent. ", "Injunctive Relief ¶ 10, at 2, filed January 9, 2008 (\"Complaint\"). ", "Pursuant to the Organic Contract and the Power Sales Agreement, the City of Raton agreed to \"purchase and obtain all [of its] wholesale power and energy requirements from [ARPA].\" ", "Complaint ¶ 13, at 3 (internal quotation marks omitted). ", "The New Mexico Department of Finance and Administration (\"DFA\") approved the Organic Contract on October 31, 1979. ", "See Complaint ¶ 11, at 2.", "\nThe City of Raton subsequently approved amendments to the Organic Contract. ", "See Complaint ¶ 26, at 5. ", "The amendments authorized ARPA to proceed with the Repowering Project and with the issuance of bonds to finance that project. ", "See Complaint ¶¶ 25-30, at 5. ", "The City of Raton approved these amendments on or about October 26, 2004 and January 18, 2005. ", "See Complaint ¶ 29, at 5. ", "The City of Raton did not provide any notice of its suit against ARPA under the Colorado Governmental Immunity Act, Colo.Rev. Stat. § ", "24-10-109(1). ", "See Motion, Exhibit 1, Affidavit of Brunelli ¶ 24, at 7-8 (executed February 15, 2008)(\"Brunelli Aff.\").", "\n\nPROCEDURAL BACKGROUND\nThe City of Raton's First Claim for Relief is for declaratory judgment and seeks a declaration that certain amendments to the Organic Contract and the Power Sales Agreement, made in contemplation of the Repowering Project, are \"void and of no effect\" because ARPA did not, pursuant to the New Mexico Joint Powers Agreements Act, N.M.S.A.1978 §§ 11-1-1 to 11-1-7, receive the DFA Secretary's prior approval. ", "Complaint ¶¶ 61-68, at 10-11.", "\nIn its Third Claim for Relief, for negligent misrepresentation, the City of Raton alleges that ARPA \"made a number of material misrepresentations to the City concerning the Project and costs associated with the Project,\" including alleged \"misrepresentations concerning the cost of the Project, the progress of the Project, its economic feasibility, and its superiority to other alternatives available to the City and Member Municipalities for acquiring power.\" ", "Complaint ¶¶ 77-78, at 12. ", "The City of Raton alleges that, as a result of these alleged misrepresentations, it was damaged. ", "See Complaint ¶ 84, at 13.", "\nThe City of Raton's Fifth Claim for Relief asserts that ARPA \"must sell up to twenty-seven percent (27%) of the Project energy output to non-members\" at rates less than the estimated cost of production, which \"would amount to an impermissible donation and an indirect lending of credit to non-members [of ARPA] in violation of Article IX, Section 14 of the New Mexico Constitution.\" ", "Complaint ¶¶ 93-94, at 14.", "\nOn February 5, 2008, ARPA submitted a motion requesting that the Court stay the case, or in the alternative transfer venue to the United States District of Colorado, or dismiss Counts I, III, and V of the City of Raton's Complaint. ", "See Doc. ", "5. ", "ARPA contends that the Court should abstain from deciding the case because the action should have been commenced in Colorado and thus venue is inconvenient in this Court. ", "See id. at 12. ", "While ARPA acknowledges that this case was filed two days before the pending case in Colorado, neither case has progressed more significantly than the other. ", "See id. at 13-14. ", "ARPA also asserts that Colorado law, not New Mexico law, should govern the dispute, because the Organic Contract and the Power Sales Agreement were \"intended to be governed by Colorado law.\" ", "Id. at 14. ", "ARPA alternatively requests that the Court transfer venue of this case to the federal district court in Colorado. ", "See id. at 16-17. ", "ARPA asserts that the majority of non-party witnesses reside in Colorado. ", "See id. at 17.", "\nARPA argues that the Court should dismiss the City of Raton's Count I because the Colorado Governmental Immunity Act bars the claim and because the City of Raton has not sufficiently pled this count with particularity as required under rule 9 of the Federal Rules of Civil Procedure. ", "See id. at 20-24. ", "ARPA contends that the Court should dismiss City of Raton's Count V for violation of the Anti-Donation Clause of the New Mexico Constitution because ARPA is a Colorado political subdivision that is not subject to New Mexico Constitution's limitations. ", "See id. at 24. ", "ARPA asserts that, even if the Anti-Donation Clause were applicable, its conduct does not violate the Anti-Donation Clause because the City of Raton has received substantial consideration for its expenditures. ", "See id. at 25. ", "ARPA also argues that the Court should give effect to the notice requirements of the Colorado Governmental Immunity Act under the comity principle. ", "See Reply in Support of Motion to Stay, or in the Alternative, to Transfer Venue Pursuant to 28 U.S.C. § 1404(a), or Dismiss Pursuant to Fed.", "R.Civ.", "P. 12(b)(6), filed March 28, 2008 (Doc. ", "10)(\"Reply\"). ", "ARPA further contends that the City of Raton has not provided sufficient detail to satisfy rule 9, because \"it[s] recitation of the general subject matter of the alleged misrepresentations fails to describe exactly what [ARPA] said that was not true, who made the statements, or how such statements were false.\" ", "Id. at 8.", "\nThe City of Raton responded on March 4, 2008. ", "See City of Raton's Response to Motion to Stay, or in the Alternative, to Transfer Venue Pursuant to 28 U.S.C. § 1404(a), or Dismiss Pursuant to Fed. ", "R.Civ.", "P. 12(b)(6), filed March 4, 2008 (Doc. ", "7)(\"Response\"). ", "The City of Raton contends that the Court should not abstain, because there are no parallel proceedings pending in state and federal court. ", "See id. at 5. ", "The City of Raton contends that the majority of relevant events and communications underlying the dispute occurred in New Mexico. ", "See id. at 8. ", "The City of Raton argues that, because the Organic Contract and Power Sales Agreement does not contain a choice-of-law provision selecting Colorado law, it is unclear Colorado law is applicable to this case. ", "See id. at 11. ", "The City of Raton contends that it has properly stated a claim for negligent misrepresentation because the Colorado Governmental Immunity Act is inapplicable to breach-of-contract actions. ", "See id. at 19. ", "The City of Raton asserts that, even if the Colorado Governmental Immunity Act is applied, it properly gave actual notice to ARPA of its intention to sue. ", "See id. at 20. ", "The City of Raton argues that ARPA would not have immunity under New Mexico law, because it was provided actual notice. ", "See id. at 21. ", "The City of Raton also asserts that rule 9 does not apply to a negligent misrepresentation claim, and, even if it did, that the City of Raton has satisfied it by providing sufficient detail. ", "See id. at 22. ", "The City of Raton contends that it has asserted a claim for violation of the Anti-Donation Clause because the City of Raton is forced to pay a subsidy to a non-member, private citizen, who will pay less than the cost of production. ", "See id. at 23.", "\nOn March 11, 2008, the City of Raton submitted a request for judicial notice of dismissal of related Colorado proceedings. ", "See Doc. ", "9. ", "The City of Raton attached a copy of an order that the Honorable John L. Kane, Senior United States District Judge for the United States District Court for the District of Colorado, had issued. ", "See id., Exhibit 1, Arkansas River Power Authority v. City of Raton, No. ", "08-cv-00073-JLK, Order, 2008 WL 681471 (Doc. ", "9-2)(\"Kane Order\"). ", "In that Order, Judge Kane grants the City of Raton's motion to dismiss ARPA's action. ", "See id. at 2. ", "Judge Kane concluded:\nThe New Mexico action was first filed, involves the same parties, presents the same factual issues, as this case and includes a request for declaratory judgment that is a reverse image of the declaratory relief the ARPA seeks in this court. ", "The New Mexico action also involves other claims and relief not asserted here, including claims by Raton for damages under tort and contract theories and a request for permanent injunctive relief. ", "The New Mexico action is, therefore, a better and more effective forum for fully resolving the controversy between the parties.", "\nId. at 3. ", "Judge Kane also found that \"the public interest of the citizens and governmental agencies of New Mexico in this dispute, on balance, outweighs that of the citizens and governmental agencies of Colorado.\" ", "Id.\nAt the May 2, 2008 hearing, ARPA represented that fourteen of the Board Members governing ARPA are Colorado residents and, two members, whom the City of Raton appointed, are presumably New Mexico residents. ", "See Transcript of Hearing at 7:5-9 (Johnson)(taken May 2, 2008)(\"Tr.", "\").[1] ARPA contended that a number of other key witnesses are residents of the State of Colorado. ", "See id. at 7:15-8:19 (Johnson). ", "ARPA argued it had no way to compel residents of Colorado to come to New Mexico. ", "See id. at 8:1-3 (Johnson). ", "ARPA contended that, because it is a Colorado government entity, under a Colorado contract, relating to Colorado bonds, and a Colorado powering project affecting seventy-eight percent of the 22,000 ratepayers residing in Colorado, the strongest state interest is in Colorado. ", "See id. at 15:6-14 (Johnson).", "\nThe City of Raton contended that residents of New Mexico, including elected officials and lay persons analyzing various representations that ARPA's representatives made, may be witnesses. ", "See id. at 20:19-21:3 (Winter). ", "The City of Raton argued that it has witnesses that could not be compelled to appear in Colorado. ", "See id. at 21:5-6 (Winter). ", "The City of Raton suggested that, because the ARPA Board's minutes are regularly recorded and issued, it is unlikely that the Board Members would be relevant at trial, and they would be difficult to produce at a trial in Colorado. ", "See id. at 25:21-25 (Winter).", "\nARPA reconsidered its motion to dismiss on Count I of the City of Raton's Complaint and asked to withdraw its motion as it pertains to Count I, because of the likelihood that the arguments involve disputed issues of fact. ", "See id. at 83:23-84:4 (Johnson). ", "The City of Raton did not object to ARPA's withdrawal of its 12(b)(6) motion on Count I of the Complaint. ", "See id. at 84:5-7 (Court & Winter).", "\nARPA contended that the Court should dismiss the City of Raton's Count III because the City of Raton did not plead it with particularity, and because the City of Raton failed to give ARPA tort-claims notice. ", "See id. at 84:11-85:21 (Johnson & Court). ", "ARPA argued that, were the Court not to recognize the Colorado immunity statute, when there was \"no question [that] the statute was not complied with,\" then it would encourage forum shopping. ", "Id. at 89:4-10 (Johnson). ", "The City of Raton argued that it was not required to plead with particularity its negligent misrepresentation claim, because it was based on contract, not in tort. ", "See id. at 93:8-96:2 (Court & Winter). ", "ARPA maintained that the City of Raton's negligent misrepresentation claim is a tort, rather than a breach-of-contract claim. ", "See id. at 102:6-12 (Johnson).", "\nARPA asserted that the Court should dismiss the City of Raton's Anti-Donation Clause claim because:\n[A]t this point no power has been sold, no price has been set, and, in fact, the plant is not yet complete, so what Raton is really seeking here is an advisory opinion about what might happen in the future if the power plant is completed and the ... surplus power is sold at a given amount. ", "It's not entirely clear that that will ever happen. ", "It is projected that may happen, and that was what was put out in disclosure documents, but it's not a certainty, and until that occurs, we're deal[ing] with a question that I would submit is not ripe.", "\nId. at 104:9-18 (Johnson). ", "ARPA contended that it was unclear whether the New Mexico Constitution would apply to it, as a Colorado governmental entity. ", "See id. at 104:19-21 (Johnson). ", "The City of Raton conceded that it gave ARPA consideration for the agreement, and received consideration in return: \"Mutual covenants and conditions contained herein is the consideration indicated. ", "There was no monetary consideration .... [and] power at 5.5 cents.\" ", "Id. at 62:12-24 (Court & Winter). ", "The City of Raton countered that it is not alleging that ARPA's conduct may violate the Anti-Donation Clause, but that the City of Raton's \"donation\" of overage power is an impermissible donations to either another municipality or some third party. ", "Id. at 108:2-7 (Winter & Court). ", "The City of Raton argued that, implicit in the ratemaking structure, there will be below-cost sale of excess energy, which did not exist before the implementation or completion of the power-plant project, to third parties. ", "See id. at 112:12-15 (Winter). ", "The City of Raton asserted that the seven municipalities involved with ARPA in the power project \"are on line for every operational cost ARPA creates, and one of the costs [that] ARPA has indicated will happen is that it will be making sales to third parties at less than production.\" ", "Id. at 15-18 (Winter). ", "ARPA countered that the plant-building project is being constructed to serve the needs for forty years and, to supply such power in the future, it must anticipate growth and it must build greater capacity than its existing need; because it knows it does not need all that power today, it looks for sources where it can recoup some of those costs, and one of the ways it recoups its costs is in sales to third parties. ", "See id. at 118:17-119:1 (Johnson).", "\n\nLAW REGARDING TRANSFER OF VENUE\n28 U.S.C. § 1404 governs the transfer of venue. ", "That statute provides, in pertinent part: \"[f]or the convenience of the parties and witnesses, in the interest of justice, a district court may transfer any civil action to any other district or division where it might have been brought.\" ", "28 U.S.C. § 1404(a). ", "Section 1404(a) affords a district court broad discretion to adjudicate motions to transfer based on a case-by-case review of convenience and fairness. ", "See Chrysler Credit Corp. v. Country Chrysler, Inc., 928 F.2d 1509, 1516 (10th Cir.1991).", "\nAmong the factors [a district court] should consider is the plaintiff's choice of forum; the accessibility of witnesses and other sources of proof, including the availability of compulsory process to insure attendance of witnesses; the cost of making the necessary proof; questions as to the enforceability of a judgment if one is obtained; relative advantages and obstacles to a fair trial; difficulties that may arise from congested dockets; the possibility of the existence of questions arising in the area of conflict of laws; the advantage of having a local court determine questions of local law; and, all other considerations of a practical nature that make a trial easy, expeditious and economical.", "\nId. at 1516 (internal quotation marks omitted). ", "See Texas Gulf Sulphur v. Ritter, 371 F.2d 145, 147 (10th Cir.1967)(stating the factors that courts consider in making a venue determination under § 1404(a)).", "\n\nLAW REGARDING ABSTENTION\nThe Supreme Court of the United States has noted that \"the power to stay proceedings is incidental to the power inherent in every court to control the disposition of the causes on its docket with economy of time and effort for itself, for counsel and for litigant.\" ", "Landis v. N. Am. ", "Co., 299 U.S. 248, 254, 57 S.Ct. ", "163, 81 L.Ed. ", "153 (1936). ", "In Colorado River Conservation District v. United States, 424 U.S. 800, 96 S.Ct. ", "1236, 47 L.Ed.2d 483 (1976), the Supreme Court held that the abstention doctrine empowers federal courts to decline to exercise or to postpone the exercise of their jurisdiction in exceptional circumstances where a parallel state-court proceeding is pending, and where permitting the state-court proceeding to proceed would clearly serve an important countervailing interest. ", "See 424 U.S. at 813, 96 S.Ct. ", "1236. \"", "Abstention from the exercise of federal jurisdiction is the exception, not the rule.\" ", "Id.\nAbstention is appropriate where an action presents difficult questions of state law bearing on policy problems of substantial public import which transcend the result in the case before the court. ", "See Colo. River Conservation Dist. ", "v. United States, 424 U.S. at 814, 96 S.Ct. ", "1236 (\"Abdication of the obligation to decide cases can be justified under this doctrine only in the exceptional circumstances where the order to the parties to repair to the state court would clearly serve an important countervailing interest\"); La. Power and Light Co. v. City of Thibodaux, 360 U.S. 25, 28-30, 79 S.Ct. ", "1070, 3 L.Ed.2d 1058 (1959)(holding that a federal action was properly stayed, pending the outcome of parallel state proceedings, where the action involved a matter of state policy—the scope of eminent domain powers of municipalities under state law); Burford v. Sun Oil Co., 319 U.S. 315, 316-35, 63 S.Ct. ", "1098, 87 L.Ed. ", "1424 (1943)(holding that federal proceedings should have been dismissed where the subject matter of the lawsuit in the federal district court involved the review of oil drilling permits by a state agency, because the state had established its own review system for the permits and a federal court ruling would have an impermissibly disruptive affect on state policy for management of the oil fields).", "\nThere is no precise rule for parallel proceedings in two federal district courts. ", "See Colo. River Conservation Dist. ", "v. United States, 424 U.S. at 817, 96 S.Ct. ", "1236 (\"As between federal district courts, however, though no precise rule has evolved, the general principle is to avoid duplicative litigation.\"). ", "In Colorado River Conservation District v. United States, the Supreme Court identified several factors a court should consider in deciding whether to abstain from exercising jurisdiction over a case pending the resolution of a parallel proceeding, including: (i) whether either court has assumed jurisdiction over property; (ii) whether the federal forum is inconvenient; (iii) the avoidance of piecemeal litigation; (iv) the order in which the courts obtained jurisdiction and the progress of the two cases; (v) which forum's substantive law governs the merits of the litigation; and (vi) the adequacy of the state forum to protect the rights of the parties. ", "See 424 U.S. at 819, 96 S.Ct. ", "1236. \"", "No single factor is dispositive; `[t]he weight to be given to any one factor may vary greatly from case to case, depending on the particular setting of the case.'\" ", "Fox v. Maulding, 16 F.3d 1079, 1082 (10th Cir.1994)(quoting Moses H. Cone Mem'l Hosp. ", "v. Mercury Const. ", "Corp., 460 U.S. 1, 16, 103 S.Ct. ", "927, 74 L.Ed.2d 765 (1983)). ", "The court's decision \"does not rest on a mechanical checklist, but on a careful balancing of the important factors as they apply in a given case, with the balance heavily weighted in favor of the exercise of jurisdiction.\" ", "Moses H. Cone Mem'l Hosp. ", "v. Mercury Const. ", "Corp., 460 U.S. at 16, 103 S.Ct. ", "927.", "\n\nLAW REGARDING RULE 12(b)(6) OF THE FEDERAL RULES OF CIVIL PROCEDURE\nUnder rule 12(b)(6), a court may dismiss a complaint for \"failure to state a claim upon which relief can be granted.\" ", "Fed. ", "R.Civ.", "P. 12(b)(6). \"", "The nature of a Rule 12(b)(6) motion tests the sufficiency of the allegations within the four corners of the complaint after taking those allegations as true.\" ", "Mobley v. McCormick, 40 F.3d 337, 340 (10th Cir.1994). ", "The sufficiency of a complaint is a question of law, and when considering and addressing a rule 12(b)(6) motion, a court must accept as true all well-pleaded factual allegations in the complaint, and view those allegations in the light most favorable to the non-moving party and draw all reasonable inferences in the plaintiff's favor. ", "See Moore v. Guthrie, 438 F.3d 1036, 1039 (10th Cir.2006); Hous. ", "Auth. ", "of Kaw Tribe v. City of Ponca City, 952 F.2d 1183, 1187 (10th Cir.1991). ", "A complaint challenged by a rule 12(b)(6) motion to dismiss does not require detailed factual allegations, but a plaintiff's obligation to set forth the grounds of his or her entitlement to relief \"requires more than labels and conclusions, and a formulaic recitation of the elements of a cause of action will not do.\" ", "Bell Atl. ", "Corp. v. Twombly, 550 U.S. 544, 127 S.Ct. ", "1955, 1965, 167 L.Ed.2d 929 (2007). \"", "Factual allegations must be enough to raise a right to relief above the speculative level, on the assumption that all the allegations in the complaint are true (even if doubtful in fact).\" ", "Id. (internal citation omitted). \"[", "T]he [United States Supreme] Court recently... prescribed a new inquiry for us to use in reviewing a dismissal: whether the complaint contains `enough facts to state a claim to relief that is plausible on its face.'\" ", "Ridge at Red Hawk, L.L.C. v. Schneider, 493 F.3d 1174, 1177 (10th Cir.2007)(quoting Bell Atl. ", "Corp. v. Twombly, 550 U.S. 544, 127 S.Ct. ", "1955, 1967, 1969, 167 L.Ed.2d 929 (2007)). \"", "The Court explained that a plaintiff must `nudge his claims across the line from conceivable to plausible' in order to survive a motion to dismiss.\" ", "Ridge at Red Hawk, L.L.C. v. Schneider, 493 F.3d at 1177 (quoting Bell Atl. ", "Corp. v. Twombly, 127 S.Ct. ", "at 1974.)(alterations omitted). \"", "Thus, the mere metaphysical possibility that some plaintiff could prove some set of facts in support of the pleaded claims is insufficient; the complaint must give the court reason to believe that this plaintiff has a reasonable likelihood of mustering factual support for these claims.\" ", "Ridge at Red Hawk, L.L.C. v. Schneider, 493 F.3d at 1177.", "\nIn resolving a motion to dismiss brought under rule 12(b)(6), the court must determine whether the factual allegations are sufficient \"to raise a right to relief above the speculative level,\" while assuming \"that all the allegations in the complaint are true (even if doubtful in fact).\" ", "Bell Atl. ", "Corp. v. Twombly, 127 S.Ct. ", "at 1965 (internal quotation marks omitted).", "\n\"[P]lausibility\" in this context must refer to the scope of the allegations in a complaint: if they are so general that they encompass a wide swath of conduct, much of it innocent, then the plaintiffs \"have not nudged their claims across the line from conceivable to plausible.\" [", "Bell Atl. ", "Corp. v. Twombly, 127 S.Ct.] ", "at 1974. ", "The allegations must be enough that, if assumed to be true, the plaintiff plausibly (not just speculatively) has a claim for relief.", "\nRobbins v. Oklahoma, 519 F.3d 1242, 1247 (10th Cir.2008).", "\nThis requirement of plausibility serves not only to weed out claims that do not (in the absence of additional allegations) have a reasonable prospect of success, but also to inform the defendants of the actual grounds of the claim against them. \"", "Without some factual allegation in the complaint, it is hard to see how a claimant could satisfy the requirement of providing not only `fair notice' of the nature of the claim, but also `grounds' on which the claim rests.\" [", "Bell Atl. ", "Corp. v. Twombly, 127 S.Ct.] ", "at 1965 n. 3. ", "See Airborne Beepers & Video, Inc. v. AT & T Mobility L.L.C., 499 F.3d 663, 667 (7th Cir.2007) (\"[A]t some point the factual detail in a complaint may be so sketchy that the complaint does not provide the type of notice of the claim to which the defendant is entitled under Rule 8.\"). ", "The Twombly Court was particularly critical of complaints that \"mentioned no specific time, place, or person involved in the alleged conspiracies.\" ", "127 S.Ct. ", "at 1971 n. 10. ", "Given such a complaint, \"a defendant seeking to respond to plaintiffs' conclusory allegations. . . ", "would have little idea where to begin.\" ", "Id.\n\nRobbins v. Oklahoma, 519 F.3d at 1248. ", "Complaints in § 1983 actions subject to qualified-immunity defenses\nmust allege facts sufficient to show (assuming they are true) that the defendants plausibly violated the [plaintiff's] constitutional rights, and that those rights were clearly established at the time. ", "This requires enough allegations to give the defendants notice of the theory under which their claim is made.", "\n* * * *\n[C]omplaints in § 1983 cases against individual government actors pose a greater likelihood of failures in notice and plausibility because they typically include complex claims against multiple defendants. ", "The Twombly standard may have greater bite in such contexts, appropriately reflecting the special interest in resolving the affirmative defense of qualified immunity at the earliest possible stage of a litigation. ", "Without allegations sufficient to make clear the \"grounds\" on which the plaintiff is entitled to relief, Twombly, 127 S.Ct. ", "at 1965 n. 3, it would be impossible for the court to perform its function of determining, at an early stage in the litigation, whether the asserted claim is clearly established.", "\nRobbins v. Oklahoma, 519 F.3d at 1249 (internal quotation marks and citations omitted).", "\n\nLAW REGARDING RULE 9(b) OF THE FEDERAL RULES OF CIVIL PROCEDURE\nRule 9(b) of the Federal Rules of Civil Procedure provides that: \"In alleging fraud or mistake, a party must state with particularity the circumstances constituting fraud or mistake. ", "Malice, intent, knowledge, and other conditions of a person's mind may be alleged generally.\" ", "Fed.", "R.Civ.", "P. 9(b). ", "In light of the language of rule 9(b), a court must make at least two initial inquiries regarding rule 9(b): first, to which specific causes of action does rule 9(b) apply; and second, what degree of particularity should the law demand.", "\nWith respect to rule 9(b)'s scope, a court should require parties to plead a cause of action with particularity when that cause of action contains allegations grounded in fraud. ", "See 2 JAMES WM. ", "MOORE, JEFFREY A. PARNESS & JERRY SMITH, MOORE'S FEDERAL PRACTICE § 9.03(1)(d), at 9-20 (3d ed. ", "2008). ", "On the other hand, claims based on negligent or innocent misrepresentation, to the extent those claims do not require proof of fraud, may be pled in accordance with the more relaxed standards of rule 8(a). ", "J. MOORE, supra § 9.03(1)(d), at 9-21; Vess v. Ciba-Geigy Corp. USA, 317 F.3d 1097, 1104-05 (9th Cir.2003)(\"Allegations of non-fraudulent conduct need satisfy only the ordinary notice pleading standards of Rule 8(a).\").", "\nThe primary motives that animate rule 9(b) help illuminate the reason for limiting the rule's reach to claims grounded in fraud. ", "First, the requirement of pleading with particularity protects defendants' reputations from the harm attendant to accusations of fraud or dishonest conduct. ", "See Guidry v. Bank of LaPlace, 954 F.2d 278, 288 (5th Cir. ", "1992)(\"[The particularity requirement] stems from the obvious concerns that general, unsubstantiated charges of fraud can do damage to defendant's reputations.\"); ", "United States ex rel. ", "Harrison v. Westinghouse Savannah River Co., 352 F.3d 908, 921 (4th Cir.2003)(\"Rule 9(b) protects defendants from harm to their goodwill and reputation.\") (", "quotations and citations omitted). ", "Second, the requirement to plead with particularity puts defendants on notice of the allegedly fraudulent conduct so that they can formulate a defense. ", "See United States ex rel. ", "Harrison v. Westinghouse Savannah River Co., 352 F.3d at 921. ", "A related goal of 9(b) is to prevent plaintiffs from tagging on specious fraud claims to their pleadings in an attempt \"to induce advantageous settlements or for other ulterior purposes.\" ", "Bankers Trust Co. v. Old Republic Insurance Co., 959 F.2d 677, 683 (7th Cir.1992).", "\nThe United States Court of Appeals for the Tenth Circuit has fleshed out the components necessary to a successful 9(b) pleading. ", "In Sheldon v. Vermonty, 246 F.3d 682 (Table), 2000 WL 1774038 (10th Cir. ", "December 4, 2000), the Tenth Circuit held that the plaintiff alleged with specific particularity a violation of the Securities Exchange Act of 1934. ", "See 2000 WL 1774038 at *4. ", "The Tenth Circuit concluded that the complaint\nadequately met Rule 9(b) requirements. ", "First, as the district court acknowledged, the Complaint alleged misrepresentations with background information as to date, speaker, and the medium of communication.... Second, certain of the alleged misrepresentations involved profitable expectations arising from an unowned and inoperable meat-packing plant, a nonexistent lumber company, and fabricated contracts. ", "Accepting Sheldon's allegations as true, these are patently false statements of present fact. ", "The district court erred in determining they were mere conclusory allegations of falsity and in characterizing them as fraud by hindsight.... Third, the allegations of scienter were sufficient. ", "In securities fraud cases, although speculation and conclusory allegations will not suffice, great specificity is not required if the plaintiff alleges enough facts to support a strong inference of fraudulent intent.", "\nId. at *5 (internal quotation marks and citations omitted). \"", "At a minimum, Rule 9(b) requires that a plaintiff set forth the who, what, when, where and how of the alleged fraud.\" ", "United States ex rel. ", "Schwartz v. Coastal Healthcare Group, Inc., 232 F.3d 902 (Table), 2000 WL 1595976 at *3 (10th Cir.2000)(unpublished opinion). \"", "To survive a motion to dismiss, an allegation of fraud must `set forth the time, place, and contents of the false representation, the identity of the party making the false statements and the consequences thereof.'\" ", "Midgley v. Rayrock Mines, Inc., 374 F.Supp.2d 1039, 1047 (D.N.M.2005)(Browning, J.)(quoting Schwartz v. Celestial Seasonings, Inc., 124 F.3d 1246, 1252 (10th Cir.1997)). \"", "On the other hand, rule 9(b) does not require specific knowledge regarding the defendant's state of mind.\" ", "Midgley v. Rayrock Mines, Inc., 374 F.Supp.2d at 1047.", "\nThe federal courts have not fully agreed on proper pleading standard for negligent misrepresentation. ", "On the one hand, some courts have held that negligent misrepresentation must be pled with particularity. ", "See Atlantic Richfield Co. v. Ramirez, 176 F.3d 481, 1999 WL 273241 *1 (9th Cir.1999) (unpublished opinion); Aetna Casualty and Surety Co. v. Aniero Concrete Co., 404 F.3d 566, 583 (2nd Cir. ", "2005) (per curiam); Miller v. Allstate Insurance Co., 489 F.Supp.2d 1133, 1139 (N.D.Ca.2007); Anderson v. USAA Casualty Insurance Co., 221 F.R.D. 250, 254 (D.D.C.2004) (stating that a failure to plead with particularity would be \"fatal\" to a negligent misrepresentation claim). ", "Others have rejected such a rule and found that the notice-pleading standard of rule 8(a) applies. ", "See Tricontinental Industries, Ltd. v. PricewaterhouseCoopers, LLP., ", "475 F.3d 824, 833 (7th Cir.2007); Baltimore County v. Cigna Healthcare, 238 Fed.", "Appx. ", "914, 921-22 (4th Cir.2007).", "\nThe United States Court of Appeals for Fifth Circuit's stance is more subtle. ", "On the one hand, the Fifth Circuit has applied with approval the pleading standard set forth in rule 8(a) to a claim of negligent misrepresentation. ", "See General Electric Capital Corp. v. Posey, 415 F.3d 391, 395-96 (5th Cir.2005). ", "On the other hand, the Fifth Circuit has held that the heightened standard of rule 9(b) applies to negligent misrepresentation claims that are based on the same set of facts. ", "See Benchmark Electronics, Inc. v. J.M. Huber Corp., 343 F.3d 719, 723 (5th Cir.2003)(\"Although Rule 9(b) by its terms does not apply to negligent misrepresentation claims, this court has applied the heightened pleading requirements when the parties have not urged a separate focus on the negligent misrepresentation claims.\"). ", "Thus, the Fifth Circuit applies the heightened standard when the \"inadequate fraud claim is so intertwined with the negligent misrepresentation claim that it is not possible to describe a simple redaction that removes the fraud claim while leaving behind a viable negligent misrepresentation claim.\" ", "American Realty Trust, Inc. v. Travelers Casualty and Surety Co. of America, 362 F.Supp.2d 744, 749 (N.D.Tex.2005).", "\nThe only case on point within the Tenth Circuit is Van Leeuwan v. Nuzzi, 810 F.Supp. ", "1120, 1123 (D.Colo.1993), in which the court held that a plaintiff failed to plead negligent misrepresentation by not meeting the requirements of rule 9(b). ", "See id. The United States District Court for the District of Colorado did not state a rationale for holding the way it did.", "\nThe Court determines that the heightened-pleading standard should not apply to negligent-misrepresentation claims. ", "Rule 9(b) is primarily designed to protect defendants from facing damaging fraud accusations that the facts do not support. ", "In cases involving negligent misrepresentation or innocent mistake, the heightened standards do not further that purpose, but rather work against the general notion of notice pleading that applies in most cases. ", "See 2. ", "MOORE, supra § 9.03(1)(d), at 9-21.", "\nFirst, negligent misrepresentation is, as its name suggests, grounded in negligence rather than fraud. ", "See Sims v. Craig, 96 N.M. at 35, 627 P.2d at 877 (\"The theory of liability for this tort [negligent misrepresentation] is one of negligence rather than of intent to mislead.\"); ", "Bloskas v. Murray, 646 P.2d 907, 914 (Colo. 1982)(\"The tort of negligent misrepresentation provides a remedy for false information negligently given a person who relies to his detriment thereon.", "\")(internal quotation marks omitted). ", "Therefore, when persons or businesses are accused of negligent conduct, they do not face the same potential damage to their goodwill as when they face allegations of fraud. ", "Thus, since the tort is grounded in negligence, rule 9(b) should not govern its pleading standard.", "\nSecond, fraud includes elements that negligent misrepresentation does not. ", "Colorado and New Mexico require essentially the same elements to establish fraud. ", "In Cargill v. Sherrod, 96 N.M. 431, 631 P.2d 726 (1981), the Supreme Court of New Mexico stated: \"Actionable fraud consists of misrepresentation of a fact, known to be untrue by the maker, and made with an intent to deceive and to induce the other party to act in reliance thereon to his detriment.\" ", "Id. at 431, 631 P.2d at 727. ", "Similarly, the Supreme Court of Colorado has explained that:\nThe constituents of fraud . . . ", "consist of the following: (1) A false representation of a material existing fact, or a representation as to a material existing fact made with a reckless disregard of its truth or falsity; or a concealment of a material existing fact, that in equity and good conscience should be disclosed. (", "2) Knowledge on the part of the one making the representation that it is false; or utter indifference to its truth or falsity; or knowledge that he is concealing a material fact that in equity and good conscience he should disclose. (", "3) Ignorance on the part of the one to whom representations are made or from whom such fact is concealed, of the falsity of the representation or of the existence of the fact concealed. (", "4) The representation or concealment made or practiced with the intention that it shall be acted upon. (", "5) Action on the representation or concealment resulting in damage.", "\nMorrison v. Goodspeed, 100 Colo. 470, 68 P.2d 458, 462 (1937). ", "On the other hand, \"[t]he tort of negligent misrepresentation provides a remedy for false information negligently given a person who relies to his detriment thereon.\" ", "Bloskas v. Murray, 646 P.2d at 914 (internal quotation marks omitted)(emphasis added); See Sims v. Craig, 96 N.M. 33, 35, 627 P.2d 875, 877 (1981).", "\nNotice pleading is sufficient for most elements, particularly the common elements. ", "Rule 9(b) seeks to force the plaintiff to state with particularity what is unique about fraud—fraudulent conduct. ", "Rule 9(b) requires the plaintiff to explain why the misrepresentation was intentional or reckless, and it does so, usually, by averring what the defendant knew when it made the misrepresentation. ", "That allegation should be done with particularity. ", "On the other hand, negligent misrepresentation is usually shown by establishing what the defendant should have known or did not do, not what it knew at the time. ", "It is sufficient for the plaintiff to allege negligence—what the defendant did not do— generally. ", "That general allegation is sufficient for notice pleading of negligent misrepresentation.", "\nThird, the Supreme Court has recently made the standards for dismissal under rule 12(b)(6) more rigorous. ", "Notice pleading under Bell Atlantic Corp. v. Twombly, 127 S.Ct. ", "at 1977 (2007), has real teeth. ", "There is no sound reason to give corporate defendants accused of negligent misrepresentation more protection that doctors accused of malpractice or automobile operators of negligence. ", "Bell Atlantic Corp. v. Twombly serves the purposes of pleading negligent misrepresentation as well as would rule 9(b). ", "Indeed, the Twombly rule is better, because there is nothing served by creating a new exception to Twombly's general rule for a negligence tort unless there is some compelling reason to do so. ", "Not finding that compelling reason, the Court will decline to apply rule 9(b) to negligent misrepresentation claims, particularly those like New Mexico's and Colorado's, which are truly based on negligent conduct.", "\n\nLAW REGARDING GOVERNMENTAL IMMUNITY\nA foreign jurisdiction is not compelled to follow the governmental immunity laws that protect a state-governmental entity in its own state. ", "See Franchise Tax Bd. ", "of Cal. ", "v. Hyatt, 538 U.S. 488, 123 S.Ct. ", "1683, 155 L.Ed.2d 702 (2003)(holding that a forum is not required to extend sovereign immunity to other states sued in its courts, but should extend immunity under the principle of comity unless doing so would violate the forum's public policies); Nevada v. Hall, 440 U.S. 410, 424, 99 S.Ct. ", "1182, 59 L.Ed.2d 416 (1979)(holding that the Full Faith and Credit clause does not require a forum to apply the sovereign immunity doctrine of another state, if such an application would violate the forum's legitimate public policies). ", "On the other hand, New Mexico law has indicated it will extend immunity as a matter of comity if to do so would not violate the state's public policies. ", "Here, New Mexico has very similar tort-notice requirements as Colorado.", "\n\n1. ", "New Mexico Law Regarding Governmental Immunity.", "\n\nThe Supreme Court of New Mexico has articulated a number of factors for a court to consider in deciding whether to apply immunity provisions of a foreign state, including:\n(1) whether the forum state would enjoy similar immunity under similar circumstances... (2) whether the state sued has or is likely to extend immunity to other states ... (3) whether the forum state has a strong interest in litigating the case ... and (4) whether extending immunity would prevent forum shopping.", "\nSam v. Sam, 2006-NMSC-022, ¶ 22, 139 N.M. 474, 134 P.3d 761, 767. ", "The New Mexico courts \"likewise consider each of these factors when determining whether recognizing the sovereign immunity of a sister state would be contrary to the public policy of New Mexico.\" ", "Id., 134 P.3d at 767.", "\nIn Sam v. Sam, 2006-NMSC-022, 139 N.M. 474, 134 P.3d 761 (2006), the Supreme Court of New Mexico discussed the issue of \"whether the New Mexico courts should apply Arizona's statute of limitations or extend New Mexico's statute of limitations to an Arizona public employee based on the principles of comity, not whether it is compelled to do so.\" ", "Id. ¶ 20, 134 P.3d at 767. \"", "Comity refers to the spirit of cooperation in which a domestic tribunal approaches the resolution of cases touching the laws and interests of other sovereign states.\" ", "Id. ¶ 19, 134 P.3d at 766. ", "The Supreme Court of New Mexico noted that there are several factors that \"assist in determining whether extending immunity through comity would violate the forum state's public policy.\" ", "Id. ¶ 22, 134 P.3d at 767. ", "These factors include:\n(1) whether the forum state would enjoy similar immunity under similar circumstances. . . (", "2) whether the state sued has or is likely to extend immunity to other states . . . (", "3) whether the forum state has a strong interest in litigating the case . . . ", "and (4) whether extending immunity would prevent forum shopping. . . . ", "We likewise consider each of these factors when determining whether recognizing the sovereign immunity of a sister state would be contrary to the public policy of New Mexico.", "\nId., 134 P.3d at 767. ", "The Supreme Court of New Mexico stated that, although it was unclear whether Arizona courts would extend immunity to New Mexico, it believed that New Mexico has a interest in extending immunity by comity to \"encourage Arizona to extend immunity to a New Mexico governmental entity in the future.\" ", "Id. ¶ 24, 134 P.3d at 767.", "\nN.M.S.A.1978, § 41-4-16 provides:\nA. Every person who claims damages from the state or any local public body under the Tort Claims Act shall cause to be presented to the risk management division for claims against the state, the mayor of the municipality for claims against the municipality, the superintendent of the school district for claims against the school district, the county clerk of a county for claims against the county, or to the administrative head of any other local public body for claims against such local public body, within ninety days after an occurrence giving rise to a claim for which immunity has been waived under the Tort Claims Act, a written notice stating the time, place and circumstances of the loss or injury. ", "B. No suit or action for which immunity has been waived under the Tort Claims Act shall be maintained and no court shall have jurisdiction to consider any suit or action against the state or any local public body unless notice has been given as required by this section, or unless the governmental entity had actual notice of the occurrence. ", "The time for giving notice does not include the time, not exceeding ninety days, during which the injured person is incapacitated from giving the notice by reason of injury.", "\nN.M.S.A.1978, § 41-4-16(A) & (B)(emphasis added). \"[", "D]efendants have the burden of proving that the notice requirement was not met.\" ", "Dutton v. McKinley County Bd. ", "of Com'rs, 113 N.M. 51, 53, 822 P.2d 1134, 1136 (Ct.", "App.1991). ", "Under New Mexico law, mere awareness that an accident involving a state employee is insufficient to put a governmental entity on notice under N.M.S.A.1978, § 41-4-16(A). ", "See Powell v. N.M. State Highway and Transp. ", "Dep't, 117 N.M. 415, 419, 872 P.2d 388, 392 (Ct.", "App.1994)(stating \"where virtually every employee was aware of occurrence, but not of likelihood of litigation, such knowledge held insufficient to comply with notice requirement of Section 41-4-16\" and \"where both mayor and chief of police were aware of occurrence, but not that litigation might result, or that the plaintiff considered accident to be fault of the defendants, actual notice held not provided.", "\")(citing Dutton v. McKinley County Bd. ", "of Com'rs, 113 N.M. 51, 53, 822 P.2d 1134, 1136 (Ct.", "App.1991) and Frappier v. Mergler, 107 N.M. 61, 65, 752 P.2d 253, 257 (1988)). \"", "Nor does actual notice under Section 41-4-16(B) require that the notice of a claim indicate that a lawsuit will in fact be filed against the state, but rather that the state must be given notice of a likelihood that litigation may ensue, in order to reasonably alert the state to the necessity of investigating the merits of the potential claim.\" ", "Callaway v. N.M. Dep't of Corr., ", "117 N.M. 637, 640, 875 P.2d 393, 396 (Ct.", "App.1994).", "\n\n2. ", "Colorado's Governmental Immunity Act.", "\n\nColorado's Governmental Immunity Act (\"GIA\"), Colo.Rev.Stat. § ", "24-10-109 provides:\nAny person claiming to have suffered an injury by a public entity or by an employee thereof while in the course of such employment, whether or not by a willful and wanton act or omission, shall file a written notice as provided in this section within one hundred eighty days after the date of the discovery of the injury, regardless of whether the person then knew all of the elements of a claim or of a cause of action for such injury. ", "Compliance with the provisions of this section shall be a jurisdictional prerequisite to any action brought under the provisions of this article, and failure of compliance shall forever bar any such action.", "\nColo.Rev.Stat. § ", "24-10-109(1).", "\nThe Colorado Governmental Immunity Act does not apply to breach-ofcontract actions. ", "In Ebke v. Julesburg School Dist. ", "No. ", "RE-1, in Sedgwick County, 37 Colo.App. ", "349, 550 P.2d 355 (1976), the Court of Appeals of Colorado explained: \"Thus, even though the contract in the case at bar is created by statute, the violation is a contractual one and not covered by the GIA. ", "Therefore, plaintiffs were not required to give the notice provided for in § 24-10-109, C.R.S.1973.\" ", "550 P.2d at 356.", "\nThe Colorado Governmental Immunity Act must be strictly construed, because it is in derogation of the common law. ", "See Bertrand v. Bd. ", "of County Com'rs of Park County, 872 P.2d 223, 227 (Colo.1994)(stating that \"the immunity created by the GIA is in derogation of the common law ... and must be strictly construed.\"); ", "City of Aspen v. Meserole, 803 P.2d 950, 955 (Colo.1990)(\"Because the Governmental Immunity Act is in derogation of the common law of Colorado, legislative grants of immunity must be strictly construed.\"); ", "Stephen v. City and County of Denver, 659 P.2d 666, 668 (Colo. 1983)(\"Thus, the Colorado Governmental Immunity Act is in derogation of the common law, and the legislative grants of immunity must be strictly construed.\"). ", "The purpose of the GIA's notice provision is to \"give the municipal authorities prompt notice of the need to investigate the matter, to allow for immediate abatement of dangerous conditions, to foster prompt settlement of meritorious claims, as well as to allow a knowledgeable compliance with the statutory requirements for budgeting and tax levies.\" ", "State Personnel Bd. ", "v. Lloyd, 752 P.2d 559, 564-65 (Colo.1988).", "\n\nNEW MEXICO LAW REGARDING THE ANTI-DONATION CLAUSE OF THE NEW MEXICO CONSTITUTION\nArticle IX, Section 14 of the New Mexico Constitution provides:\nNeither the state nor any county, school district or municipality, except as otherwise provided in this constitution, shall directly or indirectly lend or pledge its credit or make any donation to or in aid of any person, association or public or private corporation or in aid of any private enterprise for the construction of any railroad except as provided.", "\nN.M. CONST. ", "Art. ", "IX, § 14. \"", "The Anti-Donation Clause ... prohibits the use of state or local governmental funds to benefit private organizations.\" ", "H. Stratton & P. Farley, Office of the Attorney General, State of New Mexico, History, Powers & Responsibilities, 1846-1990 at 125 (Univ. ", "of N.M. Printing Servs.1990). ", "In the context of New Mexico's Anti-Donation Clause, the Supreme Court has explained that it \"think[s] it fair to say from a review of the cases cited dealing with the term `donation,' as found in this proviso of the Constitution, that the word has been applied, in its ordinary sense and meaning, as a `gift,' an allocation or appropriation of something of value, without consideration to a `person, association or public or private corporation.'\" ", "Village of Deming v. Hosdreg Co., 62 N.M. 18, 28, 303 P.2d 920, 926-27 (1956).", "\nThe Supreme Court of New Mexico has stricken transactions under the Anti-Donation Clause in circumstances involving an outright gift of money or property to a private entity with no exchange of adequate consideration. ", "See Chronis v. State ex rel. ", "Rodriguez, 100 N.M. 342, 348, 670 P.2d 953, 959 (1983)(holding that a tax credit to liquor licensees against taxes owed to the state was an unconstitutional subsidy of the liquor industry); State ex rel. ", "Mechem v. Hannah, 63 N.M. 110, 118, 314 P.2d 714, 720 (1957)(holding that an appropriation to pay state's share of emergency feed certificates issued to livestock owners for the purchase of hay was an unconstitutional subsidy of the livestock industry); Hutcheson v. Atherton, 44 N.M. 144, 99 P.2d 462 (1940)(finding a statute unconstitutional that authorized counties to issue bonds, repaid by taxes, to fund the building of public auditoriums to be used by a private corporation during a celebration of the 400th anniversary of Coronado's exploration).", "\nIn City of Clovis v. Southwestern Public Service Co., 49 N.M. 270, 161 P.2d 878 (1945), the Supreme Court of New Mexico found that the Anti-Donation Clause did not prohibit a public entity from selling a utility system to a company that sells electricity to third parties. ", "See 49 N.M. at 275, 161 P.2d at 881. ", "The Supreme Court of New Mexico held that the agreement of a company to pay to the City of Clovis $130,000.00 in twenty-four annual payments as part of its purchase of Clovis' light-and-water system was not \"the lending or pledging of credit of the City of Clovis to any person for the benefit of the... Company, within the constitutional prohibition.\" ", "Id. at 275, 161 P.2d at 881. ", "There was no lending or pledging of credit, because \"[t]he debts and liabilities of the City, and the burden on its taxpayers, were not increased.\" ", "Id. at 275, 161 P.2d at 881. ", "The Supreme Court of New Mexico explained:\nNothing in this phase of the transaction possessed any element of guaranty, suretyship or pledge by the City of Clovis whereby the City became liable to do or perform any act or thing, or to incur any obligation, or pay any sum of money, in behalf of, or for the benefit of, the utility company, or to be come liable for, or assure the performance of, any obligation, or the discharge of any liability of the utility to any third person.", "\nId. at 275-76, 161 P.2d at 881. ", "The Supreme Court of New Mexico held that \"[t]he most that [the City of Clovis] did was to give time to the [Company] for the payment of an obligation owed by the ... Company to the City of Clovis for part of the purchase price for the light and water system.\" ", "Id. at 276, 161 P.2d at 881. ", "The Supreme Court of New Mexico found that this was \"an entirely different matter\" from Clovis lending or pledging its credit, because giving time for the payment of the purchase price did not create any liability whereby Clovis \"was liable to be called upon to discharge any direct, indirect or contingent, liability whatsoever.\" ", "Id. at 276, 161 P.2d at 881. ", "Thus, \"[c]onstitutional provisions prohibiting a municipality from making donations or lending its credit to, or subscribing to the stock of, private corporations do not operate to forbid a municipality to construct, own, sell, or lease a public utility.\" ", "Id. at 283, 161 P.2d at 886 (internal quotation marks omitted).", "\nThe Supreme Court noted that the purpose of the Anti-Donation Clause is \"a constitutional limitation\" and to correct \"evils.\" ", "Id. at 276, 161 P.2d at 881. ", "The Supreme Court stated:\nThe significance of the inhibition is found in the evil which it was intended to remedy. ", "The demand for improved transportation facilities had developed a mania for extending public aid to private corporations. ", "In order to aid in the construction of railroads, municipalities were subscribing for stock, issuing negotiable bonds as a means of paying the subscriptions, and taxing the inhabitants or the property within their limits to pay the indebtedness thereby incurred. ", "While in specific cases it might be successfully contended that the public good will be served if the city can aid in the extension or improvement of transportation facilities, the poisonous by-products of such partnership arrangements have in the past far outweighed the temporary benefits.", "\nId. at 276, 161 P.2d at 881-82 (internal quotation marks omitted). ", "The Supreme Court of New Mexico distinguished the agreement of the company to pay Clovis $130,000.00 in annual installments, because the agreement did not \"place any burden or charge against any of the revenues of the City, current or otherwise, and did not bring about any liability of the citizens of the City for the levy of any taxes, or bring about any burden of any kind whatsoever upon the City of Clovis or its citizens, and, therefore, does not come within the purpose of the constitutional inhibition.\" ", "Id. at 276-77, 161 P.2d at 881. ", "See Chronis v. State ex rel. ", "Rodriguez, 100 N.M. 342, 347-48, 670 P.2d 953, 958-59 (1983)(holding that legislative diminishment of tax obligation constituted an unconstitutional subsidy to the liquor industry in violation of the Anti-Donation Clause).", "\nLikewise, the Attorney General of New Mexico has concluded that, so long as the governmental entity receives valuable consideration in return for its money, there is not a violation of the Anti-Donation Clause. ", "The Attorney General has identified two components prohibited by the Anti-Donation Clause: (i) \"the state may not make any donation to or in aid of any private corporation;\" and (ii) the state is prohibited against \"lending or pledging of the state's or municipality's credit.\" ", "N.M. Attorney General Opinion No. ", "85-27 at 3, 1985 WL 204889 (October 22, 1985). ", "In its Opinion No. ", "02-02, the Attorney General of New Mexico concluded that there was no violation of the Anti-Donation Clause where Rio Rancho, a municipality, \"clearly receiv[ed] valuable consideration in return for its money,\" because the agreement it had with the private entity stated that the entity agreed to \"dedicate and convey the public infrastructure and the land associated therewith to the City upon completion of the public infrastructure improvements.\" ", "N.M. Attorney General Opinion No. ", "02-02 at 4, 2002 WL 1477799 (June 13, 2002). ", "Under those circumstances, Rio Rancho could reimburse a developer without violating the Anti-Donation Clause. ", "See id.\nIn 1992, the Attorney General concluded that the New Mexico Legislature could provide news media space in the State Capitol Building without charge, and provide free space in public buildings for newspaper vending machines and similar devices, without violating the Anti-Donation Clause. ", "See N.M. Attorney General Opinion No. ", "92-03 at 1, 1992 WL 528475 (May 5, 1992). ", "The Attorney General reasoned that, because the New Mexico Constitution requires legislative sessions to be open to the public, the Legislature provided direct public access and indirect access via the news media. ", "See id. at 2. ", "The Attorney General noted that the \"conclusion is different, however, as to the yearround occupancy of office space in the building by newspapers, television stations or other media entities.\" ", "Id. \"By providing a news entity with permanent Capitol space at no charge, the state would violate the antidonation clause because it would bestow a valuable benefit on a private entity without receiving the countervailing benefit of obtaining public access to legislative sessions.\" ", "Id. The Attorney General found that the Legislature should receive rent or other consideration in return for providing permanent space to the media without charge. ", "See id.; N.M. Attorney General Opinion No. ", "90-13 at 1, 1990 WL 509583 (May 8, 1990)(finding that the Department of Public Safety could not provide use of its dormitory and meals to a Boy Scouts of America troop at a substantially reduced cost because the proposed reduction would be a violation of the Anti-Donation Clause that is applicable to both for-profit and non-profit corporations).", "\n\nNEW MEXICO LAW REGARDING NEGLIGENT MISREPRESENTATION\nThe Supreme Court of New Mexico stated in Ledbetter v. Webb, 103 N.M. 597, 711 P.2d 874 (1985), that \"[n]egligent misrepresentation is not, of course, a lesser included cause of action within a claim for deceit or fraud.\" ", "103 N.M. at 602, 711 P.2d at 879 (internal quotation marks omitted). ", "The Supreme Court noted in Ledbetter v. Webb that, \"negligent misrepresentation differs from [the] tort of deceit in [the] that basis for liability in [the] latter is intent to mislead,\" and that in Sims v. Craig, 96 N.M. 33, 627 P.2d 875 (1981), the Supreme Court explained that \"[a]n action for misrepresentation differs from the tort of deceit wherein plaintiff must prove intent on the part of the defendant to mislead or defraud.\" ", "Sims v. Craig, 96 N.M. at 35, 627 P.2d at 877. \"", "The theory of liability for this tort[, negligent misrepresentation,] is one of negligence rather than of intent to mislead.\" ", "Sims v. Craig, 96 N.M. at 35, 627 P.2d at 877. ", "The tort of negligent misrepresentation is available to a plaintiff that \"`cannot or does not wish to rescind, and cannot meet the proof required for the tort of fraud or deceit (as a) ... remedy for damages caused by misrepresentation short of fraud.'\" ", "Sims v. Craig, 96 N.M. at 35, 627 P.2d at 877 (quoting Maxey v. Quintana, 84 N.M. 38, 41, 499 P.2d 356, 359 (Ct.", "App. ", "1972)). ", "See Sims v. Craig, 96 N.M. at 35, 627 P.2d at 877 (holding that the plaintiff could bring an action for negligent misrepresentation although the plaintiff could not sue on the contract because the contract was void).", "\n\nANALYSIS\nThe Court does not believe that transfer of venue to the United States District Court for the District of Colorado is appropriate under 28 U.S.C. § 1404(a). ", "The Court will also not abstain from deciding this case. ", "The Court will permit ARPA to withdraw its motion, to dismiss Count I of the City of Raton's Complaint. ", "Count III of the City of Raton's Complaint, for negligent misrepresentation, fails to state a claim, because New Mexico courts would likely extend immunity to ARPA under the principle of comity. ", "Count V of the City of Raton's Complaint, for violation of the Anti-Donation Clause of the New Mexico Constitution, fails to state a claim, because the City of Raton is not gifting electricity to third parties to whom ARPA sells energy.", "\n\nI. TRANSFER OF VENUE UNDER 28 U.S.C. § 1404(a) IS NOT APPROPRIATE.", "\n\nARPA argues that the Court should transfer venue to the United States District Court for the District of Colorado under 28 U.S.C. § 1404(a). ", "An application of the factors that the Tenth Circuit identified in Chrysler Credit. ", "Corp. v. Country Chrysler, Inc. and in Texas Gulf Sulphur v. Ritter demonstrates that this action should remain in New Mexico. ", "Judge Kane noted in his Order granting ARPA's motion to dismiss:\nThe New Mexico action is, therefore, a better and more effective forum for fully resolving the controversy between the parties.... In addition, I find that the public intent of the citizens and governmental agencies of New Mexico in this dispute, on balance outweighs that of the citizens and governmental agencies of Colorado.", "\nKane Order at 3.", "\nWhile the Court is not prepared to go so far as to say that New Mexico will be a better or more effective forum than Colorado for resolving the controversy, the Court need not make that finding. ", "The Court believes that New Mexico is as good a forum. ", "Moreover, the Court believes that the, factors, on balance, favor the Court keeping the case.", "\nThe Court believes'that the focus of the lawsuit appears to be on the acts done in New Mexico and on the impact of those acts on New Mexico residents. ", "The parties do not have a good sense, at this time, who will be witnesses in this case. ", "Accordingly, the Court does not know what witnesses will appear, or where those witnesses will be residents. ", "The Court will, therefore, deny the motion to transfer without prejudice to ARPA renewing if, later on in the litigation, it appears that most of the witnesses will be coming from Colorado, are beyond the Court's subpoena power, or some other future occurrence not obvious today makes transfer of the case advisable.", "\n\nII. ", "THE COURT WILL NOT ABSTAIN FROM DECIDING THIS CASE.", "\n\nThe Supreme Court of the United States has set forth factors for the Court to consider when determining whether to abstain from deciding a case. ", "These factors are:\n(i) whether either court has assumed jurisdiction over property; (ii) whether the federal forum is inconvenient; (iii) the avoidance of piecemeal litigation; (iv) the order in which the courts obtained jurisdiction and the progress of the two cases; (v) which forum's substantive law governs the merits of the litigation; and (vi) the adequacy of the state forum to protect the rights of the parties.", "\nSee Colo. River Conservation Dist. ", "v. United States, 424 U.S. at 819, 96 S.Ct. ", "1236. ", "The Court must be mindful, however, that \"[a]bstention from the exercise of federal jurisdiction is the exception, not the rule.\" ", "Colo. River Conservation Dist. ", "v. United States, 424 U.S. at 813, 96 S.Ct. ", "1236.", "\n\nA. WHETHER EITHER COURT HAS ASSUMED JURISDICTION OVER THE PROPERTY.", "\nThe parties agree that this factor is not relevant here, because the action does not involve jurisdiction over property. ", "See Motion at 12; Response at 7.", "\n\nB. WHETHER THE FEDERAL FORUM IS INCONVENIENT.", "\nARPA contends that New Mexico is an inconvenient forum, because \"the vast majority of witnesses are located in Colorado.\" ", "Motion at 12. ", "ARPA argues that it is a Colorado municipal entity, and the Organic Contract and Power Sales Agreement were intended to be governed by Colorado law. ", "See id. Indeed, the City of Raton \"does not dispute that this matter has some contact with Colorado.\" ", "Response at 7. ", "On the other hand, the City of Raton contends that there are more significant contacts with New Mexico. ", "See id. at 7-8. ", "It argues that \"[t]he majority of the relevant events and communications underlying the dispute occurred in New Mexico.\" ", "Id. at 8. ", "The City of Raton contends that \"many, if not a majority, of witnesses reside in New Mexico.\" ", "Id.\nThe parties do not appear to have a good sense, at this time, of what witnesses will be called in the case, so it is difficult for the Court to assess the inconvenience of the parties in securing witnesses. ", "At this time, it is unclear whether the parties will have problems bringing witnesses to trial. ", "Although it will take hours to drive from Denver to Albuquerque, the Court does not believe that the convenience of the parties is the overriding factor in this case—especially when it is not clear that there will be any problems with securing witnesses for the trial.", "\n\nC. THE AVOIDANCE OF PIECE-MEAL LITIGATION.", "\nARPA argues that resolution of the parties' issues in the Colorado lawsuit \"would obviate the need to consider the claims asserted in this action.\" ", "Motion at 13. ", "ARPA asserts that, \"to the extent the City of Raton has additional claims in this action, any such claims may be asserted in the pending Colorado action as counterclaims or affirmative defenses, thereby eliminating the concern over duplicative or piecemeal litigation.\" ", "Id.\nJudge Kane has dismissed the Colorado action because he found that the action in Colorado would not settle the controversy between the parties and that the New Mexico action provides a better opportunity for a complete and efficient resolution of the parties' dispute. ", "In addition, [he found] that the public interest of the citizens and the governmental agencies of New Mexico in [that] dispute, on balance, outweighed that of the citizens and governmental agencies of Colorado.", "\nKane Order at 3. ", "Because Judge Kane dismissed the Colorado action, this factor appears to be inapplicable, or favors the Court exercising its jurisdiction over this lawsuit, because the only pending action at this time is in the District of New Mexico.", "\n\nD. THE ORDER IN WHICH THE COURTS OBTAINED JURISDICTION AND THE PROGRESS OF THE TWO CASES.", "\nThis Court obtained jurisdiction over this case before the lawsuit was filed in the District of Colorado. ", "See Motion at 13 (\"It is undisputed that the instant case was filed two days before the Colorado Lawsuit.\"); ", "Response at 8 (stating that \"the City filed this action before ARPA filed its declaratory-judgment action.\"). ", "ARPA contends that this factor favors abstention, because \"[b]oth the Colorado Lawsuit and the instant lawsuit are in their early phases and neither has progressed significantly more than the other.\" ", "Motion at 13-14. ", "ARPA argues that \"`simply because a court is the first to obtain jurisdiction does not necessarily mean that it should decide the merits of the case.'\" ", "Motion at 13 (quoting Hospah Coal Co. v. Chaco Energy Co., 673 F.2d 1161, 1164 (10th Cir.1982)). ", "ARPA contends that it served its Complaint for the Colorado action before the City of Raton served its complaint in the District of New Mexico. ", "See Motion at 13. ", "Nevertheless, this factor favors the Court exercising jurisdiction over this case, because the City of Raton selected the District of New Mexico before ARPA filed its lawsuit in Colorado.", "\n\nE. WHICH FORUM'S SUBSTANTIVE LAW GOVERNS THE MERITS OF THE LITIGATION.", "\nARPA contends that Colorado substantive law will govern this dispute. ", "See Motion at 14. ", "It contends that the Organic Contract and the Power Sales Agreement were \"intended to be governed by Colorado law.\" ", "Id. City of Raton notes, however, that \"the Organic Contract does not contain a choice-of-law provision selecting Colorado law, making it unclear that Colorado in fact applies.\" ", "Response at 11. ", "The City of Raton also notes that it has asserted claims under New Mexico law. ", "See id. The City of Raton argues \"[b]ecause issues of New Mexico law predominate, the fact that matters governed by Colorado law may also be at issue does not warrant abstention.\" ", "Id. at 11-12.", "\nARPA conceded at the hearing, that it had not briefed or thoroughly researched the choice-of-law issue. ", "See Tr. ", "at 37:6-9 (Johnson). ", "It is not clear if this dispute will all be governed by Colorado law. ", "Because it is not clear that Colorado law will govern this action, this factor is neutral or favors the Court's exercise of jurisdiction over this matter.", "\n\nF. THE ADEQUACY OF THE STATE FORUM TO PROTECT THE RIGHTS OF THE PARTIES.", "\nThe Court is not convinced that New Mexico is necessarily a better and more effective forum for resolving the controversy between the parties. ", "It is also unclear that Colorado is a better or more effective forum than New Mexico. ", "The Court notes that Judge Kane found that \"the public interest of the citizens and governmental agencies of New Mexico ... on balance, outweighs that of the citizens and governmental agencies of Colorado.\" ", "Kane Order at 3. ", "Although the Court is not prepared to adopt the breadth of Judge Kane's findings, it also believes that this factor does not favor abstention. ", "The public interest is difficult to evaluate. ", "Although New Mexico's public interest may outweigh Colorado's public interest on some claims, it may be that, as this case evolves, this factor will change. ", "The Court agrees that New Mexico's public interest outweighs Colorado's public interest on the Anti-Donation Clause claim and the Declaratory Judgment Claim under the New Mexico Joint Powers Agreement Act. ", "It is unclear that Colorado's public interest is less than New Mexico's public interest on other claims.", "\nOn balance, the Court believes that the factors favor the Court exercising jurisdiction over this case, at least for the present time. ", "The City of Raton chose this forum, and the district court in the District of Colorado dismissed the Colorado action. ", "Judge Kane's dismissal is a significant factor, and the Court will give weight to it. ", "The Court also believes that there is a significant impact on New Mexico because the City of Raton is located in New Mexico. ", "Finally, the focus of the lawsuit appears to be what was done in New Mexico, the impact on New Mexico residents, and the representations made to a New Mexico municipality.", "\nThus, the Court will not abstain from deciding this case. ", "At this time, the factors do not override the City of Raton's choice of forum and the significant public interest that New Mexico retains in the case because one of the parties is from the State of New Mexico. ", "Moreover, there is no longer a pending case in Colorado to which the Court should defer.", "\n\nIII. ", "THE COURT WILL ALLOW ARPA TO WITHDRAW ITS MOTION TO DISMISS COUNT I OF THE CITY OF RATON'S COMPLAINT.", "\n\nARPA withdrew its motion to dismiss Count I of the City of Raton's Complaint, because of the likelihood that the arguments involve disputed issues of fact. ", "See Tr. ", "at 83:23-84:4 (Johnson). ", "The City of Raton did not object to ARPA's withdrawal of its 12(b)(6) motion on Count I of the Complaint. ", "See id. at 84:5-7 (Court & Winter). ", "The Court will thus permit ARPA to withdraw its motion on Count I of the Complaint.", "\n\nIV. ", "THE CITY OF RATON'S CLAIM FOR NEGLIGENT MISREPRESENTATION (COUNT III) FAILS TO STATE A CLAIM FOR WHICH THE COURT MAY GRANT RELIEF.", "\n\nARPA has argued that the Court should dismiss the City of Raton's negligent misrepresentation claim because it is not plead with particularity as rule 9(b) requires and because Colorado's Government Immunity Act bars the claim. ", "The City of Raton's claim for negligent misrepresentation is a tort claim. ", "Because it is not a claim for fraud, rule 9(b) does not impose heightened pleading requirements.", "\nAlthough ARPA had actual notice of the City of Raton's claim against it and that notice is likely to be sufficient under N.M.S.A.1978, § 41-4-16(A) and (B), the Court believes that New Mexico courts would extend governmental immunity to ARPA under the principle of comity. ", "Under Colorado governmental immunity law, the City of Raton failed to give adequate, formal notice. ", "Because the City of Raton's notice to ARPA was insufficient under Colorado governmental immunity law, and because the City of Raton's negligent misrepresentation claim is not for breach of contract, the City of Raton fails to state a claim in Count III of its Complaint.", "\n\nA. COUNT III OF THE CITY OF RATON'S COMPLAINT IS NOT A BREACH-OF-CONTRACT CLAIM AND IS NOT A CLAIM OF FRAUD.", "\nCount III of the City of Raton's Complaint is a claim for negligent misrepresentation. ", "See Complaint ¶¶ 77-84, at 12-13. ", "The City of Raton alleges that ARPA \"made misrepresentations concerning the costs of the Project, the progress of the Project, its economic feasibility, and its superiority to other alternatives available to the City and Member Municipalities for acquiring power.\" ", "Id. ¶ 78, at 12. ", "The City of Raton further alleges that it \"has suffered damages as a proximate result of its reliance on ARPA's misrepresentations and/or failures to disclose.\" ", "Id. ¶ 84, at 13. ", "At the May 2, 2008 hearing, the City of Raton stated that its \"original draft had a fraud count in it and [it] took it out.\" ", "Tr. ", "at 93:15-16 (Winter). ", "The City of Raton requested that it did not take out the fraud count because of the tort notice issue; rather, it took out the fraud claim because the claim \"is simply seeking a recission of the contract.\" ", "Id. at 93:17-25 (Court & Winter).", "\nUnder New Mexico law, a claim for negligent misrepresentation does not sound in fraud. ", "See Ledbetter v. Webb, 103 N.M. at 602 711 P.2d at 879 (internal quotation marks omitted)(stating that \"[n]egligent misrepresentation is not, of course, a lesser included cause of action within a claim for deceit or fraud.\"). ", "A claim for negligent misrepresentation is a tort, and not a contractual claim. ", "See Sims v. Craig, 96 N.M. at 35, 627 P.2d at 877 (\"The theory of liability for this tort[, negligent misrepresentation,] is one of negligence rather than of intent to mislead.\"). ", "Negligent misrepresentation is available to a plaintiff who is \"so circumstanced that he cannot or does not wish to rescind, and cannot meet the proof required for the tort of fraud or deceit (as a) ... remedy for damages caused by a misrepresentation short of fraud.\" ", "Id. (internal quotation marks omitted). ", "Moreover, because the City of Raton's claim is not a \"lesser included cause of action within a claim for fraud or deceit,\" it does not have to be pled with specificity under rule 9(b). ", "See Fed. ", "R.Civ.", "P. 9(b)(\"In alleging fraud or mistake, a party must state with particularity the circumstances constituting fraud or mistake. ", "Malice, intent, knowledge, and other conditions of a person's mind may be alleged generally.\"). ", "The City of Raton's negligent misrepresentation claim thus appears to be, from the face of its Complaint, a tort claim.", "\n\nB. NEW MEXICO WOULD LIKELY EXTEND GOVERNMENTAL IMMUNITY TO ARPA.", "\nA foreign jurisdiction is not compelled to follow the governmental immunity laws that protect a municipal corporation in its own state. ", "In Franchise Tax Board of California v. Hyatt, the Supreme Court held that a forum is not required to give full faith and credit to a sister state's sovereign immunity statutes when that sister state is sued in the forum's courts, although it may do so as a matter of comity. ", "The Supreme Court of New Mexico has articulated a number of factors for a court to consider in deciding whether to apply immunity provisions of a foreign state, including: \"(1) whether the forum state would enjoy similar immunity under similar circumstances ... (2) whether the state sued has or is likely to extend immunity to other states ... (3) whether the forum state has a strong interest in litigating the case ... and (4) whether extending immunity would prevent forum shopping.\" ", "Sam v. Sam, 2006-NMSC-022, ¶ 22, 134 P.3d at 767.", "\n\n1. ", "Whether New Mexico Would Enjoy Similar Immunity as Colorado Under Similar Circumstances.", "\n\nThe City of Raton contends that New Mexico's Tort Claims Act notice requirement is different than the notice requirement in Colorado. ", "The City of Raton also argues that, because ARPA had actual notice of the City of Raton's intention to file this lawsuit, it would not enjoy immunity if N.M.S.A.1978, § 41-4-16(B) were applied.", "\nThe notice requirement of the Colorado GIA provides:\nAny person claiming to have suffered an injury by a public entity or by an employee thereof while in the course of such employment, whether or not by a willful and wanton act or omission, shall file a written notice as provided in this section within one hundred eighty days after the date of the discovery of the injury, regardless of whether the person then knew all of the elements of a claim or of a cause of action for such injury. ", "Compliance with the provisions of this section shall be a jurisdictional prerequisite to any action brought under the provisions of this article, and failure of compliance shall forever bar any such action.", "\n\nColo.Rev.Stat. § ", "24-10-109(1)(emphasis added). ", "ARPA contends that the City of Raton never provided it with the notice required under the Colorado GIA. ", "See Motion at 21; Brunelli Aff. ¶¶ ", "23, 24 at 7-8. ", "Moreover, the City of Raton does not plead, in its Count III, that it provided ARPA with actual notice of its intent to sue ARPA.", "\nThe City of Raton argues that ARPA knew that the City of Raton \"was likely to initiate litigation as early as December 12, 2007.\" ", "Response at 20 (citing Motion at 6). ", "The City of Raton asserts that \"[t]he purposes behind the [GIA] have therefore been satisfied.\" ", "Response at 20. ", "ARPA states in its motion that, \"[o]n or about December 12, 2007, [it] learned that the City of Raton City Commission and the City of Raton Public Service Board met in executive session to discuss the possibility of litigation against the Authority over the increased cost of the Repowering Project.\" ", "Motion at 7.", "\nIn Colorado, negligent misrepresentation sounds in tort. ", "Thus under Colorado law, the GIA applies to its claim in Count III of its Complaint. ", "See Patzer v. City of Loveland, 80 P.3d 908, 912 (Colo.App. ", "2003)(\"[I]f we assume plaintiffs stated a claim for negligent misrepresentation ... such a claim would sound in tort and is thus barred by the GIA because it does not fall within one of the statutory provisions waiving a public entity's immunity from suit.\") (", "citations omitted)(emphasis added); Ebke v. Julesburg Sch. ", "Dist. ", "No. ", "RE-1, in Sedgwick County, 550 P.2d at 356 (stating that the GIA does not apply to contractual claims and thus plaintiffs are not required to provide notice under the GIA for breach-of-contract claims).", "\nThe Supreme Court of New Mexico in Ledbetter v. Webb labeled the cause of action of negligent misrepresentation a tort, and to the extent the cause of action arose in New Mexico, New Mexico's characterization of its tort should control. ", "See Valencia v. Colorado Casualty Insurance Co., 560 F.Supp.2d 1080, 1085 (D.N.M. 2007)(\"In determining which jurisdiction's law should apply to a tort action, New Mexico courts follow the doctrine of lex loci delicti commissi—that is, the substantive rights of the parties are governed by the law of the place where the wrong occurred.", "\")(quoting Terrazas v. Garland & Loman, Inc., 2006-NMCA-111, ¶ 12, 140 N.M. 293, 142 P.3d 374, 377). ", "Moreover, other jurisdictions have labeled the cause of action as one in tort and not in contract.", "\nThere are also good reasons to find that the Colorado courts would draw a distinction between contract claims and negligent misrepresentation claims under the GIA. ", "While GIA's express language does not specifically except contract claims from the GIA's notice requirements, it is understandable why Colorado courts would allow contract claims against the state. ", "Few people might be willing to contract with the state if they knew there was no remedy for breach of contract, and the state arguably waives sovereign immunity when it affirmatively contracts with another party. ", "On the other hand, Colorado might be reluctant to treat negligent misrepresentation claims the same way. ", "Oral contracts against a state entity are rarely enforced. ", "New Mexico, for example, has an elaborate system in place to ensure that public contracts are written, after requiring multiple signatures and elaborate checks. ", "Allowing oral contracts and negligent misrepresentation claims against the state might be too great of a risk to the public fisc.", "\nUnder the Colorado GIA, the City of Raton was required to file a written notice within one hundred eighty days after the date of the discovery of the injury, regardless of whether the person then knew all of the elements of a claim or of a cause of action for such injury. ", "Colo.Rev. Stat. § ", "24-10-109(1). ", "In full, § 24-10-109(1) states:\nAny person claiming to have suffered an injury by a public entity ... shall file a written notice as provided in this section within one hundred eighty days after the date of the discovery of the injury, regardless of whether the person then knew all of the elements of a claim or of a cause of action for such injury.", "\nMoreover, courts in Colorado have interpreted the statute strictly, so that a government entity's actual notice of a claim does not vitiate the notification requirement. ", "See Stone Environmental Engineering Services, Inc. v. Colorado Dept. ", "of Health, 762 P.2d 737, 740 (Co.App.1988)(\"Actual knowledge by the governmental entity of the incidents giving rise to a claim, or knowledge of the claim itself, does not constitute substantial compliance with the notice of claim requirement and does not relieve a plaintiff of his duty to provide formal notice.\"). ", "The City of Raton did not provide the written notice of its claim to ARPA as the GIA requires.", "\nUnder the New Mexico notice provision, a tort victim must provide notice of its intent to sue the public tortfeasor within ninety days of its injury, see N.M.S.A.1978, § 41-4-16(A), unless the public tortfeasor had \"actual notice of the occurrence,\" N.M.S.A.1978, § 41-4-16(B)(emphasis added).[2]\n\"[D]efendants have the burden of proving that the notice requirement was not met.\" ", "Dutton v. McKinley County Bd. ", "of Com'rs, 113 N.M. at 53, 822 P.2d at 1136. ", "Awareness that an accident involved a state employee is insufficient to put a governmental entity on notice under the Tort Claims Act. ", "See Powell v. N.M. State Highway and Transp. ", "Dep't, 117 N.M. at 419, 872 P.2d at 392 (stating \"where virtually every employee was aware of occurrence, but not of likelihood of litigation, such knowledge held insufficient to comply with notice requirement of Section 41-4-16\" and \"where both mayor and chief of police were aware of occurrence, but not that litigation might result, or that the plaintiff considered accident to be fault of the defendants, actual notice held not provided.\"). \"[", "A]ctual notice under Section 41-4-16(B) [does not] require that the notice of a claim indicate that a lawsuit will in fact be filed against the state, but rather that the state must be given notice of a likelihood that litigation may ensue, in order to reasonably alert the state to the necessity of investigating the merits of the potential claim.\" ", "Callaway v. N.M. Dep't of Corr., ", "117 N.M. at 640, 875 P.2d at 396.", "\nARPA's concession regarding its knowledge of the City of Raton's potential suit demonstrates that it may have had actual notice under New Mexico law. ", "See Motion at 7 (stating that, \"[o]n or about December 12, 2007, [it] learned that the Raton City Commission and the Raton Public Service Board met in executive session to discuss the possibility of litigation against the Authority over the increased cost of the Repowering Project.\"). ", "ARPA knew that there was a possibility the City of Raton was going to litigate against it regarding the increased cost of the Repowering Project. ", "See Motion at 7. ", "Thus, ARPA had sufficient information to alert it to the necessity of investigating the merits of the City of Raton's potential claim. ", "Under New Mexico law, because ARPA had actual notice, the City of Raton might have been excused from providing written notice to ARPA of its claim.", "\n\"Compliance with [GIA's notice requirements] shall be a jurisdictional prerequisite to any action brought under the provisions of this article, and failure of compliance shall forever bar any such action.\" ", "Colo.Rev.Stat. § ", "24-10-109(1). ", "ARPA might have had sufficient notice under New Mexico law. ", "ARPA's concession that it had knowledge of the City of Raton's potential suit suggests such a finding, because New Mexico's notice requirement can be met when the state or state entity has actual notice of a potential suit. ", "See New Mexico State Highway Commission v. Ferguson, 98 N.M. 680, 682, 652 P.2d 230, 232 (1982) (\"The purpose of the notice provisions of the Tort Claims Act is to ensure that the agency allegedly at fault is notified that it may be subject to a lawsuit.... We will construe a statute to give it its intended effect.\") (", "citations omitted). ", "At the same time, the notice to ARPA under Colorado law would be insufficient. ", "ARPA enjoys immunity under Colorado law, while under New Mexico law, the City of Raton's notice to ARPA would likely have been sufficient. ", "Nevertheless, both New Mexico and Colorado enjoy similar immunity under similar circumstances, although not under exactly the same circumstances. ", "While the immunity statutes in both states are not identical, they are similar, aiming at protecting the state's treasury from similar claims without full notice to investigate before suit. ", "Moreover, while the exact circumstances here might result in different immunities in the two states, similar circumstances should produce similar results in most cases.", "\n\n2. ", "Whether the State Sued Has or is Likely to Extend Immunity to Other States.", "\n\nARPA acknowledges that \"it is unclear whether Colorado would apply New Mexico's immunity statute.\" ", "Motion at 22; Response at 21. ", "The Court believes, however, that New Mexico would likely extend immunity and apply Colorado's GIA statute. ", "New Mexico \"has an interest in according immunity by comity in this instance in order to encourage [Colorado] to extend immunity to a New Mexico governmental entity in the future.\" ", "Sam v. Sam, 2006-NMSC-022, ¶ 24, 134 P.3d at 767.", "\nThere is no indication that New Mexico would not extend comity in this situation. ", "Indeed, the case law indicates that New Mexico would extend immunity under comity in this case. ", "The Supreme Court of New Mexico has stated that it would refuse to extend immunity only if doing so would \"offend a sufficiently strong public policy.\" ", "Sam v. Sam, 2006-NMSC-022, ¶ 21, 134 P.3d at 767. ", "Indeed, in Sam v. Sam, which deals with the question of recognizing a neighboring state's sovereign immunity, the Supreme Court relied on a case dealing with whether New Mexico would recognize, under the principle of comity, an uncle-niece marriage[3] entered into in Costa Rica. ", "See id. 2006-NMS022, ¶¶ 19-21, 134 P.3d at 766-67 (relying on Leszinske v. Poole, 110 N.M. 663, 668, 798 P.2d 1049, 1054 (N.M.App.1990)). ", "Although the marriage \"undoubtedly offended the public policy of New Mexico to some degree,\" it did not do so sufficiently to prevent the court from recognizing the Costa Rican marriage under comity. ", "Sam v. Sam, 2006-NMSC-022, ¶¶ 19-21, 134 P.3d at 766-67. ", "Although Leszinske v. Poole did not deal with sovereign immunity, the Supreme Court in Sam v. Sam believed that Leszinske v. Poole appropriately illustrated the high value New Mexico places on comity.[4] If New Mexico is willing to go to such lengths, in the name of comity, that it will even recognize legal rights that \"offend the public policy of New Mexico to some degree,\" it is not likely to refuse to grant immunity in this case, where New Mexico and Colorado have similar sovereign immunity statutes that further the same policy goals.", "\nThe Court recognizes that in Sam v. Sam, the Supreme Court of New Mexico recognized Arizona's sovereign immunity, but not on terms completely consistent with Arizona's law. ", "See Sam v. Sam, 2006-NMSC-022, ¶ 27, 134 P.3d at 768. ", "Arizona had a one-year statute of limitations for tort claims, while New Mexico allowed two years, and the Supreme Court of New Mexico decided to apply its own two-year statute of limitations on policy grounds. ", "See id., 2006-NMSC-022, ¶ 26, 134 P.3d at 768 (\"New Mexico has a particular interest in providing compensation or access to the courts to residents of the state.\"). ", "Because of New Mexico's particular interest in extending two years to potential claimants against the state, the Court determined that it would honor Arizona's sovereign immunity, subject to a two-year, rather than one-year statute of limitations.", "\nEven in light of the facts of Sam v. Sam, the Court believes that, in this case, New Mexico would apply Colorado's notice provision. ", "The notice provisions in both states' statutes are congruent, such that applying Colorado's would not offend New Mexico public policy. ", "In Sam v. Sam, the particular policy value at issue was the ability of claimants to get into court and receive compensation. ", "The Supreme Court of New Mexico viewed the ability of claimants to get into court and receive compensation as a particular interest—an interest that the one year statute of limitations in Arizona substantially offended. ", "In this case, both Colorado and New Mexico have expressed the same interest motivating their notice provisions: apprising the state or state entity of the potential claims against it so that it can begin an investigation of its potential liability. ", "While Colorado arguably has a more strict means of pursuing this, because it does not have a proviso for actual notice, New Mexico interprets the actual notice provision narrowly. ", "New Mexico also provides a much shorter time frame than Colorado, so New Mexico is more liberal in some respects and more stringent in other respects. ", "In sum, although the provisions ultimately may be somewhat different, they both substantially further the same goal. ", "The Court therefore finds that New Mexico would likely recognize the Colorado Immunity statute and apply it in this case.", "\n\n3. ", "Whether the Forum State has a Strong Interest in Litigating the Case.", "\n\nJudge Kane found that \"the public, interest of the citizens and governmental agencies of New Mexico in this dispute, on balance, outweighs that of the citizens and governmental agencies of Colorado.\" ", "Kane Order at 3. ", "As the Court has noted, the public interest of Colorado and New Mexico in this case is difficult to evaluate at this early stage of the case. ", "Although New Mexico's public interest may outweigh Colorado's public interest on some claims, as this case evolves, it may be that this factor will change.", "\nFor the present time, it is sufficient to find that New Mexico's interest clearly outweighs Colorado's on some claims, and that Colorado's will probably remain the same throughout these claims' lives. ", "The Court agrees that New Mexico's public interest outweighs Colorado's public interest on the Anti-Donation Clause claim and the Declaratory Judgment Claim under the New Mexico Joint Powers Agreement Act. ", "While it is unclear that Colorado's public interest is less than New Mexico's public interest on other claims, these two New Mexico claims constitute one half of the current claims.", "\n\n4. ", "Whether Extending Immunity Would Prevent Forum Shopping.", "\n\nThe Supreme Court of New Mexico has held that, as a general rule, applying New Mexico's statute of limitations when it is longer than a foreign state's statute of limitations would prevent forum shopping to some degree, although it would not completely eliminate forum shopping. ", "In Sam v. Sam, the Supreme Court stated:\nWhile we have decided not to recognize Arizona's one-year statute of limitations because it is not in accordance with New Mexico's public policy, we are extending New Mexico's two-year statute of limitations instead of the general three-year statute of limitations. ", "Although this solution may not completely eliminate forum shopping, we believe it will prevent forum shopping to some degree.", "\n2006-NMSC-022, ¶ 28, 134 P.3d at 768. ", "Extending Colorado's GIA to this claim would probably prevent forum shopping, because litigants would be aware that the more stringent notice requirements contained in Colorado's GIA may bar their claims if they do not formally put governmental entities on notice. ", "On the other hand, applying New Mexico's N.M.S.A. 1978, § 41-4-16(B) would likely result in more litigants selecting New Mexico as a forum over Colorado and would probably encourage forum shopping.", "\nIn considering all of the factors, the Court believes that New Mexico courts would, in this situation, extend governmental immunity to ARPA under the principle of comity. ", "Although the City of Raton might be excused for not formally putting ARPA on notice of its claims under the New Mexico Tort Claims Act because ARPA had actual notice of the pending litigation, it would not be excused under Colorado's GIA because GIA has no actual-notice escape. ", "New Mexico state interests seem to outweigh, or are at least as strong as, Colorado's, up to this point. ", "Although it is unclear that Colorado's public interest is less than New Mexico's public interest on some claims, New Mexico's interests seem to be more largely implicated overall. ", "Extending governmental immunity to ARPA would encourage Colorado to extend governmental immunity to New Mexico governmental entities in the future. ", "The Court finds that the factors favor application of Colorado's GIA to the City of Raton's claim for negligent misrepresentation as a matter of comity. ", "Thus, the City of Raton's Count III for negligent misrepresentation fails to state a claim, because it is barred under Colorado's GIA.", "\n\nV. THE CITY OF RATON'S ALLEGATIONS OF VIOLATIONS OF NEW MEXICO'S ANTI-DONATION CLAUSE (COUNT V) FAIL TO STATE A CLAIM.", "\n\nAt the May 2, 2008 hearing, ARPA contended that the City of Raton's Anti-Donation Clause claim should be dismissed, because:\n[A]t this point no power has been sold, no price has been set, and, in fact, the plant is not yet complete, so what Raton is really seeking here is an advisory opinion about what might happen in the future if the power plant is completed and the ... surplus power is sold at a given amount. ", "It's not entirely clear that that will ever happen. ", "It is projected that may happen, and that was what was put out in disclosure documents, but it's not a certainty, and until that occurs, we're deal with a question that I would submit is not ripe.", "\nTr. ", "at 104:9-18. (", "Johnson). ", "The City of Raton countered that it is not alleging that ARPA's conduct may violate the Anti-Donation Clause, but that the City of Raton's \"donation\" of overage power is an impermissible donation to either another municipality or some third party. ", "Id. at 108:2-7 (Winter & Court). ", "The City of Raton argued that, implicit in the rate-making structure, there will be below-cost sale of excess energy, which did not exist before the implementation or completion of the power-plant project, to third parties. ", "See id. at 112:12-15 (Winter).", "\n\"The Anti-Donation Clause ... prohibits the use of state or local governmental funds to benefit private organizations.\" ", "H. Stratton & P. Farley, Office of the Attorney General, State of New Mexico, History, Powers & Responsibilities, 1846-1990 at 125 (Univ. ", "of N.M. Printing Servs.1990). \"[", "T]he term `donation,' as found in this proviso of the Constitution, that the word has been applied, in its ordinary sense and meaning, as a `gift,' an allocation or appropriation of something of value, without consideration to a `person, association or public or private corporation.'\" ", "Village of Deming v. Hosdreg Co., 62 N.M. at 28, 303 P.2d at 926-27. ", "The Attorney General of New Mexico has identified two components prohibited by the Anti-Donation Clause: (i) \"the state may not make any donation to or in aid of any private corporation;\" and (ii) the state is prohibited against \"lending or pledging of the state's or municipality's credit.\" ", "N.M. Attorney General Opinion No. ", "85-27 at 3, 1985 WL 204889 (October 22, 1985).", "\nNew Mexico courts, and the New Mexico Attorney General's Office, have generally, in analyzing the state's Anti-Donation Clause, scrutinized contracts for consideration. ", "If the courts or the Attorney General's office finds consideration, the courts and the Attorney General's office generally end their review. ", "Courts and third-party lawyers are reluctant to wade into the thicket of determining whether the consideration is adequate or fair. ", "Generally, where the consideration is an obvious sham, the New Mexico courts and the New Mexico Attorney General's office have been reluctant to find that a contract violates the anti-donation clause.", "\nUnlike cases in which the Supreme Court of New Mexico has stricken transactions as violating the Anti-Donation Clause, this lawsuit does not involve an outright gift of money or property to a private entity with no exchange of adequate consideration. ", "See Chronis v. State ex rel. ", "Rodriguez, 100 N.M. at 348, 670 P.2d at 959 (holding that a tax credit to liquor licensees against taxes owed to the state was an unconstitutional subsidy of the liquor industry); State ex rel. ", "Mechem v. Hannah, 63 N.M. at 118, 314 P.2d at 720 (holding that an appropriation to pay state's share of emergency feed certificates issued to livestock owners for the purchase of hay was an unconstitutional subsidy of the livestock industry); Hutcheson v. Atherton, 44 N.M. at 144, 99 P.2d at 462 (finding a statute unconstitutional that authorized counties to issue bonds, repaid by taxes, to fund the building of public auditoriums to be used by a private corporation during a celebration of the 400th anniversary of Coronado's exploration). ", "The City of Raton is not gifting electricity overage to ARPA subscribers. ", "ARPA and the City of Raton, as a member of ARPA, have every incentive to charge as much as possible for the excess energy, and the fact that this energy, on the open, competitive market, may not cover costs does not mean the City of Raton is donating energy. ", "Recovering as much cost as possible, even if the sale is at a loss, is often a rational business decision, and it is likely that a New Mexico court and the New Mexico Attorney General's office would use the common meaning of gift or donation to describe such a commercial relationship.", "\nThe agreement between ARPA and the City of Raton is similar to the agreement in City of Clovis v. Southwestern Public Service Co. In that case, the Supreme Court of New Mexico found that the Anti-Donation Clause did not prohibit a public entity from selling a utility system to a company that sells electricity to third parties. ", "See 49 N.M. at 275, 161 P.2d at 881. ", "Thus, \"[c]onstitutional provisions prohibiting a municipality from making donations or lending its credit to, or subscribing to the stock of, private corporations do not operate to forbid a municipality to construct, own, sell, or lease a public utility.\" ", "Id. at 283, 161 P.2d at 886 (internal quotation marks omitted).", "\nThe Court also notes that it does not have any contract between ARPA and other third-party purchasers to scrutinize, so it cannot be sure that any donation has been made that it could declare unconstitutional under the Anti-Donation Clause. ", "What the consideration will be at the time of those contracts is speculation. ", "In that sense, the claim is premature.", "\nIn any case, the Court does not believe that the City of Raton is donating now, or planning to donate in the future, power to the third parties to which ARPA is selling energy. ", "The Court does not believe that the Anti-Donation Clause is intended to scrutinize such arms-length commercial transactions accompanied by considerable consideration, and to prohibit ARPA from recouping its costs or selling its product at a fair market price. ", "This case does not present a situation where the City of Raton is being taxed, or a levy placed on it, in such a way to demonstrate that ARPA is giving away energy to corporations or public foundations that it prefers. ", "The City of Raton does not appear to be making a \"donation to or in aid of any private corporation,\" and is not \"lending or pledging the state's or municipality's credit.\" ", "N.M. Attorney General Opinion No. ", "85-27 at 3, 1985 WL 204889 (October 22, 1985).", "\nFinally, there is no indication that the contract which does exist—between ARPA and the City of Raton—violates the Anti-Donation Clause. ", "The Court does not believe that the Anti-Donation Clause is implicated when there is true consideration—money exchanged for a real product. ", "The City of Raton conceded at the May 2, 2008 hearing that it received, in exchange for its consideration to ARPA, \"[m]utual covenants and conditions contained herein is the consideration indicated. ", "There was no monetary consideration.... [and] power at 5.5 cents.\" ", "Tr. ", "at 62:12-24 (Court & Winter). ", "The Court does not believe it should evaluate whether the agreement was a good or bad deal under the Anti-Donation Clause, but merely check for adequate consideration. ", "The Anti-Donation Clause does not exist to get New Mexico's public entities out of bad commercial agreements, but to preclude them from making gifts or donations disguised as business transactions. ", "There is no indication that the City of Raton has entered into such an arrangement with ARPA or that ARPA is about to enter into such an arrangement with another thirdparty purchaser. ", "Thus, the City of Raton fails to state a claim in Count V of its Complaint.", "\nIT IS ORDERED that the Motion to Stay, or in the Alternative, to Transfer Venue Pursuant to 28 U.S.C. § 1404(a), or Dismiss Pursuant to Fed.", "R.Civ.", "P. 12(b)(6) is granted in part and denied in part. ", "The motion to transfer is denied without prejudice to the Defendant renewing if circumstances indicate a transfer is appropriate. ", "The motion to dismiss the Third and Fifth Claim for Relief is granted.", "\nNOTES\n[1] The Court's citations to the transcript of the hearing refer to the Court Reporter's original, unedited version. ", "Any final transcript may contain slightly different page and/or line numbers.", "\n[2] The Supreme Court of New Mexico has not adopted a literal interpretation of \"occurrence,\" as it appears in, Section 41-4-16(B). ", "Instead, the Supreme Court interprets the language as being concerned with notice of the likelihood of a lawsuit arising out of the occurrence. ", "See Marrujo v. New Mexico State Highway Transportation Dept., ", "118 N.M. 753, 761, 887 P.2d 747, 756 (1994)(\"Mere notice of an accident will not necessarily put the government entity on notice that it may become the defendant in a lawsuit.\") (", "citations omitted); New Mexico State Highway Commission v. Ferguson, 98 N.M. 680, 682, 652 P.2d 230, 232 (1982) (\"The purpose of the notice provisions of the Tort Claims Act is to ensure that the agency allegedly at fault is notified that it may be subject to a lawsuit.... We will construe a statute to give it its intended effect.\") (", "citations omitted).", "\n[3] The uncle-niece couple went to Costa Rica specifically to obtain a valid marriage, which was not available to them in New Mexico. ", "See Leszinske v. Poole, 110 N.M. 663, 668, 798 P.2d 1049, 1054 (N.M.App.1990).", "\n[4] The Supreme Court in Sam v. Sam did not discuss the extent to which comity would be a more compelling value when dealing state-to-state, as opposed to state-to-foreign nation, as was the case in Leszinske. ", "Compare Nevada v. Hall, 440 U.S. at 425, 99 S.Ct. ", "1182 (\"The intimate union of these states, as members of the same great political family; the deep and vital interests which bind them so closely together; should lead us, in the absence of proof to the contrary, to presume a greater degree of comity, and friendship, and kindness towards one another, than we should be authorized to presume between foreign nations.\") (", "quotations omitted).", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0.01276595744680851, 0, 0.05263157894736842, 0.022222222222222223, 0, 0.015384615384615385, 0.01744186046511628, 0, 0.023255813953488372, 0, 0.024390243902439025, 0.0068143100511073255, 0.006329113924050633, 0.014814814814814815, 0.011673151750972763, 0.01977401129943503, 0, 0, 0.019230769230769232, 0, 0.009523809523809525, 0, 0.011111111111111112, 0, 0.017391304347826087, 0, 0.012987012987012988, 0, 0.007936507936507936, 0, 0, 0, 0.007462686567164179, 0, 0.028846153846153848, 0.013921113689095127, 0, 0.008639308855291577, 0, 0, 0, 0.0026041666666666665, 0, 0.012875536480686695, 0, 0, 0.011695906432748537, 0, 0, 0, 0.010471204188481676, 0, 0.008771929824561403, 0, 0, 0, 0.007017543859649123, 0, 0.023809523809523808, 0, 0, 0, 0.013513513513513514, 0.02127659574468085, 0, 0.025, 0, 0, 0, 0, 0.02666666666666667, 0, 0.02564102564102564, 0, 0.007142857142857143, 0, 0, 0, 0.004807692307692308, 0, 0.005291005291005291, 0, 0.0064516129032258064, 0, 0, 0, 0, 0, 0.004310344827586207, 0, 0, 0, 0, 0.005154639175257732, 0.0136986301369863, 0.044444444444444446, 0, 0.03488372093023256, 0, 0.0038022813688212928, 0.005076142131979695, 0, 0, 0.004901960784313725, 0.004739336492890996, 0, 0, 0.03125, 0, 0.03571428571428571, 0, 0.034482758620689655, 0.005291005291005291, 0, 0, 0, 0.008658008658008658, 0, 0.004484304932735426, 0.030303030303030304, 0.018867924528301886, 0.02857142857142857, 0.004784688995215311, 0.023809523809523808, 0.005208333333333333, 0.038461538461538464, 0, 0.02564102564102564, 0, 0.03333333333333333, 0.00510204081632653, 0, 0, 0.03571428571428571, 0.008, 0.03125, 0, 0.014705882352941176, 0.029411764705882353, 0.008032128514056224, 0.030303030303030304, 0, 0, 0, 0, 0, 0.029411764705882353, 0.012195121951219513, 0, 0, 0, 0.033707865168539325, 0, 0, 0.006329113924050633, 0.0034129692832764505, 0.11764705882352941, 0, 0, 0, 0, 0.0026595744680851063, 0, 0, 0, 0, 0.02857142857142857, 0, 0.003105590062111801, 0.003257328990228013, 0, 0, 0, 0.02857142857142857, 0, 0, 0.0015151515151515152, 0, 0, 0, 0.011627906976744186, 0.05555555555555555, 0, 0, 0, 0.038461538461538464, 0.05555555555555555, 0, 0, 0, 0.2, 0, 0, 0, 0.03636363636363636, 0, 0.015384615384615385, 0.16666666666666666, 0.0136986301369863, 0, 0.1, 0, 0, 0, 0, 0.004608294930875576, 0.02127659574468085, 0, 0, 0.006711409395973154, 0.02631578947368421, 0, 0, 0, 0.05263157894736842, 0, 0.1, 0, 0, 0, 0.1, 0, 0, 0, 0.017241379310344827, 0, 0, 0.1, 0, 0, 0.007017543859649123, 0.006756756756756757, 0, 0, 0, 0, 0.022727272727272728, 0, 0, 0, 0.004672897196261682, 0.008064516129032258, 0, 0.011363636363636364, 0.004016064257028112, 0, 0.25, 0, 0, 0, 0, 0, 0.03125, 0, 0, 0.0136986301369863, 0, 0, 0.01694915254237288, 0, 0, 0.01282051282051282, 0, 0, 0, 0.04838709677419355, 0, 0.024390243902439025, 0.015384615384615385, 0.0273972602739726, 0.013422818791946308, 0, 0.023255813953488372, 0.0027247956403269754, 0.010638297872340425, 0, 0, 0, 0.00847457627118644, 0, 0.015748031496062992, 0, 0.017543859649122806, 0, 0.05555555555555555, 0, 0, 0.02617801047120419, 0.014388489208633094, 0, 0.043478260869565216, 0.025, 0, 0, 0.02531645569620253, 0.006711409395973154, 0.012195121951219513, 0.005714285714285714, 0.006097560975609756, 0.0033333333333333335, 0.034782608695652174, 0.03488372093023256, 0, 0, 0.008620689655172414, 0, 0, 0, 0.05714285714285714, 0, 0.0056179775280898875, 0.005154639175257732, 0, 0, 0, 0, 0, 0.0033333333333333335, 0.034482758620689655, 0.010752688172043012, 0, 0, 0, 0, 0, 0.03125, 0, 0.02040816326530612, 0, 0, 0, 0, 0, 0, 0, 0.009345794392523364, 0.03125, 0, 0, 0.008403361344537815, 0.010362694300518135, 0.004694835680751174, 0, 0, 0, 0.029411764705882353, 0.003424657534246575, 0.00423728813559322, 0, 0, 0, 0.02127659574468085, 0.00205761316872428, 0.014925373134328358, 0, 0.047619047619047616, 0.005747126436781609, 0.03571428571428571, 0, 0.037037037037037035, 0.0053475935828877, 0.037037037037037035, 0, 0, 0, 0, 0, 0.043478260869565216, 0.003367003367003367, 0.038461538461538464, 0, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0.044444444444444446, 0, 0.0024390243902439024, 0.025, 0, 0.0125, 0, 0.06060606060606061, 0, 0.1, 0, 0.02702702702702703, 0.03076923076923077, 0, 0, 0, 0, 0.011764705882352941, 0, 0, 0, 0.00966183574879227, 0.009900990099009901, 0.0625, 0.008695652173913044, 0, 0.00546448087431694, 0.0048543689320388345, 0.00904977375565611, 0.002840909090909091, 0.05, 0, 0.001976284584980237, 0, 0, 0, 0, 0.028985507246376812, 0, 0.004454342984409799, 0, 0.0045662100456621, 0, 0.004901960784313725, 0.010830324909747292, 0.0072992700729927005, 0.02702702702702703, 0.0056657223796034, 0.034482758620689655, 0, 0.034482758620689655, 0.0020833333333333333, 0.030303030303030304, 0.0038314176245210726, 0.034482758620689655, 0.0030211480362537764, 0.034482758620689655, 0, 0, 0.015748031496062992, 0.034482758620689655, 0.008695652173913044, 0, 0, 0, 0, 0.001949317738791423, 0.03125, 0, 0.0045045045045045045, 0.0047169811320754715, 0.0035971223021582736, 0, 0, 0.05263157894736842, 0.0044444444444444444, 0, 0, 0.00909090909090909, 0.006756756756756757, 0, 0, 0.009345794392523364, 0, 0, 0.0035211267605633804, 0.006097560975609756, 0, 0.005763688760806916, 0.007220216606498195, 0, 0.011467889908256881, 0.041666666666666664, 0, 0.0425531914893617, 0, 0.017857142857142856, 0, 0, 0.004629629629629629, 0.005952380952380952, 0.017543859649122806, 0.019230769230769232, 0.005128205128205128, 0.01694915254237288, 0, 0.006993006993006993, 0.023809523809523808, 0.015748031496062992, 0.00510204081632653, 0.058823529411764705, 0.01020408163265306, 0.01818181818181818, 0.021505376344086023, 0.006578947368421052, 0, 0.009174311926605505, 0.006329113924050633, 0, 0, 0.013605442176870748, 0, 0, 0, 0, 0.007692307692307693, 0, 0, 0, 0, 0, 0.03125, 0.02127659574468085, 0, 0.07142857142857142, 0.006711409395973154, 0, 0, 0, 0, 0, 0, 0, 0.004739336492890996, 0, 0.0037313432835820895, 0, 0, 0.07142857142857142, 0, 0.003663003663003663, 0, 0.05555555555555555, 0.00851063829787234, 0, 0.009345794392523364, 0.009174311926605505, 0, 0.005, 0.058823529411764705, 0, 0.020618556701030927, 0.006944444444444444, 0.05555555555555555, 0.0106951871657754, 0, 0, 0.05555555555555555, 0.017241379310344827, 0, 0.0625, 0, 0, 0, 0, 0, 0.047619047619047616, 0, 0.006493506493506494, 0, 0.006944444444444444, 0, 0.00966183574879227, 0.058823529411764705, 0.013986013986013986, 0, 0, 0.009708737864077669, 0, 0.014705882352941176, 0.00847457627118644, 0.023255813953488372, 0.008, 0, 0.01694915254237288, 0.004761904761904762, 0.011363636363636364, 0, 0.009900990099009901, 0.006329113924050633, 0, 0.04, 0.018867924528301886, 0.027777777777777776, 0.024096385542168676, 0, 0, 0.004347826086956522, 0, 0, 0.0072992700729927005, 0, 0.003703703703703704, 0.00909090909090909, 0.011363636363636364, 0, 0.007547169811320755, 0, 0.006211180124223602, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0.004424778761061947, 0, 0.005555555555555556, 0, 0, 0, 0.1111111111111111, 0, 0, 0, 0.008403361344537815, 0, 0, 0.007246376811594203, 0.0020491803278688526, 0.04081632653061224, 0, 0.011363636363636364, 0, 0, 0.002036659877800407, 0, 0, 0, 0.009615384615384616, 0.02857142857142857, 0.06666666666666667, 0.007751937984496124, 0, 0.02702702702702703, 0, 0.0625, 0.013289036544850499, 0, 0, 0.023529411764705882, 0, 0.0038461538461538464, 0, 0, 0, 0.009950248756218905, 0.008403361344537815, 0.002976190476190476, 0.009900990099009901, 0, 0.006060606060606061, 0.010101010101010102, 0, 0, 0, 0, 0, 0.0036496350364963502, 0, 0, 0, 0, 0.028985507246376812, 0.0031545741324921135, 0.010638297872340425, 0, 0.03333333333333333, 0.022222222222222223, 0, 0.044444444444444446, 0.0022371364653243847, 0, 0.06060606060606061, 0.030303030303030304, 0.006622516556291391, 0.013986013986013986, 0.00684931506849315, 0, 0.007407407407407408, 0, 0.004830917874396135, 0, 0, 0, 0.004464285714285714, 0.003125, 0, 0, 0, 0, 0.005263157894736842, 0, 0, 0, 0, 0.03333333333333333, 0.018518518518518517, 0, 0.04081632653061224, 0, 0, 0.006578947368421052, 0.04, 0.007142857142857143, 0.007246376811594203, 0, 0.03508771929824561, 0.007366482504604052, 0.017241379310344827, 0.037037037037037035, 0.004739336492890996, 0, 0.004048582995951417, 0.014925373134328358, 0, 0.008, 0.004545454545454545, 0, 0, 0, 0, 0.008264462809917356, 0, 0.014492753623188406, 0.0049504950495049506, 0.058823529411764705, 0.007042253521126761, 0, 0, 0.009708737864077669, 0, 0, 0, 0.0035587188612099642, 0.006514657980456026, 0, 0.02564102564102564, 0.007547169811320755, 0, 0.005813953488372093, 0.010752688172043012, 0, 0, 0, 0.013071895424836602, 0.007462686567164179, 0, 0.0023923444976076554, 0, 0, 0, 0, 0.1, 0.008064516129032258, 0.030303030303030304, 0, 0, 0, 0.028985507246376812, 0, 0, 0.014492753623188406, 0.003424657534246575, 0, 0, 0.0058823529411764705, 0, 0, 0, 0.003968253968253968, 0, 0.005154639175257732, 0.009174311926605505, 0, 0.003861003861003861, 0.0035087719298245615, 0.00909090909090909, 0.02702702702702703, 0, 0, 0.008264462809917356, 0, 0, 0.011235955056179775, 0.0038461538461538464, 0, 0, 0, 0, 0, 0.007142857142857143, 0.005025125628140704, 0.014925373134328358, 0, 0.03333333333333333, 0.005952380952380952, 0, 0, 0.013333333333333334, 0.02127659574468085, 0, 0, 0, 0.014285714285714285, 0.024, 0, 0.007462686567164179, 0.006944444444444444, 0, 0, 0.005952380952380952, 0, 0, 0.01282051282051282, 0.014150943396226415, 0.02, 0, 0, 0 ]
0.009989
5
[ { "analysis_explanation": null, "end": 5, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1 }, { "analysis_explanation": null, "end": 291, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289 }, { "analysis_explanation": null, "end": 302, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292 }, { "analysis_explanation": null, "end": 322, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304 }, { "analysis_explanation": null, "end": 370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353 }, { "analysis_explanation": null, "end": 577, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 567 }, { "analysis_explanation": null, "end": 603, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586 }, { "analysis_explanation": null, "end": 663, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652 }, { "analysis_explanation": null, "end": 768, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 751 }, { "analysis_explanation": null, "end": 812, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 788 }, { "analysis_explanation": null, "end": 852, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 827 }, { "analysis_explanation": null, "end": 1056, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1037 }, { "analysis_explanation": null, "end": 1130, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1113 }, { "analysis_explanation": null, "end": 1427, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1419 }, { "analysis_explanation": null, "end": 1507, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1497 }, { "analysis_explanation": null, "end": 1848, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1838 }, { "analysis_explanation": null, "end": 2262, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2245 }, { "analysis_explanation": null, "end": 2414, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2406 }, { "analysis_explanation": null, "end": 2451, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2434 }, { "analysis_explanation": null, "end": 2553, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2536 }, { "analysis_explanation": null, "end": 2638, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2634 }, { "analysis_explanation": null, "end": 2827, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2812 }, { "analysis_explanation": null, "end": 2924, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2907 }, { "analysis_explanation": null, "end": 3193, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3177 }, { "analysis_explanation": null, "end": 3238, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3221 }, { "analysis_explanation": null, "end": 3496, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3479 }, { "analysis_explanation": null, "end": 3551, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3529 }, { "analysis_explanation": null, "end": 3572, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3556 }, { "analysis_explanation": null, "end": 3617, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3600 }, { "analysis_explanation": null, "end": 3721, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3716 }, { "analysis_explanation": null, "end": 3805, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3802 }, { "analysis_explanation": null, "end": 3827, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3816 }, { "analysis_explanation": null, "end": 3848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3829 }, { "analysis_explanation": null, "end": 3894, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3875 }, { "analysis_explanation": null, "end": 4096, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4074 }, { "analysis_explanation": null, "end": 4216, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4204 }, { "analysis_explanation": null, "end": 4393, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4376 }, { "analysis_explanation": null, "end": 4469, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4461 }, { "analysis_explanation": null, "end": 4818, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4801 }, { "analysis_explanation": null, "end": 4944, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4925 }, { "analysis_explanation": null, "end": 5354, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5338 }, { "analysis_explanation": null, "end": 5499, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5461 }, { "analysis_explanation": null, "end": 5555, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5536 }, { "analysis_explanation": null, "end": 5703, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5695 }, { "analysis_explanation": null, "end": 5822, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5814 }, { "analysis_explanation": null, "end": 5858, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5850 }, { "analysis_explanation": null, "end": 5972, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5964 }, { "analysis_explanation": null, "end": 5992, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5982 }, { "analysis_explanation": null, "end": 6125, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6117 }, { "analysis_explanation": null, "end": 6141, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6139 }, { "analysis_explanation": null, "end": 6255, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6247 }, { "analysis_explanation": null, "end": 6347, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6339 }, { "analysis_explanation": null, "end": 6362, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6360 }, { "analysis_explanation": null, "end": 6425, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6406 }, { "analysis_explanation": null, "end": 6525, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6508 }, { "analysis_explanation": null, "end": 6833, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6825 }, { "analysis_explanation": null, "end": 6931, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6929 }, { "analysis_explanation": null, "end": 7081, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7064 }, { "analysis_explanation": null, "end": 7156, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7154 }, { "analysis_explanation": null, "end": 7465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7455 }, { "analysis_explanation": null, "end": 7488, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7474 }, { "analysis_explanation": null, "end": 7553, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7536 }, { "analysis_explanation": null, "end": 7829, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7828 }, { "analysis_explanation": null, "end": 7848, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7831 }, { "analysis_explanation": null, "end": 7875, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7862 }, { "analysis_explanation": null, "end": 7896, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7877 }, { "analysis_explanation": null, "end": 8044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8034 }, { "analysis_explanation": null, "end": 8066, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8053 }, { "analysis_explanation": null, "end": 8106, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8089 }, { "analysis_explanation": null, "end": 8260, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8243 }, { "analysis_explanation": null, "end": 8371, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8361 }, { "analysis_explanation": null, "end": 8385, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8384 }, { "analysis_explanation": null, "end": 8404, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8387 }, { "analysis_explanation": null, "end": 8534, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8526 }, { "analysis_explanation": null, "end": 8562, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8554 }, { "analysis_explanation": null, "end": 8608, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8606 }, { "analysis_explanation": null, "end": 8627, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8610 }, { "analysis_explanation": null, "end": 8812, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8810 }, { "analysis_explanation": null, "end": 8831, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8814 }, { "analysis_explanation": null, "end": 8982, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8980 }, { "analysis_explanation": null, "end": 9001, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8984 }, { "analysis_explanation": null, "end": 9059, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9049 }, { "analysis_explanation": null, "end": 9117, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9115 }, { "analysis_explanation": null, "end": 9136, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9119 }, { "analysis_explanation": null, "end": 9260, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9243 }, { "analysis_explanation": null, "end": 9323, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9321 }, { "analysis_explanation": null, "end": 9342, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9325 }, { "analysis_explanation": null, "end": 9448, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9431 }, { "analysis_explanation": null, "end": 9589, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9575 }, { "analysis_explanation": null, "end": 9608, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9591 }, { "analysis_explanation": null, "end": 9681, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9673 }, { "analysis_explanation": null, "end": 9724, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9707 }, { "analysis_explanation": null, "end": 9784, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9772 }, { "analysis_explanation": null, "end": 9806, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9793 }, { "analysis_explanation": null, "end": 9843, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9826 }, { "analysis_explanation": null, "end": 9887, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9863 }, { "analysis_explanation": null, "end": 10002, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9998 }, { "analysis_explanation": null, "end": 10012, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10006 }, { "analysis_explanation": null, "end": 10064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10060 }, { "analysis_explanation": null, "end": 10091, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10072 }, { "analysis_explanation": null, "end": 10149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10145 }, { "analysis_explanation": null, "end": 10175, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10165 }, { "analysis_explanation": null, "end": 10416, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10406 }, { "analysis_explanation": null, "end": 10613, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10603 }, { "analysis_explanation": null, "end": 10735, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10734 }, { "analysis_explanation": null, "end": 10747, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10743 }, { "analysis_explanation": null, "end": 10840, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10830 }, { "analysis_explanation": null, "end": 10938, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10930 }, { "analysis_explanation": null, "end": 10963, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10948 }, { "analysis_explanation": null, "end": 11052, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11044 }, { "analysis_explanation": null, "end": 11103, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11086 }, { "analysis_explanation": null, "end": 11140, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11130 }, { "analysis_explanation": null, "end": 11208, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11188 }, { "analysis_explanation": null, "end": 11318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11297 }, { "analysis_explanation": null, "end": 11340, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11331 }, { "analysis_explanation": null, "end": 11349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11342 }, { "analysis_explanation": null, "end": 11409, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11401 }, { "analysis_explanation": null, "end": 11431, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11421 }, { "analysis_explanation": null, "end": 11458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11451 }, { "analysis_explanation": null, "end": 11506, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11498 }, { "analysis_explanation": null, "end": 11542, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11534 }, { "analysis_explanation": null, "end": 11573, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11565 }, { "analysis_explanation": null, "end": 11595, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11587 }, { "analysis_explanation": null, "end": 11690, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11682 }, { "analysis_explanation": null, "end": 11735, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11727 }, { "analysis_explanation": null, "end": 11764, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11757 }, { "analysis_explanation": null, "end": 11784, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11767 }, { "analysis_explanation": null, "end": 11823, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11813 }, { "analysis_explanation": null, "end": 11984, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11978 }, { "analysis_explanation": null, "end": 12004, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11987 }, { "analysis_explanation": null, "end": 12083, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12075 }, { "analysis_explanation": null, "end": 12110, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12104 }, { "analysis_explanation": null, "end": 12130, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12113 }, { "analysis_explanation": null, "end": 12179, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12172 }, { "analysis_explanation": null, "end": 12342, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12334 }, { "analysis_explanation": null, "end": 12363, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12355 }, { "analysis_explanation": null, "end": 12371, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12365 }, { "analysis_explanation": null, "end": 12447, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12428 }, { "analysis_explanation": null, "end": 12626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12619 }, { "analysis_explanation": null, "end": 12646, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12629 }, { "analysis_explanation": null, "end": 12835, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12816 }, { "analysis_explanation": null, "end": 12871, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12854 }, { "analysis_explanation": null, "end": 12938, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12921 }, { "analysis_explanation": null, "end": 13001, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12990 }, { "analysis_explanation": null, "end": 13083, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13075 }, { "analysis_explanation": null, "end": 13236, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13229 }, { "analysis_explanation": null, "end": 13256, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13239 }, { "analysis_explanation": null, "end": 13482, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13463 }, { "analysis_explanation": null, "end": 13596, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13589 }, { "analysis_explanation": null, "end": 13662, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13643 }, { "analysis_explanation": null, "end": 14268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14261 }, { "analysis_explanation": null, "end": 14374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14366 }, { "analysis_explanation": null, "end": 14416, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14407 }, { "analysis_explanation": null, "end": 14425, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14418 }, { "analysis_explanation": null, "end": 14445, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14428 }, { "analysis_explanation": null, "end": 14745, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14728 }, { "analysis_explanation": null, "end": 14866, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14847 }, { "analysis_explanation": null, "end": 15027, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15010 }, { "analysis_explanation": null, "end": 15261, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15255 }, { "analysis_explanation": null, "end": 15281, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15264 }, { "analysis_explanation": null, "end": 15569, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15563 }, { "analysis_explanation": null, "end": 15674, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15663 }, { "analysis_explanation": null, "end": 15855, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15850 }, { "analysis_explanation": null, "end": 16013, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16001 }, { "analysis_explanation": null, "end": 16022, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16015 }, { "analysis_explanation": null, "end": 16589, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16585 }, { "analysis_explanation": null, "end": 17325, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17321 }, { "analysis_explanation": null, "end": 17371, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17366 }, { "analysis_explanation": null, "end": 17384, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17372 }, { "analysis_explanation": null, "end": 17584, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17567 }, { "analysis_explanation": null, "end": 17818, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17812 }, { "analysis_explanation": null, "end": 17842, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17838 }, { "analysis_explanation": null, "end": 17885, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17881 }, { "analysis_explanation": null, "end": 17927, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17891 }, { "analysis_explanation": null, "end": 17944, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17931 }, { "analysis_explanation": null, "end": 17954, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17950 }, { "analysis_explanation": null, "end": 17973, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17969 }, { "analysis_explanation": null, "end": 17995, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17991 }, { "analysis_explanation": null, "end": 18357, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18353 }, { "analysis_explanation": null, "end": 18379, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18375 }, { "analysis_explanation": null, "end": 18721, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18708 }, { "analysis_explanation": null, "end": 18731, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18727 }, { "analysis_explanation": null, "end": 18753, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18749 }, { "analysis_explanation": null, "end": 19040, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19031 }, { "analysis_explanation": null, "end": 19050, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19046 }, { "analysis_explanation": null, "end": 19053, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19051 }, { "analysis_explanation": null, "end": 19355, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19351 }, { "analysis_explanation": null, "end": 19927, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19914 }, { "analysis_explanation": null, "end": 19937, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19933 }, { "analysis_explanation": null, "end": 19959, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19955 }, { "analysis_explanation": null, "end": 20143, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20107 }, { "analysis_explanation": null, "end": 20160, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20147 }, { "analysis_explanation": null, "end": 20776, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20772 }, { "analysis_explanation": null, "end": 20798, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20794 }, { "analysis_explanation": null, "end": 20969, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20966 }, { "analysis_explanation": null, "end": 21050, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21008 }, { "analysis_explanation": null, "end": 21091, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21089 }, { "analysis_explanation": null, "end": 21128, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21124 }, { "analysis_explanation": null, "end": 21379, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21355 }, { "analysis_explanation": null, "end": 21414, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21410 }, { "analysis_explanation": null, "end": 21645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21635 }, { "analysis_explanation": null, "end": 21816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21810 }, { "analysis_explanation": null, "end": 21838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21834 }, { "analysis_explanation": null, "end": 22210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22205 }, { "analysis_explanation": null, "end": 22221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22211 }, { "analysis_explanation": null, "end": 22242, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22238 }, { "analysis_explanation": null, "end": 22327, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22317 }, { "analysis_explanation": null, "end": 22720, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22716 }, { "analysis_explanation": null, "end": 22726, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22722 }, { "analysis_explanation": null, "end": 22749, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22745 }, { "analysis_explanation": null, "end": 23201, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23196 }, { "analysis_explanation": null, "end": 23249, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23245 }, { "analysis_explanation": null, "end": 23337, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23332 }, { "analysis_explanation": null, "end": 23342, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23338 }, { "analysis_explanation": null, "end": 23348, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23344 }, { "analysis_explanation": null, "end": 23371, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23367 }, { "analysis_explanation": null, "end": 23531, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23526 }, { "analysis_explanation": null, "end": 23957, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23952 }, { "analysis_explanation": null, "end": 24343, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24339 }, { "analysis_explanation": null, "end": 24707, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24703 }, { "analysis_explanation": null, "end": 24849, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24842 }, { "analysis_explanation": null, "end": 24861, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24853 }, { "analysis_explanation": null, "end": 24871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24863 }, { "analysis_explanation": null, "end": 24882, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24878 }, { "analysis_explanation": null, "end": 24897, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24889 }, { "analysis_explanation": null, "end": 25418, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25414 }, { "analysis_explanation": null, "end": 25875, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25871 }, { "analysis_explanation": null, "end": 26046, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26038 }, { "analysis_explanation": null, "end": 26056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26048 }, { "analysis_explanation": null, "end": 26086, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26082 }, { "analysis_explanation": null, "end": 26476, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26472 }, { "analysis_explanation": null, "end": 27005, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27001 }, { "analysis_explanation": null, "end": 27184, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27177 }, { "analysis_explanation": null, "end": 27196, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27188 }, { "analysis_explanation": null, "end": 27206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27198 }, { "analysis_explanation": null, "end": 27624, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27618 }, { "analysis_explanation": null, "end": 28158, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28154 }, { "analysis_explanation": null, "end": 28375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28367 }, { "analysis_explanation": null, "end": 28458, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28451 }, { "analysis_explanation": null, "end": 29108, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29095 }, { "analysis_explanation": null, "end": 29125, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29117 }, { "analysis_explanation": null, "end": 29478, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29465 }, { "analysis_explanation": null, "end": 29495, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29487 }, { "analysis_explanation": null, "end": 29999, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29995 }, { "analysis_explanation": null, "end": 30010, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30003 }, { "analysis_explanation": null, "end": 30038, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30022 }, { "analysis_explanation": null, "end": 30169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30165 }, { "analysis_explanation": null, "end": 30190, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30183 }, { "analysis_explanation": null, "end": 31349, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31336 }, { "analysis_explanation": null, "end": 31366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31358 }, { "analysis_explanation": null, "end": 31428, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31424 }, { "analysis_explanation": null, "end": 31802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31782 }, { "analysis_explanation": null, "end": 31868, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31843 }, { "analysis_explanation": null, "end": 31988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31981 }, { "analysis_explanation": null, "end": 32280, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32273 }, { "analysis_explanation": null, "end": 32300, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32296 }, { "analysis_explanation": null, "end": 32438, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32434 }, { "analysis_explanation": null, "end": 32512, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32508 }, { "analysis_explanation": null, "end": 32525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32514 }, { "analysis_explanation": null, "end": 32536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32528 }, { "analysis_explanation": null, "end": 32930, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32914 }, { "analysis_explanation": null, "end": 33265, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33260 }, { "analysis_explanation": null, "end": 33583, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33551 }, { "analysis_explanation": null, "end": 34285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34274 }, { "analysis_explanation": null, "end": 34490, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34473 }, { "analysis_explanation": null, "end": 34534, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34510 }, { "analysis_explanation": null, "end": 35194, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35190 }, { "analysis_explanation": null, "end": 35203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35198 }, { "analysis_explanation": null, "end": 35212, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35208 }, { "analysis_explanation": null, "end": 35218, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35216 }, { "analysis_explanation": null, "end": 35381, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35375 }, { "analysis_explanation": null, "end": 35407, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35402 }, { "analysis_explanation": null, "end": 35418, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35408 }, { "analysis_explanation": null, "end": 35952, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35944 }, { "analysis_explanation": null, "end": 35967, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35957 }, { "analysis_explanation": null, "end": 36036, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36029 }, { "analysis_explanation": null, "end": 36047, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36040 }, { "analysis_explanation": null, "end": 36080, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36076 }, { "analysis_explanation": null, "end": 36114, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36104 }, { "analysis_explanation": null, "end": 36395, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36387 }, { "analysis_explanation": null, "end": 37397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37393 }, { "analysis_explanation": null, "end": 37574, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37567 }, { "analysis_explanation": null, "end": 37584, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37578 }, { "analysis_explanation": null, "end": 37662, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37658 }, { "analysis_explanation": null, "end": 37671, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37666 }, { "analysis_explanation": null, "end": 37687, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37685 }, { "analysis_explanation": null, "end": 37712, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37708 }, { "analysis_explanation": null, "end": 38686, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38682 }, { "analysis_explanation": null, "end": 38692, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38688 }, { "analysis_explanation": null, "end": 39360, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39348 }, { "analysis_explanation": null, "end": 39373, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39365 }, { "analysis_explanation": null, "end": 39645, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39641 }, { "analysis_explanation": null, "end": 39665, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39661 }, { "analysis_explanation": null, "end": 39915, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39909 }, { "analysis_explanation": null, "end": 39933, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39929 }, { "analysis_explanation": null, "end": 39988, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39975 }, { "analysis_explanation": null, "end": 40218, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40208 }, { "analysis_explanation": null, "end": 40358, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40348 }, { "analysis_explanation": null, "end": 40412, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40404 }, { "analysis_explanation": null, "end": 40496, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40486 }, { "analysis_explanation": null, "end": 40960, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40950 }, { "analysis_explanation": null, "end": 40966, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40962 }, { "analysis_explanation": null, "end": 41030, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41020 }, { "analysis_explanation": null, "end": 41209, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41199 }, { "analysis_explanation": null, "end": 41247, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41237 }, { "analysis_explanation": null, "end": 41253, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41249 }, { "analysis_explanation": null, "end": 41296, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41292 }, { "analysis_explanation": null, "end": 41330, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41320 }, { "analysis_explanation": null, "end": 41377, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41367 }, { "analysis_explanation": null, "end": 41405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41398 }, { "analysis_explanation": null, "end": 41453, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41441 }, { "analysis_explanation": null, "end": 41490, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41483 }, { "analysis_explanation": null, "end": 41616, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41610 }, { "analysis_explanation": null, "end": 41835, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41825 }, { "analysis_explanation": null, "end": 42541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42531 }, { "analysis_explanation": null, "end": 42596, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42586 }, { "analysis_explanation": null, "end": 42649, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42642 }, { "analysis_explanation": null, "end": 42692, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42682 }, { "analysis_explanation": null, "end": 42721, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42711 }, { "analysis_explanation": null, "end": 42790, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42783 }, { "analysis_explanation": null, "end": 42825, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42815 }, { "analysis_explanation": null, "end": 43445, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43434 }, { "analysis_explanation": null, "end": 44054, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44043 }, { "analysis_explanation": null, "end": 44161, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44149 }, { "analysis_explanation": null, "end": 44190, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44179 }, { "analysis_explanation": null, "end": 44289, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44283 }, { "analysis_explanation": null, "end": 44322, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44316 }, { "analysis_explanation": null, "end": 44332, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44328 }, { "analysis_explanation": null, "end": 44335, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44333 }, { "analysis_explanation": null, "end": 44339, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44337 }, { "analysis_explanation": null, "end": 44393, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44383 }, { "analysis_explanation": null, "end": 44531, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44519 }, { "analysis_explanation": null, "end": 44557, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44551 }, { "analysis_explanation": null, "end": 45068, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45062 }, { "analysis_explanation": null, "end": 45101, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45095 }, { "analysis_explanation": null, "end": 45111, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45107 }, { "analysis_explanation": null, "end": 45114, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45112 }, { "analysis_explanation": null, "end": 45118, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45116 }, { "analysis_explanation": null, "end": 45167, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45159 }, { "analysis_explanation": null, "end": 45188, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45184 }, { "analysis_explanation": null, "end": 45195, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45189 }, { "analysis_explanation": null, "end": 45220, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45216 }, { "analysis_explanation": null, "end": 45581, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45573 }, { "analysis_explanation": null, "end": 45595, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45585 }, { "analysis_explanation": null, "end": 45603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45599 }, { "analysis_explanation": null, "end": 45670, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45662 }, { "analysis_explanation": null, "end": 45708, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45700 }, { "analysis_explanation": null, "end": 45751, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45746 }, { "analysis_explanation": null, "end": 46057, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46034 }, { "analysis_explanation": null, "end": 46432, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46427 }, { "analysis_explanation": null, "end": 46549, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46545 }, { "analysis_explanation": null, "end": 46604, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46589 }, { "analysis_explanation": null, "end": 46642, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46638 }, { "analysis_explanation": null, "end": 47070, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47062 }, { "analysis_explanation": null, "end": 47094, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47081 }, { "analysis_explanation": null, "end": 47109, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47098 }, { "analysis_explanation": null, "end": 47403, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47395 }, { "analysis_explanation": null, "end": 47482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47467 }, { "analysis_explanation": null, "end": 47503, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47497 }, { "analysis_explanation": null, "end": 47529, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47524 }, { "analysis_explanation": null, "end": 48780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48771 }, { "analysis_explanation": null, "end": 48833, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48823 }, { "analysis_explanation": null, "end": 48880, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48871 }, { "analysis_explanation": null, "end": 48955, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48943 }, { "analysis_explanation": null, "end": 49415, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49411 }, { "analysis_explanation": null, "end": 49422, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49420 }, { "analysis_explanation": null, "end": 49450, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49446 }, { "analysis_explanation": null, "end": 49484, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49474 }, { "analysis_explanation": null, "end": 49709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49700 }, { "analysis_explanation": null, "end": 49910, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49904 }, { "analysis_explanation": null, "end": 49920, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49914 }, { "analysis_explanation": null, "end": 49929, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49925 }, { "analysis_explanation": null, "end": 50179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50171 }, { "analysis_explanation": null, "end": 50188, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50184 }, { "analysis_explanation": null, "end": 50442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50434 }, { "analysis_explanation": null, "end": 50544, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50540 }, { "analysis_explanation": null, "end": 50578, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50568 }, { "analysis_explanation": null, "end": 50743, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50739 }, { "analysis_explanation": null, "end": 50800, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50790 }, { "analysis_explanation": null, "end": 50868, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50848 }, { "analysis_explanation": null, "end": 50900, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50894 }, { "analysis_explanation": null, "end": 51032, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51014 }, { "analysis_explanation": null, "end": 51359, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51349 }, { "analysis_explanation": null, "end": 51497, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51471 }, { "analysis_explanation": null, "end": 51872, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51862 }, { "analysis_explanation": null, "end": 51919, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51901 }, { "analysis_explanation": null, "end": 52037, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52019 }, { "analysis_explanation": null, "end": 52162, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52152 }, { "analysis_explanation": null, "end": 53856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53846 }, { "analysis_explanation": null, "end": 53935, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53929 }, { "analysis_explanation": null, "end": 54236, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54218 }, { "analysis_explanation": null, "end": 54408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54399 }, { "analysis_explanation": null, "end": 54666, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54656 }, { "analysis_explanation": null, "end": 55115, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55111 }, { "analysis_explanation": null, "end": 55161, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55154 }, { "analysis_explanation": null, "end": 55189, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55165 }, { "analysis_explanation": null, "end": 55216, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55211 }, { "analysis_explanation": null, "end": 55252, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55242 }, { "analysis_explanation": null, "end": 55335, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55325 }, { "analysis_explanation": null, "end": 55665, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55661 }, { "analysis_explanation": null, "end": 55700, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55695 }, { "analysis_explanation": null, "end": 55711, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55704 }, { "analysis_explanation": null, "end": 55737, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55724 }, { "analysis_explanation": null, "end": 55777, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55767 }, { "analysis_explanation": null, "end": 55865, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55861 }, { "analysis_explanation": null, "end": 56154, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56150 }, { "analysis_explanation": null, "end": 56189, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56184 }, { "analysis_explanation": null, "end": 56200, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56193 }, { "analysis_explanation": null, "end": 56223, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56212 }, { "analysis_explanation": null, "end": 57109, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57105 }, { "analysis_explanation": null, "end": 57155, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57148 }, { "analysis_explanation": null, "end": 57165, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57159 }, { "analysis_explanation": null, "end": 57172, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57167 }, { "analysis_explanation": null, "end": 57571, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57561 }, { "analysis_explanation": null, "end": 57591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57582 }, { "analysis_explanation": null, "end": 57633, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57629 }, { "analysis_explanation": null, "end": 57867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57858 }, { "analysis_explanation": null, "end": 58034, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58030 }, { "analysis_explanation": null, "end": 58043, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58038 }, { "analysis_explanation": null, "end": 58075, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58071 }, { "analysis_explanation": null, "end": 58271, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58267 }, { "analysis_explanation": null, "end": 58280, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58275 }, { "analysis_explanation": null, "end": 58289, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58285 }, { "analysis_explanation": null, "end": 58295, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58293 }, { "analysis_explanation": null, "end": 58446, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58442 }, { "analysis_explanation": null, "end": 58455, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58450 }, { "analysis_explanation": null, "end": 58464, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58460 }, { "analysis_explanation": null, "end": 58470, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58468 }, { "analysis_explanation": null, "end": 58747, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58743 }, { "analysis_explanation": null, "end": 58756, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58751 }, { "analysis_explanation": null, "end": 58765, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58761 }, { "analysis_explanation": null, "end": 58771, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58769 }, { "analysis_explanation": null, "end": 58815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58798 }, { "analysis_explanation": null, "end": 58824, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58820 }, { "analysis_explanation": null, "end": 58827, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58825 }, { "analysis_explanation": null, "end": 58831, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58829 }, { "analysis_explanation": null, "end": 58865, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58861 }, { "analysis_explanation": null, "end": 58877, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58873 }, { "analysis_explanation": null, "end": 58886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58881 }, { "analysis_explanation": null, "end": 58895, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58891 }, { "analysis_explanation": null, "end": 58901, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58899 }, { "analysis_explanation": null, "end": 59165, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59148 }, { "analysis_explanation": null, "end": 59209, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59185 }, { "analysis_explanation": null, "end": 59401, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59382 }, { "analysis_explanation": null, "end": 59445, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59426 }, { "analysis_explanation": null, "end": 59532, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59522 }, { "analysis_explanation": null, "end": 59638, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59619 }, { "analysis_explanation": null, "end": 59773, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59756 }, { "analysis_explanation": null, "end": 59981, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59964 }, { "analysis_explanation": null, "end": 60025, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60001 }, { "analysis_explanation": null, "end": 60181, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60176 }, { "analysis_explanation": null, "end": 60194, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60182 }, { "analysis_explanation": null, "end": 60262, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60252 }, { "analysis_explanation": null, "end": 60274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60270 }, { "analysis_explanation": null, "end": 60343, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60333 }, { "analysis_explanation": null, "end": 60558, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60548 }, { "analysis_explanation": null, "end": 60655, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60647 }, { "analysis_explanation": null, "end": 60744, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60734 }, { "analysis_explanation": null, "end": 60799, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60791 }, { "analysis_explanation": null, "end": 60903, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60893 }, { "analysis_explanation": null, "end": 61111, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61101 }, { "analysis_explanation": null, "end": 61157, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61147 }, { "analysis_explanation": null, "end": 61554, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61546 }, { "analysis_explanation": null, "end": 61644, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61639 }, { "analysis_explanation": null, "end": 61777, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61760 }, { "analysis_explanation": null, "end": 62355, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62342 }, { "analysis_explanation": null, "end": 62365, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62361 }, { "analysis_explanation": null, "end": 62387, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62383 }, { "analysis_explanation": null, "end": 62566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62553 }, { "analysis_explanation": null, "end": 62576, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62572 }, { "analysis_explanation": null, "end": 62598, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62594 }, { "analysis_explanation": null, "end": 62610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62600 }, { "analysis_explanation": null, "end": 62805, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62803 }, { "analysis_explanation": null, "end": 62820, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62819 }, { "analysis_explanation": null, "end": 62832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62822 }, { "analysis_explanation": null, "end": 62897, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62887 }, { "analysis_explanation": null, "end": 62987, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62979 }, { "analysis_explanation": null, "end": 63002, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63000 }, { "analysis_explanation": null, "end": 63037, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63029 }, { "analysis_explanation": null, "end": 63147, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63139 }, { "analysis_explanation": null, "end": 63186, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63169 }, { "analysis_explanation": null, "end": 63252, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63244 }, { "analysis_explanation": null, "end": 63306, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63289 }, { "analysis_explanation": null, "end": 63372, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63362 }, { "analysis_explanation": null, "end": 63508, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63498 }, { "analysis_explanation": null, "end": 63519, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63518 }, { "analysis_explanation": null, "end": 63538, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63521 }, { "analysis_explanation": null, "end": 63612, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63602 }, { "analysis_explanation": null, "end": 63949, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63944 }, { "analysis_explanation": null, "end": 63970, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63964 }, { "analysis_explanation": null, "end": 63985, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63974 }, { "analysis_explanation": null, "end": 64207, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64191 }, { "analysis_explanation": null, "end": 64300, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64292 }, { "analysis_explanation": null, "end": 64394, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64392 }, { "analysis_explanation": null, "end": 64447, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64430 }, { "analysis_explanation": null, "end": 64541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64533 }, { "analysis_explanation": null, "end": 64680, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64676 }, { "analysis_explanation": null, "end": 64707, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64699 }, { "analysis_explanation": null, "end": 64759, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64751 }, { "analysis_explanation": null, "end": 64836, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64826 }, { "analysis_explanation": null, "end": 65047, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65037 }, { "analysis_explanation": null, "end": 65148, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65140 }, { "analysis_explanation": null, "end": 65185, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65181 }, { "analysis_explanation": null, "end": 65208, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65200 }, { "analysis_explanation": null, "end": 65401, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65375 }, { "analysis_explanation": null, "end": 65597, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65573 }, { "analysis_explanation": null, "end": 65615, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65613 }, { "analysis_explanation": null, "end": 65675, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65667 }, { "analysis_explanation": null, "end": 66265, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66255 }, { "analysis_explanation": null, "end": 66343, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66335 }, { "analysis_explanation": null, "end": 66375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66358 }, { "analysis_explanation": null, "end": 66426, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66400 }, { "analysis_explanation": null, "end": 66444, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66442 }, { "analysis_explanation": null, "end": 66554, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66537 }, { "analysis_explanation": null, "end": 66632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66624 }, { "analysis_explanation": null, "end": 66650, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66634 }, { "analysis_explanation": null, "end": 66732, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66724 }, { "analysis_explanation": null, "end": 66791, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66789 }, { "analysis_explanation": null, "end": 66902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66894 }, { "analysis_explanation": null, "end": 66920, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66909 }, { "analysis_explanation": null, "end": 67031, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67023 }, { "analysis_explanation": null, "end": 67068, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67060 }, { "analysis_explanation": null, "end": 67101, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67099 }, { "analysis_explanation": null, "end": 67120, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67103 }, { "analysis_explanation": null, "end": 67176, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67166 }, { "analysis_explanation": null, "end": 67207, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67190 }, { "analysis_explanation": null, "end": 67246, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67236 }, { "analysis_explanation": null, "end": 67306, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67298 }, { "analysis_explanation": null, "end": 67506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67499 }, { "analysis_explanation": null, "end": 67573, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67565 }, { "analysis_explanation": null, "end": 67616, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67608 }, { "analysis_explanation": null, "end": 67768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67734 }, { "analysis_explanation": null, "end": 67849, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67839 }, { "analysis_explanation": null, "end": 67982, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67974 }, { "analysis_explanation": null, "end": 68034, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68024 }, { "analysis_explanation": null, "end": 68067, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68063 }, { "analysis_explanation": null, "end": 68155, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68145 }, { "analysis_explanation": null, "end": 68240, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68232 }, { "analysis_explanation": null, "end": 68329, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68325 }, { "analysis_explanation": null, "end": 68470, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68458 }, { "analysis_explanation": null, "end": 68508, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68500 }, { "analysis_explanation": null, "end": 68640, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68628 }, { "analysis_explanation": null, "end": 68675, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68667 }, { "analysis_explanation": null, "end": 68839, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68831 }, { "analysis_explanation": null, "end": 68883, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68871 }, { "analysis_explanation": null, "end": 69069, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69052 }, { "analysis_explanation": null, "end": 69138, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69114 }, { "analysis_explanation": null, "end": 69161, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69153 }, { "analysis_explanation": null, "end": 69180, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69176 }, { "analysis_explanation": null, "end": 69328, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69318 }, { "analysis_explanation": null, "end": 69354, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69337 }, { "analysis_explanation": null, "end": 69379, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69369 }, { "analysis_explanation": null, "end": 69456, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69446 }, { "analysis_explanation": null, "end": 69482, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69472 }, { "analysis_explanation": null, "end": 69538, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69528 }, { "analysis_explanation": null, "end": 69672, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69653 }, { "analysis_explanation": null, "end": 69740, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69730 }, { "analysis_explanation": null, "end": 69876, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69868 }, { "analysis_explanation": null, "end": 70083, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70064 }, { "analysis_explanation": null, "end": 70203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70196 }, { "analysis_explanation": null, "end": 70223, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70206 }, { "analysis_explanation": null, "end": 70632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70613 }, { "analysis_explanation": null, "end": 70752, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70744 }, { "analysis_explanation": null, "end": 70814, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70795 }, { "analysis_explanation": null, "end": 71021, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71002 }, { "analysis_explanation": null, "end": 71100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71088 }, { "analysis_explanation": null, "end": 71158, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71148 }, { "analysis_explanation": null, "end": 71254, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71246 }, { "analysis_explanation": null, "end": 71299, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71282 }, { "analysis_explanation": null, "end": 71367, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71348 }, { "analysis_explanation": null, "end": 71414, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71406 }, { "analysis_explanation": null, "end": 71473, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71454 }, { "analysis_explanation": null, "end": 71556, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71539 }, { "analysis_explanation": null, "end": 71626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71611 }, { "analysis_explanation": null, "end": 71646, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71627 }, { "analysis_explanation": null, "end": 71752, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71733 }, { "analysis_explanation": null, "end": 71858, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71841 }, { "analysis_explanation": null, "end": 72140, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72123 }, { "analysis_explanation": null, "end": 72319, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72304 }, { "analysis_explanation": null, "end": 72346, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72329 }, { "analysis_explanation": null, "end": 72449, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72443 }, { "analysis_explanation": null, "end": 72469, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72452 }, { "analysis_explanation": null, "end": 72708, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72698 }, { "analysis_explanation": null, "end": 72792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72783 }, { "analysis_explanation": null, "end": 73093, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73089 }, { "analysis_explanation": null, "end": 73102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73097 }, { "analysis_explanation": null, "end": 73111, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73107 }, { "analysis_explanation": null, "end": 73117, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73115 }, { "analysis_explanation": null, "end": 73611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73592 }, { "analysis_explanation": null, "end": 73773, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73768 }, { "analysis_explanation": null, "end": 74016, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73997 }, { "analysis_explanation": null, "end": 74163, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74151 }, { "analysis_explanation": null, "end": 74625, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74615 }, { "analysis_explanation": null, "end": 75092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75082 }, { "analysis_explanation": null, "end": 75098, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75094 }, { "analysis_explanation": null, "end": 75153, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75143 }, { "analysis_explanation": null, "end": 75194, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75186 }, { "analysis_explanation": null, "end": 75241, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75224 }, { "analysis_explanation": null, "end": 75268, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75256 }, { "analysis_explanation": null, "end": 75356, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75348 }, { "analysis_explanation": null, "end": 75375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75358 }, { "analysis_explanation": null, "end": 75447, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75428 }, { "analysis_explanation": null, "end": 75523, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75511 }, { "analysis_explanation": null, "end": 75590, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75582 }, { "analysis_explanation": null, "end": 75879, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75856 }, { "analysis_explanation": null, "end": 76254, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76249 }, { "analysis_explanation": null, "end": 76287, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76266 }, { "analysis_explanation": null, "end": 76332, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76315 }, { "analysis_explanation": null, "end": 76416, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76414 }, { "analysis_explanation": null, "end": 76430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76418 }, { "analysis_explanation": null, "end": 76441, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76439 }, { "analysis_explanation": null, "end": 76477, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76460 }, { "analysis_explanation": null, "end": 76597, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76580 }, { "analysis_explanation": null, "end": 76642, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76625 }, { "analysis_explanation": null, "end": 76724, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76722 }, { "analysis_explanation": null, "end": 76764, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76747 }, { "analysis_explanation": null, "end": 76923, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76900 }, { "analysis_explanation": null, "end": 76976, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76943 }, { "analysis_explanation": null, "end": 77019, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76981 }, { "analysis_explanation": null, "end": 77157, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77135 }, { "analysis_explanation": null, "end": 77184, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77176 }, { "analysis_explanation": null, "end": 77249, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77241 }, { "analysis_explanation": null, "end": 77325, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77319 }, { "analysis_explanation": null, "end": 77345, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77337 }, { "analysis_explanation": null, "end": 77676, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77672 }, { "analysis_explanation": null, "end": 77693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77680 }, { "analysis_explanation": null, "end": 77729, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77714 }, { "analysis_explanation": null, "end": 77938, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77928 }, { "analysis_explanation": null, "end": 77951, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77942 }, { "analysis_explanation": null, "end": 78084, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78074 }, { "analysis_explanation": null, "end": 78098, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78086 }, { "analysis_explanation": null, "end": 78156, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78148 }, { "analysis_explanation": null, "end": 78314, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78304 }, { "analysis_explanation": null, "end": 78531, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78527 }, { "analysis_explanation": null, "end": 78734, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78726 }, { "analysis_explanation": null, "end": 78988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78980 }, { "analysis_explanation": null, "end": 79283, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79275 }, { "analysis_explanation": null, "end": 79430, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79420 }, { "analysis_explanation": null, "end": 79752, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79735 }, { "analysis_explanation": null, "end": 79821, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79798 }, { "analysis_explanation": null, "end": 79989, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79984 }, { "analysis_explanation": null, "end": 80204, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80181 }, { "analysis_explanation": null, "end": 80395, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80387 }, { "analysis_explanation": null, "end": 80940, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80923 }, { "analysis_explanation": null, "end": 81038, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81028 }, { "analysis_explanation": null, "end": 81152, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81141 }, { "analysis_explanation": null, "end": 81184, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81172 }, { "analysis_explanation": null, "end": 81280, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81268 }, { "analysis_explanation": null, "end": 81404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81398 }, { "analysis_explanation": null, "end": 81437, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81431 }, { "analysis_explanation": null, "end": 81447, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81443 }, { "analysis_explanation": null, "end": 81453, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81451 }, { "analysis_explanation": null, "end": 81471, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81467 }, { "analysis_explanation": null, "end": 81618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81612 }, { "analysis_explanation": null, "end": 81668, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81664 }, { "analysis_explanation": null, "end": 82459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82451 }, { "analysis_explanation": null, "end": 82473, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82463 }, { "analysis_explanation": null, "end": 82481, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82477 }, { "analysis_explanation": null, "end": 82582, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82563 }, { "analysis_explanation": null, "end": 82662, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82652 }, { "analysis_explanation": null, "end": 82731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82708 }, { "analysis_explanation": null, "end": 82949, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82927 }, { "analysis_explanation": null, "end": 83010, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82993 }, { "analysis_explanation": null, "end": 83098, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83076 }, { "analysis_explanation": null, "end": 83115, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83114 }, { "analysis_explanation": null, "end": 83234, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83215 }, { "analysis_explanation": null, "end": 83268, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83258 }, { "analysis_explanation": null, "end": 83323, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83306 }, { "analysis_explanation": null, "end": 83611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83606 }, { "analysis_explanation": null, "end": 83691, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83681 }, { "analysis_explanation": null, "end": 83759, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83740 }, { "analysis_explanation": null, "end": 83820, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83808 }, { "analysis_explanation": null, "end": 84015, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84011 }, { "analysis_explanation": null, "end": 84313, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84305 }, { "analysis_explanation": null, "end": 84376, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84368 }, { "analysis_explanation": null, "end": 84404, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84394 }, { "analysis_explanation": null, "end": 84429, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84410 }, { "analysis_explanation": null, "end": 84509, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84499 }, { "analysis_explanation": null, "end": 84522, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84514 }, { "analysis_explanation": null, "end": 85010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85006 }, { "analysis_explanation": null, "end": 85062, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85056 }, { "analysis_explanation": null, "end": 85118, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85110 }, { "analysis_explanation": null, "end": 85143, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85131 }, { "analysis_explanation": null, "end": 85175, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85173 }, { "analysis_explanation": null, "end": 85191, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85189 }, { "analysis_explanation": null, "end": 85237, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85227 }, { "analysis_explanation": null, "end": 85285, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85277 }, { "analysis_explanation": null, "end": 85311, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85301 }, { "analysis_explanation": null, "end": 85409, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85401 }, { "analysis_explanation": null, "end": 85445, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85435 }, { "analysis_explanation": null, "end": 85492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85482 }, { "analysis_explanation": null, "end": 85498, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85494 }, { "analysis_explanation": null, "end": 85570, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85560 }, { "analysis_explanation": null, "end": 85660, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85650 }, { "analysis_explanation": null, "end": 85741, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85731 }, { "analysis_explanation": null, "end": 85872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85862 }, { "analysis_explanation": null, "end": 85878, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85874 }, { "analysis_explanation": null, "end": 85933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85923 }, { "analysis_explanation": null, "end": 86088, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86078 }, { "analysis_explanation": null, "end": 86190, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86180 }, { "analysis_explanation": null, "end": 86263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86254 }, { "analysis_explanation": null, "end": 86405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86395 }, { "analysis_explanation": null, "end": 86506, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86495 }, { "analysis_explanation": null, "end": 86540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86530 }, { "analysis_explanation": null, "end": 86546, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86542 }, { "analysis_explanation": null, "end": 86605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86596 }, { "analysis_explanation": null, "end": 86684, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86674 }, { "analysis_explanation": null, "end": 86708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86699 }, { "analysis_explanation": null, "end": 86769, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86759 }, { "analysis_explanation": null, "end": 86804, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86794 }, { "analysis_explanation": null, "end": 86947, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86937 }, { "analysis_explanation": null, "end": 87040, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87030 }, { "analysis_explanation": null, "end": 87053, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87045 }, { "analysis_explanation": null, "end": 87170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87160 }, { "analysis_explanation": null, "end": 87203, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87193 }, { "analysis_explanation": null, "end": 87222, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87215 }, { "analysis_explanation": null, "end": 87296, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87289 }, { "analysis_explanation": null, "end": 87318, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87308 }, { "analysis_explanation": null, "end": 87324, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87320 }, { "analysis_explanation": null, "end": 87365, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87358 }, { "analysis_explanation": null, "end": 87380, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87372 }, { "analysis_explanation": null, "end": 87437, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87427 }, { "analysis_explanation": null, "end": 87455, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87446 }, { "analysis_explanation": null, "end": 87492, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87482 }, { "analysis_explanation": null, "end": 87526, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87518 }, { "analysis_explanation": null, "end": 87582, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87578 }, { "analysis_explanation": null, "end": 87627, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87617 }, { "analysis_explanation": null, "end": 87757, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87745 }, { "analysis_explanation": null, "end": 87800, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87791 }, { "analysis_explanation": null, "end": 87891, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87884 }, { "analysis_explanation": null, "end": 87935, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87927 }, { "analysis_explanation": null, "end": 87957, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87949 }, { "analysis_explanation": null, "end": 88022, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88012 }, { "analysis_explanation": null, "end": 88073, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88063 }, { "analysis_explanation": null, "end": 88094, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88086 }, { "analysis_explanation": null, "end": 88204, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88196 }, { "analysis_explanation": null, "end": 88234, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88224 }, { "analysis_explanation": null, "end": 88263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88253 }, { "analysis_explanation": null, "end": 88406, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88396 }, { "analysis_explanation": null, "end": 88509, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88498 }, { "analysis_explanation": null, "end": 88536, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88528 }, { "analysis_explanation": null, "end": 88570, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88563 }, { "analysis_explanation": null, "end": 88622, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88614 }, { "analysis_explanation": null, "end": 88637, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88627 }, { "analysis_explanation": null, "end": 88858, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88850 }, { "analysis_explanation": null, "end": 88974, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88964 }, { "analysis_explanation": null, "end": 89034, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89024 }, { "analysis_explanation": null, "end": 89088, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89080 }, { "analysis_explanation": null, "end": 89103, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89093 }, { "analysis_explanation": null, "end": 89333, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89323 }, { "analysis_explanation": null, "end": 89369, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89361 }, { "analysis_explanation": null, "end": 89497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89493 }, { "analysis_explanation": null, "end": 89586, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89576 }, { "analysis_explanation": null, "end": 89684, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89676 }, { "analysis_explanation": null, "end": 89759, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89751 }, { "analysis_explanation": null, "end": 89774, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89764 }, { "analysis_explanation": null, "end": 89867, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89855 }, { "analysis_explanation": null, "end": 89905, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89897 }, { "analysis_explanation": null, "end": 90066, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90054 }, { "analysis_explanation": null, "end": 90102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90094 }, { "analysis_explanation": null, "end": 90138, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90130 }, { "analysis_explanation": null, "end": 90237, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90225 }, { "analysis_explanation": null, "end": 90272, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90264 }, { "analysis_explanation": null, "end": 90442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90434 }, { "analysis_explanation": null, "end": 90486, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90474 }, { "analysis_explanation": null, "end": 90540, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90530 }, { "analysis_explanation": null, "end": 90682, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90672 }, { "analysis_explanation": null, "end": 90738, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90726 }, { "analysis_explanation": null, "end": 90943, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90933 }, { "analysis_explanation": null, "end": 91017, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91010 }, { "analysis_explanation": null, "end": 91028, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91020 }, { "analysis_explanation": null, "end": 91101, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91089 }, { "analysis_explanation": null, "end": 91146, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91134 }, { "analysis_explanation": null, "end": 91155, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91147 }, { "analysis_explanation": null, "end": 91212, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91202 }, { "analysis_explanation": null, "end": 91367, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91363 }, { "analysis_explanation": null, "end": 91419, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91411 }, { "analysis_explanation": null, "end": 91577, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91569 }, { "analysis_explanation": null, "end": 91706, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91694 }, { "analysis_explanation": null, "end": 91720, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91707 }, { "analysis_explanation": null, "end": 91793, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91783 }, { "analysis_explanation": null, "end": 91818, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91810 }, { "analysis_explanation": null, "end": 91933, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91923 }, { "analysis_explanation": null, "end": 92061, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92044 }, { "analysis_explanation": null, "end": 92266, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92258 }, { "analysis_explanation": null, "end": 92324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92314 }, { "analysis_explanation": null, "end": 92397, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92389 }, { "analysis_explanation": null, "end": 92455, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92447 }, { "analysis_explanation": null, "end": 92499, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92487 }, { "analysis_explanation": null, "end": 92544, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92532 }, { "analysis_explanation": null, "end": 92663, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92655 }, { "analysis_explanation": null, "end": 92709, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92699 }, { "analysis_explanation": null, "end": 92809, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92801 }, { "analysis_explanation": null, "end": 92838, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92819 }, { "analysis_explanation": null, "end": 92925, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92906 }, { "analysis_explanation": null, "end": 93027, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93019 }, { "analysis_explanation": null, "end": 93057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93035 }, { "analysis_explanation": null, "end": 93172, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93157 }, { "analysis_explanation": null, "end": 93221, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93202 }, { "analysis_explanation": null, "end": 93845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93838 }, { "analysis_explanation": null, "end": 93865, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93848 }, { "analysis_explanation": null, "end": 93986, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93967 }, { "analysis_explanation": null, "end": 94146, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94129 }, { "analysis_explanation": null, "end": 94381, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94375 }, { "analysis_explanation": null, "end": 94527, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94518 }, { "analysis_explanation": null, "end": 94580, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94570 }, { "analysis_explanation": null, "end": 94627, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94618 }, { "analysis_explanation": null, "end": 95002, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94998 }, { "analysis_explanation": null, "end": 95008, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95006 }, { "analysis_explanation": null, "end": 95064, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95054 }, { "analysis_explanation": null, "end": 95326, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95322 }, { "analysis_explanation": null, "end": 95372, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95365 }, { "analysis_explanation": null, "end": 95400, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95376 }, { "analysis_explanation": null, "end": 95413, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95403 }, { "analysis_explanation": null, "end": 95440, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95430 }, { "analysis_explanation": null, "end": 95914, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95904 }, { "analysis_explanation": null, "end": 95940, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95930 }, { "analysis_explanation": null, "end": 96099, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96089 }, { "analysis_explanation": null, "end": 96335, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96326 }, { "analysis_explanation": null, "end": 96345, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96341 }, { "analysis_explanation": null, "end": 96526, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96520 }, { "analysis_explanation": null, "end": 96536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96530 }, { "analysis_explanation": null, "end": 96545, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96541 }, { "analysis_explanation": null, "end": 96785, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96777 }, { "analysis_explanation": null, "end": 96794, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96790 }, { "analysis_explanation": null, "end": 97048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97040 }, { "analysis_explanation": null, "end": 97082, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97065 }, { "analysis_explanation": null, "end": 97165, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97148 }, { "analysis_explanation": null, "end": 97377, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97360 }, { "analysis_explanation": null, "end": 97539, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97529 }, { "analysis_explanation": null, "end": 97564, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97554 }, { "analysis_explanation": null, "end": 97732, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97715 }, { "analysis_explanation": null, "end": 97859, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97849 }, { "analysis_explanation": null, "end": 98024, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98020 }, { "analysis_explanation": null, "end": 98790, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98773 }, { "analysis_explanation": null, "end": 99227, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99210 }, { "analysis_explanation": null, "end": 99401, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99384 }, { "analysis_explanation": null, "end": 99560, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99556 }, { "analysis_explanation": null, "end": 99606, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99599 }, { "analysis_explanation": null, "end": 99634, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99610 }, { "analysis_explanation": null, "end": 99747, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99721 }, { "analysis_explanation": null, "end": 99931, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99914 }, { "analysis_explanation": null, "end": 99959, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99944 }, { "analysis_explanation": null, "end": 100441, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100429 }, { "analysis_explanation": null, "end": 100625, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100608 }, { "analysis_explanation": null, "end": 100787, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100770 }, { "analysis_explanation": null, "end": 100998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100988 }, { "analysis_explanation": null, "end": 101478, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101468 }, { "analysis_explanation": null, "end": 101789, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101785 }, { "analysis_explanation": null, "end": 102071, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102067 }, { "analysis_explanation": null, "end": 102364, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102354 }, { "analysis_explanation": null, "end": 102451, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102441 }, { "analysis_explanation": null, "end": 102466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102457 }, { "analysis_explanation": null, "end": 102568, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102558 }, { "analysis_explanation": null, "end": 102741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102732 }, { "analysis_explanation": null, "end": 102757, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102751 }, { "analysis_explanation": null, "end": 102765, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102761 }, { "analysis_explanation": null, "end": 102775, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102771 }, { "analysis_explanation": null, "end": 102797, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102793 }, { "analysis_explanation": null, "end": 564, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 560 }, { "analysis_explanation": null, "end": 3723, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3716 }, { "analysis_explanation": null, "end": 7452, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 7448 }, { "analysis_explanation": null, "end": 8031, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8027 }, { "analysis_explanation": null, "end": 21632, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 21628 }, { "analysis_explanation": null, "end": 27615, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 27611 }, { "analysis_explanation": null, "end": 31742, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 31738 }, { "analysis_explanation": null, "end": 32021, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 32017 }, { "analysis_explanation": null, "end": 32496, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 32492 }, { "analysis_explanation": null, "end": 32520, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 32514 }, { "analysis_explanation": null, "end": 34192, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 34188 }, { "analysis_explanation": null, "end": 34304, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 34300 }, { "analysis_explanation": null, "end": 34324, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 34320 }, { "analysis_explanation": null, "end": 45757, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 45746 }, { "analysis_explanation": null, "end": 46438, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 46427 }, { "analysis_explanation": null, "end": 73772, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 73768 }, { "analysis_explanation": null, "end": 76260, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 76249 }, { "analysis_explanation": null, "end": 78201, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 78197 }, { "analysis_explanation": null, "end": 79991, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 79984 }, { "analysis_explanation": null, "end": 83617, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 83606 }, { "analysis_explanation": null, "end": 100985, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 100981 }, { "analysis_explanation": null, "end": 39665, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 39661 }, { "analysis_explanation": null, "end": 39447, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 39435 }, { "analysis_explanation": null, "end": 48184, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 48172 }, { "analysis_explanation": null, "end": 62648, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 62636 }, { "analysis_explanation": null, "end": 62866, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 62854 }, { "analysis_explanation": null, "end": 65457, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 65445 }, { "analysis_explanation": null, "end": 74163, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 74151 }, { "analysis_explanation": null, "end": 10012, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 10006 }, { "analysis_explanation": null, "end": 30010, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 30003 }, { "analysis_explanation": null, "end": 30190, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 30183 }, { "analysis_explanation": null, "end": 31439, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 31432 }, { "analysis_explanation": null, "end": 32310, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 32304 }, { "analysis_explanation": null, "end": 55171, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 55165 }, { "analysis_explanation": null, "end": 55722, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 55715 }, { "analysis_explanation": null, "end": 56210, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 56204 }, { "analysis_explanation": null, "end": 57165, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 57159 }, { "analysis_explanation": null, "end": 95382, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 95376 }, { "analysis_explanation": null, "end": 99616, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 99610 } ]
[ "NEW DELHI (Reuters) - India announced a new intellectual property policy on Friday, speeding up the online registration of patents and trademarks, but resisted pressure from the United States and other Western countries to amend its patent laws.", "\n\nPrime Minister Narendra Modi (R) listens to Finance Minister Arun Jaitley during the Global Business Summit in New Delhi January 16, 2015. ", "REUTERS/Anindito Mukherjee/Files\n\nThe policy will make the Department of Industrial Promotion and Policy the agency in charge of regulating intellectual property rights in the country.", "\n\nSince Prime Minister Narendra Modi took office in 2014, global drug brands led by U.S. companies have been pushing for changes to India’s intellectual property rules.", "\n\nIndia’s strained patent and intellectual property administration has failed to keep pace with growing technological advances. ", "Global pharmaceuticals players have often complained about India’s price controls and marketing restrictions.", "\n\n“We hope it will lead to an interpretation of the Indian Patent Act that respects innovation, encourages research and facilitates effective enforcement mechanisms,” said Ranjana Smetacek, Director General, Organisation of Pharmaceutical Producers of India, a body of multinational drugmakers in India.", "\n\nNirmala Sitharaman, commerce and industry minister, told lawmakers last month that over 237,000 applications were pending in India’s four patent offices.", "\n\nThe policy aims to spread awareness among public about trademarks, copyrights and patents to promote innovation within the country, Finance Minister Arun Jaitley told reporters.", "\n\nThe new policy will try to safeguard the interests of rights owners with the wider public interest, while combating infringements of intellectual property rights.", "\n\nJaitley said India would retain the right to issue so-called compulsory licenses to its drug firms, under “emergency” conditions, and would not immediately need to change patent laws that were already fully World Trade Organization-compliant.", "\n\n“Compulsory licences are already provided in our patent law. ", "That existing provision will continue,” Jaitley said after the cabinet approved national IPR policy on Thursday evening.", "\n\nLast month, the U.S. Trade Representative kept India, China and Russia on its \"Priority Watch List\" for inadequate improvement in IPR protection. (", "1.usa.gov/1SKEPgl)\n\nIndia, however, says, it is party to the Trade-Related Aspects of Intellectual Property Rights (TRIPS), a WTO agreement that sets minimum standards for intellectual property regulation.", "\n\n“It (IPR policy) reiterates India’s commitment to the Doha Development Agenda and the TRIPS agreement,” a government statement said." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.004081632653061225, 0.02127659574468085, 0.016304347826086956, 0.005952380952380952, 0, 0, 0.006600660066006601, 0.0064516129032258064, 0.00558659217877095, 0, 0.00819672131147541, 0, 0.016666666666666666, 0.013422818791946308, 0.00975609756097561, 0.014925373134328358 ]
0.008076
5
[ { "analysis_explanation": null, "end": 27, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22 }, { "analysis_explanation": null, "end": 82, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76 }, { "analysis_explanation": null, "end": 191, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174 }, { "analysis_explanation": null, "end": 209, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202 }, { "analysis_explanation": null, "end": 274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261 }, { "analysis_explanation": null, "end": 319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 312 }, { "analysis_explanation": null, "end": 366, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 357 }, { "analysis_explanation": null, "end": 383, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 367 }, { "analysis_explanation": null, "end": 417, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 393 }, { "analysis_explanation": null, "end": 604, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 591 }, { "analysis_explanation": null, "end": 624, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620 }, { "analysis_explanation": null, "end": 656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652 }, { "analysis_explanation": null, "end": 705, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 700 }, { "analysis_explanation": null, "end": 742, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 737 }, { "analysis_explanation": null, "end": 927, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 922 }, { "analysis_explanation": null, "end": 1159, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1143 }, { "analysis_explanation": null, "end": 1273, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1268 }, { "analysis_explanation": null, "end": 1293, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1275 }, { "analysis_explanation": null, "end": 1352, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1342 }, { "analysis_explanation": null, "end": 1405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1400 }, { "analysis_explanation": null, "end": 1590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1583 }, { "analysis_explanation": null, "end": 1777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1770 }, { "analysis_explanation": null, "end": 1788, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1783 }, { "analysis_explanation": null, "end": 2121, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2114 }, { "analysis_explanation": null, "end": 2185, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2177 }, { "analysis_explanation": null, "end": 2193, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2186 }, { "analysis_explanation": null, "end": 2205, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2195 }, { "analysis_explanation": null, "end": 2247, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2242 }, { "analysis_explanation": null, "end": 2254, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2249 }, { "analysis_explanation": null, "end": 2265, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2259 }, { "analysis_explanation": null, "end": 2368, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2363 }, { "analysis_explanation": null, "end": 2582, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2577 }, { "analysis_explanation": null, "end": 2360, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2343 } ]
[ "The Trumpian Fox has entered the Populist Henhouse, not so much by stealth but as a result of Middle America’s misinterpretation of what will make America great again. ", "Not having voted for either establishment party’s candidate, I write in amazed, almost amused bewilderment at what American voters have done to themselves. ", "A Reuters/Ipsos Election Day Survey of 10,000 voters revealed the extraordinary fury of the American populist movement. ", "Almost 72% agreed that “the American economy is rigged to the advantage of the rich and powerful.”", "\n\nCount me among them, yet in voting to deny Hillary Clinton the Henhouse, they “unwittingly” (lack of wit), let Donald Trump sneak in the side door. ", "His tenure will be a short four years but is likely to be a damaging one for jobless and low-wage American voters. ", "They were the force for Trump’s flipping the Midwest into a Republican Electoral College victory. ", "But while the Fox promised jobs and to make America great again, his policies of greater defense and infrastructure spending combined with lower corporate taxes to invigorate the private sector continue to favor capital versus labor, markets versus wages, and is a continuation of the status quo.", "\n\nFor example, Republican pleas for tax reform are centered around the argument that America has one of the highest corporate tax rates in the world at 35%. ", "Not so. ", "Of the S&P 500’s largest 50 corporations, the average tax rate (including state, local and foreign regulations) is 24%. ", "U.S. corporations rank among the world’s most lightly, as opposed to heavily, taxed. ", "Trump policies also appear to favor the repatriation of trillions of dollars of foreign profits at extremely low cost under the logic that the money will be spent for investment here in the U.S. Doubtful. ", "The last time such a “pardon” was put into law in 2004, no noticeable pickup in investment took place. ", "Of the $362 billion that earned a “tax holiday”, most went to dividends, corporate bonuses, and stock buybacks. ", "Apple or any other large U.S. corporation can borrow the money they need here in the U.S. at historically low interest rates to fund investment. ", "A few have, but over $500 billion annually in recent years has gone to the repurchase of corporate stock and the increase of earnings per share, instead of earnings and GDP growth. ", "Why would they need to repatriate anything for investment in the real economy?", "\n\nBut could a Clinton Administration have done much better? ", "Probably not. ", "Both the Clinton Democrats and almost all Republicans represent the corporate status quo that favors markets versus wages; Wall Street versus Main Street. ", "That’s why the American public and indeed global citizens will continually take a wrong turn in their efforts to neuter the establishment and to regain several decades’ lost momentum in real wages versus real profits. ", "Neither party as they now stand has bold policies beyond the reach of K Street Lobbyists. ", "To my mind, there are better solutions than either party’s election platform, such as a Keynesian/FDR job corps or a Kennedyesque AmeriCorps that puts people to work helping other people.", "\n\nSuch programs were never emphasized by either candidate. ", "Let’s supplement welfare with a patriotic “Help America” jobs program, even if government organized. ", "Would it be as efficient as a corporate-led effort? ", "Of course not, but corporations are fighting structural headwinds, such as demographic aging, technological displacement of jobs (robotization), deglobalization, and overleveraged balance sheets. ", "They focus on the bottom line as opposed to the public welfare. ", "Government must step in, not by reducing taxes, which will only increase profits at the expense of labor, but by being the employer of last resort in hopefully a productive way.", "\n\nPopulism is on the march and a Trump victory will do little to halt its advance in future decades. ", "If anything, it is demographically baked in the cake. ", "Investors, as The Economist astutely pointed out, face a possible no-win situation. ", "Unless the worker’s share of GDP reverses its downward trend, and capital’s share peaks, then populists worldwide will reject establishment parties in almost every future election – initiating in some cases growth-negative policies revolving around trade, immigration, and yes, in Trump’s case, lower taxation that may lower GDP growth, not raise it. ", "Global populism is the wave of the future, but it has taken a wrong turn in America. ", "Investors must drive with caution, understanding that higher deficits resulting from lower taxes raise interest rates and inflation, which in turn have the potential to produce lower earnings and P/E ratios. ", "There is no new Trump bull market in the offing. ", "Be satisfied with 3-5% globally diversified returns. ", "The Wall Street, finance-led hegemon is fading. ", "The Populist sunrise has barely broken the horizon.", "\n\nRecent votes in the U.S. and U.K. reveal nationalism is evolving into different forms.", "\n\nBy Jacob L. Shapiro\n\nWe take for granted today how remarkable the modern nation is. ", "Countries like the United States, the United Kingdom, France and Russia contain multitudes of different types of individuals, the vast majority of whom are relatively unaffected by foreign policy. ", "Hans Morgenthau pointed out that nationalism drives these disparate individuals to experience the power and policies of their nations as their own, and that aggressive nationalism is often a result of economic or political stress. ", "This is the great paradox of nationalism. ", "It supplanted tribalism, faith and monarchy as the organizing principle of the international order in the 19th and 20th centuries, and it is the glue that binds diverse groups of individuals together into states. ", "But it also means defining who isn’t a part of the nation, which can unbind both society and broader international institutions.", "Today, nationalism in certain urban areas comes from a different source than in suburban and rural areas. ", "The urban-rural split is not a novel discovery, but it has become more pronounced as a result of resurging nationalism. ", "For example, when people in the U.K. voted on whether to remain in the European Union, Wales and England voted to leave. ", "Scotland, Northern Ireland and the City of London voted to remain. ", "The result of the referendum in London is the most striking. ", "Scotland and Northern Ireland have been independent at various points in history, but London has been the capital of what is today England for almost a millennium. ", "Of all Londoners, 60 percent voted to remain in the EU, but the majority of English voters wanted to leave. ", "Some suggested (maybe jokingly) that, just as Scotland and Northern Ireland have done, London should explore whether it can remain within the EU and leave the rest of England behind.", "The results in the recent U.S. presidential election are even more striking. ", "Donald Trump is often described as a nationalist candidate and in many respects the label fits. ", "His slogan, “Make America Great Again,” to him meant getting rid of those who aren’t American (illegal immigrants) and instituting policies (repealing NAFTA, raising tariffs) that will be best for the American worker and not for the global economy. ", "Americans’ response to Trump’s campaign revealed a distinct urban-rural divide, with New York City being a particularly salient example. ", "Hillary Clinton won the five boroughs of New York City by an 81-19 percent margin. ", "Take the votes of the five boroughs away, and Clinton wouldn’t have even carried New York state. ", "It was not a coincidence that New York City became the epicenter of anti-Trump protests. ", "It was precisely because New Yorkers could not believe they lived in a country where Trump could win a presidential election.", "A supporter of Donald Trump holds up a \"Make America Great Again\" sign as he addresses supporters during a campaign stop at the International Exposition Center on Oct. 22, 2016 in Cleveland, Ohio. ", "Justin Merriman/Getty Images\n\nLondon and New York City are interesting case studies in how much cities can differ from the rest of the country. ", "In London, for example, the median average salary for a resident in 2015 was nearly double that of the rest of the U.K. – 48,023 pounds ($59,800) compared to 27,531 pounds. ", "This is in part because of a higher cost of living of course, but consider all the other ways in which London differs from neighboring counties. ", "According to a report by consulting firm McKinsey, London’s GDP grew 27 percent faster than that of the U.K. as a whole. ", "According to the U.K.’s last census in 2011, 37 percent of all London residents were not born in the United Kingdom. ", "For the rest of the U.K., that figure was only 9 percent. ", "London’s population is seven times bigger than any other British city and accounts for almost 15 percent of Britain’s total population.", "In New York City and the U.S., the divide is just as conspicuous. ", "According to the U.S. Census Bureau, the median income in the U.S. in 2014 was $51,939. ", "In Manhattan, a borough of New York City, it was $69,569 and in nearby Westchester county, where the Clintons have a home and which is much more a part of New York City than it is part of the rest of the state, it was $81,946. ", "New York City’s population is also disproportionately large, double the size of any other major U.S. city, and makes up roughly 40 percent of New York state.", "Compared to rural areas of the U.S., New York City is also markedly more diverse. ", "According to New York City’s Department of City Planning, in 2011, 37 percent of all New Yorkers were foreign born. ", "This is in stark contrast to a state like Iowa, which Barack Obama won in 2006 and 2012 but flipped to Trump in 2016. ", "A study published in 2014 by Iowa State University used data from three different time periods from over 99 Iowan towns to put together a composite image of the typical Iowan small town. ", "The population of this fictional town in 2013 was 1,977 people, 92 percent of whom were white.", "The needs of city dwellers have always differed from those who live in rural areas, just as the interests of people on the coast differ from those of people in the interior. ", "But along with nationalism and the urban-rural divide, there is a rise in connectivity between megacities, where residents increasingly have more in common with each other than with other citizens within their countries. ", "And because of advances in communication and technology, these city dwellers can freely communicate with and travel to visit their urban comrades in other countries more easily than at any other moment in human history. ", "They view the values of their fellow citizens – based in nationalism tied to the state partly because they are more isolated and more dependent on the state than the city dweller – as provincial. ", "At times, they prefer the values they share with people who live in cities – even if they are citizens of a different country.", "As Londoners joke that they want to remain in the EU even after Brexit and New Yorkers continue their protests outside Trump Tower with chants of “not my president,” they are expressing a kind of solidarity with each other. ", "This is not to say that London and New York City are about to secede from their respective countries and become independent city-states; the situation is not nearly so dire. ", "But cities are now developing their own form of nationalism around shared urban values, while nationalism based on the nation-state lives on in non-urban areas. ", "The average New Yorker doesn’t see how important and seductive Trump’s promise of restoring America’s greatness is to someone living in the Rust Belt or the rural South, where jobs are leaving, times are hard and on top of it all America seems weaker than ever. ", "The average Londoner doesn’t see how important the U.K.’s sovereignty is to the average British citizen, who might not care about passport-free travel because he can’t afford a holiday in Italy anyways.", "As a result, those who live in cities begin to feel as disconnected from the body politic as the body politic does from the political and financial elites. ", "And in cities, which are diverse and often home to many immigrants, nationalism is expressed not in full-throated pledges of allegiance to the state, but rather by a reversion to the other national identities they carry within them. ", "They feel less American, but more Jewish, Mexican, black, Dominican or whatever other identities are an important part of their individual lives. ", "They feel less British, but more Scottish, Irish, Ulster or even European, whatever that means to them. ", "Still others see themselves as part of a more global community, united more at times by a particular set of cherished values than by loyalty to their country, and take comfort in knowing that their worldviews are shared by those in other cities. ", "All of these reactions are also forms of nationalism, though many in the cities don’t realize it, as they think of nationalism as that visceral and at times even illiberal reaction that “others” have. ", "But there’s no way to escape nationalism in uncertain times such as these, and as nationalist sentiments increase, they will continue to bring people together and split them apart.", "\n\nFirst “Brexit,” then Trump.", "In just the last six months, the world has had two “black swan” events. ", "These are rare events that very few people see coming. ", "When these kinds of events happen, the market reaction can be dramatic.", "Consider Brexit…Heading into the year, most people thought Great Britain would stay in the European Union (EU). ", "When it voted to leave on June 23, investors from London to Tokyo were shocked. ", "A panic followed that knocked more than $3 trillion from the global stock market in two days.", "Last week, investors were caught off guard again.", "Most people thought Hillary would run away with the election. ", "When Trump pulled off the “unthinkable,” no one knew what to do.", "At first, U.S. stocks plunged. ", "That was supposed to happen if Trump won. ", "But they quickly changed course. ", "Over the last few days, U.S. stocks have broken out to record highs.", "\n\n• To be fair, neither of these events was impossible to predict…\n\nCasey Research founder Doug Casey actually predicted that Trump would win months ago. ", "He even made a couple side bets on the outcome.", "We don’t bring this up to brag about Doug’s “guru sense.", "”We’re telling you this because it shows that you can predict events most people can't ever anticipate. ", "And if you’re right, you can make a lot of money.", "\n\n• Less than three weeks from now, we think another \"black swan\" event will take place…\n\nIf this event goes the way we expect, millions of people could see their life savings go up in smoke. ", "The world’s biggest economy could start to unravel.", "You might find this hard to believe. ", "But as you’re about to see, we aren’t the only ones worried about this.", "The good news is that you don’t have to be a victim. ", "Today, we’ll show you how to turn this coming crisis into big returns.", "But before we get to that, you need to understand something…\n\n• Brexit and Trump’s surprise victory had more in common than most people think…\n\nYou see, working-class people in England and the United States are fed up right now. ", "They feel like the system is “rigged”…that “the establishment” doesn’t care about them.", "That’s why both countries voted for radical change. ", "Even President Obama admits this. ", "Bloomberg Politics reported on Tuesday:President Barack Obama said that fear of globalization and suspicion of government institutions and elites powered both the U.K.’s vote to exit the European Union and Donald Trump’s election as the next U.S. president.", "“Did I recognize there was anger and frustration in the American population? ", "Of course I did,” Obama said in answer to a question about whether he saw parallels between Trump’s election and Brexit.", "\n\n• To their credit, the American people have plenty of reasons to be frustrated…\n\nAfter all, the economy has grown at an annualized rate of just 2.1% since 2009. ", "This makes the current “recovery” the slowest since World War II.What’s worse, the real median household income has fallen from $57,795 in 2007 to $55,218 today. ", "In other words, millions of Americans are now worse off than they were before the last financial crisis.", "Meanwhile, the S&P 500 has more than tripled in value over the same period.", "This disconnect between the stock market and the “real” economy is why so many people think “the system” isn’t working. ", "And it’s why a lot of people voted for Trump.", "Trump’s an outsider. ", "He’s never held public office. ", "He says whatever the hell he wants. ", "And he’s promised to shake things up.", "\n\n• But Americans aren’t the only people hungry for radical change…\n\nItalians are just as fed up with their government.", "Nick Giambruno, editor of Crisis Investing, says they have every reason to feel this way. ", "Nick wrote in the August issue:Italy has had no productive growth since 1999. ", "Real GDP per person is smaller than it was at the turn of the century.", "That’s almost two decades of economic stagnation. ", "By any measure, the Italian economy is in a deep depression. ", "And there’s no end in sight. ", "In fact, things will probably get much worse.", "\n\n• Italians are now in a revolutionary mood…\n\nThis mood has given rise to a populist, anti-establishment political group known as the Five Star Movement (M5S).According to Nick, M5S wants Italy to hit the reset button. ", "He wrote last month:M5S blames Italy’s chronic lack of growth on the euro currency. ", "A large plurality of Italians agrees.", "M5S has promised to hold a vote to leave the euro and reinstate Italy’s old currency, the lira, as soon as it’s in power. ", "And that could be very soon.", "Of course, M5S will have to assume power before Italy can drop the euro. ", "But that could happen as soon as next month.", "\n\n• Italy will hold a constitutional referendum vote on December 4…\n\nNick explained what this upcoming vote could mean for Italy’s future:In effect, a “Yes” vote is a vote of approval for Renzi’s government.", "A “No” vote is a chance for the average Italian to give the finger to EU bureaucrats in Brussels.", "Given the intense anger Italians feel right now, it’s very likely they’ll do just that.", "According to the latest polls, most Italians plan to vote “No.” ", "If this happens, Renzi, Italy’s current prime minister, has promised to step down. ", "That would make it much easier for M5S to rise to power.", "\n\n• Even if Renzi breaks his promise, Italy could still have serious problems…\n\nThe Wall Street Journal reported yesterday:A defeat for Mr. Renzi would lead to a period of political instability. ", "Mr. Renzi could follow through on a pledge to resign or be forced into a new coalition until elections are held in 2018. ", "Either way, markets would interpret his defeat as proof that Rome is incapable of reform, raising doubts about Italy’s ability ever to deliver the kind of growth needed to put its debt burden of 135% of gross domestic product on a sustainable footing.", "The Journal went on:That in turn would make investors even more reluctant to put capital into the Italian banking system, forcing banks to impose losses on bondholders, many of whom are ordinary savers. ", "That would create a spectacular political backlash that could bring the deeply euroskeptic, antiestablishment 5 Star Movement to power in 2018, putting Italy’s euro membership in doubt.", "\n\n• You might not think this is anything to worry about if you live outside of Europe…\n\nBut the Italian referendum (or \"Quitaly,\" as some are calling it) could do far more damage than Brexit.", "You see, unlike the U.K., Italy actually uses the euro. ", "If it leaves the EU, Europeans could lose “faith” in the euro…and that’s all a paper currency like the euro has.", "Also, you have to remember that Brexit caused stocks around the world to crash. ", "If Italy leaves the euro, the same thing could happen…but the downturn could be much more violent. ", "Nick wrote in August:The bottom line is this: the entire EU project may very well die in Italy later this year. ", "That would undoubtedly trigger a stock market crash of historical proportions. ", "And that’s why I think it’s very important to keep a close eye on the Achilles’ heel of the EU… Italy.", "The Financial Times recently issued a similar warning:An Italian exit from the single currency would trigger the total collapse of the eurozone within a very short period.", "It would probably lead to the most violent economic shock in history, dwarfing the Lehman Brothers bankruptcy in 2008 and the 1929 Wall Street crash.", "Even if the Financial Times is only half right, we could be looking at a stock market crash of historic proportions.", "\n\n• But Nick didn’t just warn his readers about this looming crisis… He told them how to profit from it...\n\nIn August, Nick recommended that his readers short the euro. ", "Shorting is when you bet that a stock, bond, or currency will fall. ", "If it does, you make money.", "A lot of people think shorting is something only the \"pros” do. ", "But Nick found a way to short the euro that’s as easy as buying a share of McDonald’s (MCD).In just three months, Nick’s readers are up 12% on this trade. ", "But they could see much bigger gains if Nick’s right about the upcoming Italian referendum vote.", "And remember, this vote will take place less than three weeks from now.", "\n\nChart of the Day\n\nItaly’s bond market is screaming \"danger.", "\"Today’s chart shows the yield for the Italian 10-year government bond since July 2015. ", "Remember, a bond's yield rises as its price falls.", "As you can see, the yield for the Italian 10-year government bond hit an all-time low of 1.04% in early August. ", "Since then, it’s surged to 2.12%. ", "Put another way, it's more than doubled in only three months.", "This is a serious red flag. ", "It tells us investors are very nervous about Italy. ", "And they have every reason to be. ", "If Italy’s upcoming referendum goes the way we expect, Italy’s bond market could implode. ", "And that could mark the beginning of the end for the euro.", "Nick’s so convinced this will happen that he sent an alert to his readers on Tuesday telling them to short Italian bonds. ", "In other words, he doubled down on his bet against Italy.", "\n\nThe ‘demon’ in demonetization is in the beginning. ", "On November 8, Indian Prime Minister Narendra Modi announced in a broadcast to the nation that Rs500 ($7.40) and Rs1,000 currency notes would no longer be recognized legally as currency. “", "Great,” said Corporate India, economic commentators, foreign investors, international think tanks and global rating agencies. “", "Masterstroke,” echoed the Confederation of Indian Industry (CII).The aim behind the government’s action was to combat tax cheating, counterfeiting and corruption. ", "Eliminating large denominations makes it harder to hide large amounts of cash. ", "Modi noted that the move complements the country’s swachh bharat abhiyan (Clean India campaign). “", "For years, this country has felt that corruption, black money and terrorism are festering sores, holding us back in the race towards development,” he said. “", "To break the grip of corruption and black money, we have decided that the currency notes presently in use will no longer be legal tender from midnight tonight.", "”Added Finance Minister Arun Jaitley: “The goal of this is to clean transactions, [to] clean money.", "”“This announcement appears to be the most significant change made by the Modi government to date,” says Girish Vanvari, partner and head (tax), KPMG in India. “", "Its impact could be even bigger than GST (the Goods and Services Tax which is still running the gauntlet of politicians).” ", "Adds a report by Crisil, a global S&P company: “Tuesday’s move could change the face of the Indian economy, improve the government’s fiscal position and tax compliance. ", "The size of the cash economy will shrink, as will black money generation avenues, because of the better cash-flow trail.”", "\n\nThat was Tuesday. ", "By Wednesday, the picture on the streets had begun changing somewhat: The demon started surfacing. ", "India is a cash economy; almost everyone keeps a few Rs500 notes as a nest egg. ", "Lines began forming in front of ATMs and banks which could exchange old notes for new. ", "A mere exchange — a new Rs500 for an old Rs500 — was not enough; there was also a limit imposed on how much one could exchange or withdraw from their accounts. ", "In some cases, there were altercations as people waited for hours. ", "Gas pumps and hospitals (which were allowed to accept old notes) saw a boom in business. ", "People also wanted smaller currency notes to serve their daily needs. ", "A loaf of bread costs Rs25. ", "No shopkeeper would give change for Rs500.The need for the government to keep the move a secret — so that tax evaders wouldn’t be alerted before the demonetization took place — affected preparedness. ", "Jaitley admits it will take two-three weeks to reconfigure the ATMs to handle the newer and larger notes. ", "A Rs2,000 note has also been introduced. ", "Modi has suggested it will take 50 days (until the end of 2016) for people to adjust to the change.", "Meanwhile, expensive marriages were called off. ", "Deaths cannot be called off so easily — but the government catered to that by allowing payment at crematoria in old currency.", "\n\nA Bold Move\n\n“This [demonetization] is a step which will make a positive difference, if the transition challenges get handled well by the administration,” says Jitendra V. Singh, Wharton emeritus professor of management. “", "We will need to be careful of potential attempts to derail this positive agenda.” ", "The International Monetary Fund (IMF) echoes those sentiments. “", "We support the measures to fight corruption and illicit financial flows in India,” said a spokesperson. “", "Of course, given the large role of cash in everyday transactions in India’s economy, the currency transition will have to be managed prudently to minimize possible disruption.", "”According to Mauro F. Guillen, a Wharton management professor and director of the School’s Lauder Institute, “In the short term, [the move] could stifle some businesses that are legal and clean, if they use cash payments. ", "But everyone will adjust. ", "And while it can hurt some small businesses and individuals, it is better to do it than not.”", "\n\nGuillen adds that large-value currency is an “important source of problems” such as corruption, black money, terrorism and counterfeit money. “", "The eurozone will be eliminating the largest euro note. ", "The U.S. is also trying to reduce the [number of] 100 dollar bills in circulation.", "”The role of cash and high-value bank notes in the Indian economy cannot be understated. ", "According to Reserve Bank of India (RBI) figures, as of March 2016 currency in circulation amounted to Rs16,415 billion. ", "Of this, Rs500 notes accounted for 47.8% in value and Rs1,000 notes another 38.6%. ", "Together, they were more than 86% of the value of the notes in circulation. ", "That’s a whopping amount to be frozen in one fell swoop.", "Understandably, banks and ATMs can do only so much. ", "There’s a lot of tinkering to be done with limits and schedules of the exchange outlets and bodies authorized to take payments in old bills — state-owned electricity suppliers, for instance. ", "To the credit of the government, this is being done on a continuous basis. ", "But there are questions — especially from political parties — over their effectiveness.", "\n\nWill It Work?", "\n\nThere are also questions over whether the “masterstroke” is masterful enough. “", "Black money is not synonymous with corruption; it is rather one of several symptoms of corruption,” notes Rajesh Chakrabarti, professor and executive vice dean of the Jindal Global Business School at Jindal Global University. ", "Pointing out that only a small percentage (by some estimates as low as less than 6%) of the unaccounted wealth is held in cash, Chakrabarti says: “This intervention is a one-time draining of this current stock of black money but unless the root causes of corruption are removed, corruption will continue. ", "It is sort of like a dialysis, more of a short term cleaning up than a solution of the problem. ", "It needs to be repeated periodically.", "”The Indian reality, adds Chakrabarti, is that many trades and areas are still cash-based and “cannot be digitized just by willing it.” ", "He cautions that the “resulting disruption in the real economy stemming from this move is very significant and potentially fatal” for some vulnerable sections of society. “", "If some of the key areas are hampered, there is risk of mob violence and rioting. ", "Since the entire country is at risk, there is no way of anticipating and preparing for this, either. ", "So there is a risk of the situation getting out of hand as well.", "”“There are serious negative externalities that have been created over time,” says Wharton’s Singh. “", "The black money parallel economy, for which no reliable size estimates are easily available, has become an increasingly serious problem over the years. ", "This poses not only all manner of macroeconomic management challenges, it creates distortions in the economy.", "”Singh offers a hypothetical example. “", "Imagine that I own some land in Bangalore. ", "I want to sell the land, and I have no interest in short-circuiting the law. ", "I want to pay all my taxes in India and elsewhere. ", "However, I am told that the common practice is that some significant percentage of such a transaction will involve black money, maybe as much as 40%. ", "If I want an all-white transaction, the selling price will be much lower. ", "Imagine my dismay at learning this. ", "The point is that the retrograde practices that have emerged with the black economy force innocent, honest people into considering illegal actions, because that has become the norm over time.", "”There are many benefits that will come with the government’s move, Singh notes. “", "The size of the formal economy which the government can manage though its policy actions will increase, perhaps significantly. ", "This step may have positive implications for tax revenues longer term. ", "There may even be influences on the growth rate of GDP. ", "However, for sectors like real estate, a notorious hotbed for black money transactions, there will likely be disinflationary pressures short term, with prices being pushed downward before they stabilize longer term.” ", "Real estate shares have plunged, in some cases by more than 30%.But the stock market may be the wrong place to look for signs of how the demonetization move has been received, because it coincided with Donald Trump’s victory in the U.S. presidential election. (“", "America counts votes as India counts notes,” headlined The Times of India.) ", "That was a global dampener. ", "The Bombay Stock Exchange Sensitive Index (Sensex) fell 1,000 points on Wednesday morning before ending up just 250 points down. ", "The next day saw a 500 point rally followed by a 700-point plunge. ", "The first two trading days of the next week saw another 1,000-point (nearly 4%) fall.", "While most people are short-term pessimists but pin their faith on the long term, there are those who are skeptical of that aspect, too. “", "The cancellation of high-denomination notes is not expected to curtail black money or the black economy in the long run,” says Dev Kar, chief economist at Global Financial Integrity, a Washington-based think tank advocacy group. ", "Kar is the author of a report titled “The Drivers and Dynamics of Illicit Financial Flows from India: 1948-2008.” ", "The report estimates India lost a total of $213 billion due to illicit flows in that period. “", "The total value of illicit assets held abroad represents about 72% of the size of India’s underground economy which has been estimated at 50% of India’s GDP (or about $640 billion at end 2008),” says the report.", "“Demonetization will place a temporary brake on illegal transactions in cash until operators figure out alternative ways of financing such transactions,” continues Kar. “", "The U.S. dollar and pound sterling obtained from the local black markets is one such way. ", "This shift will drive up the dollar in the black market and increase the spread with the official rate, which will in turn put pressure on the official rate to depreciate.", "\n\nFinally, the fact that the government has already announced Rs2,000 notes is a tacit admission that people need higher denomination notes in the future due to inflation. ", "Expected inflation is running high due to India’s monetary and fiscal history. ", "Small notes will rapidly lose further value so that essential goods cannot be purchased with a reasonable quantity. ", "Governance needs to be improved in all its dimensions. ", "Cosmetics will not cut it.”", "\n\nSingh has some reservations, too. “", "It will not be enough just to do this [demonetization],” he says. “", "It has to be matched with a better, more streamlined and integrated tax system. ", "The upcoming move to GST is a measure in the right direction, and the government needs to move forward with implementing the next steps of that reform measure.", "”But, nonetheless, he sees the move as positive. “", "It is remarkable that PM Modi has taken this bold step. ", "Clearly, there will be howls of protest from some. ", "A simple analysis can be done by asking ‘cui bono’, which is Latin for ‘who benefits’ from the status quo. ", "Just who has the stacks of Rs500 and Rs1,000 bills and cannot account for them? ", "Those parties will not be happy with this step. ", "But for the ordinary Indian, while there may be some discomfort during the transition, this will be fine in the longer term.", "”Meanwhile, a group of prominent citizens including social activist Aruna Roy, economist Jayati Ghosh and writer Nayantara Sahgal have called the decision to demonetize Rs500 and Rs1,000 notes as “misconceived” and have demanded for it to be rolled back or suspended if the inconvenience to the public is not resolved immediately. ", "In a joint statement questioning various aspects of the demonetization move, they have said: “Black money is generated through evasion of taxes on income from lawful activities and money generated from illegal activities. ", "In the absence of steps to curb the generation of black money, demonetization is a futile exercise, as it proved to be in 1978.”The Supreme Court of India, while refusing to stay the demonetization move, has asked the Modi government to file an affidavit detailing the steps being taken to ease the inconvenience to the general public.", "\n\nWork in Progress\n\nFor Modi, this is work in progress. ", "In his speech to the nation, he outlined what his government has done so far. ", "A law was passed in 2015 for disclosure of foreign black money. ", "Agreements with many countries, including the U.S., have been made to add provisions for sharing banking information. ", "A strict law has come into force from August 2016 to curb benami transactions, or the purchase of property and deals using fictitious names — a way of deploying black money earned through corruption. ", "A scheme was introduced for declaring black money after paying a stiff penalty. ", "And arching over it all was the Prime Minister’s Jan Dhan Yojana, which aimed at financial inclusion for the whole country. ", "Launched in August 2014, it has managed to add 250 million bank accounts through November 2016. ", "Demonetization, then, was inevitable; the only surprise being when.", "\n\nIf you know the other and know yourself, you need not fear the result of a hundred battles.", "\n\nSun Tzu\n\nWe are travelers on a cosmic journey, stardust, swirling and dancing in the eddies and whirlpools of infinity. ", "Life is eternal. ", "We have stopped for a moment to encounter each other, to meet, to love, to share.", "This is a precious moment. ", "It is a little parenthesis in eternity." ]
{ "pile_set_name": "Pile-CC" }
[ 0.011904761904761904, 0, 0.008333333333333333, 0, 0.02, 0, 0.02040816326530612, 0.0033783783783783786, 0, 0, 0, 0, 0, 0, 0, 0.006896551724137931, 0, 0, 0.016666666666666666, 0, 0.0064516129032258064, 0, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0.009900990099009901, 0, 0, 0.002849002849002849, 0, 0, 0.02040816326530612, 0, 0, 0, 0, 0.011627906976744186, 0, 0.004329004329004329, 0, 0, 0, 0, 0, 0.008264462809917356, 0, 0, 0, 0.009259259259259259, 0.005494505494505495, 0, 0.010416666666666666, 0, 0.0072992700729927005, 0.012048192771084338, 0.010309278350515464, 0, 0.008, 0.01015228426395939, 0.006944444444444444, 0, 0, 0, 0, 0, 0, 0, 0.011363636363636364, 0.00881057268722467, 0, 0, 0.008620689655172414, 0.01694915254237288, 0.0053475935828877, 0, 0, 0, 0, 0, 0, 0.013392857142857142, 0, 0, 0.007633587786259542, 0.0049504950495049506, 0, 0, 0, 0.009615384615384616, 0, 0, 0, 0.06896551724137931, 0, 0, 0, 0.026785714285714284, 0, 0, 0, 0.016129032258064516, 0.015625, 0, 0.023809523809523808, 0, 0, 0.01948051948051948, 0, 0.017857142857142856, 0, 0, 0, 0, 0, 0, 0, 0, 0.004366812227074236, 0, 0, 0.029411764705882353, 0.011673151750972763, 0, 0.025, 0, 0, 0, 0, 0, 0.022222222222222223, 0.047619047619047616, 0, 0, 0, 0, 0.022222222222222223, 0.01282051282051282, 0, 0, 0, 0, 0, 0.00909090909090909, 0, 0, 0.00819672131147541, 0, 0.0136986301369863, 0, 0.00966183574879227, 0.010309278350515464, 0, 0, 0, 0, 0.010256410256410256, 0.008264462809917356, 0, 0.0049261083743842365, 0, 0.005235602094240838, 0, 0.008928571428571428, 0.0125, 0, 0.017857142857142856, 0, 0.0196078431372549, 0.005847953216374269, 0.006711409395973154, 0.008620689655172414, 0.005917159763313609, 0, 0, 0, 0.01935483870967742, 0.010416666666666666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00819672131147541, 0, 0, 0.005319148936170213, 0.007874015748031496, 0.006134969325153374, 0, 0.01020408163265306, 0, 0, 0.010101010101010102, 0.012422360248447204, 0.008130081300813009, 0.011834319526627219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009433962264150943, 0, 0, 0, 0, 0.008928571428571428, 0, 0.015625, 0, 0, 0.013452914798206279, 0, 0, 0, 0, 0, 0, 0.01652892561983471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008849557522123894, 0.003278688524590164, 0, 0, 0.007352941176470588, 0, 0, 0, 0, 0.009900990099009901, 0, 0, 0, 0.023255813953488372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003816793893129771, 0.013157894736842105, 0, 0.015503875968992248, 0, 0, 0, 0.008733624454148471, 0.008771929824561403, 0, 0, 0.0058823529411764705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006289308176100629, 0, 0, 0, 0, 0, 0, 0, 0.00906344410876133, 0, 0.0029850746268656717, 0, 0, 0, 0, 0, 0, 0.008064516129032258, 0, 0, 0, 0.00819672131147541, 0, 0, 0, 0 ]
0.003686
5
[ { "analysis_explanation": null, "end": 108, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94 }, { "analysis_explanation": null, "end": 154, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147 }, { "analysis_explanation": null, "end": 291, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283 }, { "analysis_explanation": null, "end": 352, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340 }, { "analysis_explanation": null, "end": 424, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 416 }, { "analysis_explanation": null, "end": 480, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 472 }, { "analysis_explanation": null, "end": 601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586 }, { "analysis_explanation": null, "end": 666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 654 }, { "analysis_explanation": null, "end": 728, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 718 }, { "analysis_explanation": null, "end": 797, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 789 }, { "analysis_explanation": null, "end": 835, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 830 }, { "analysis_explanation": null, "end": 858, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 851 }, { "analysis_explanation": null, "end": 955, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 948 }, { "analysis_explanation": null, "end": 1224, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1214 }, { "analysis_explanation": null, "end": 1291, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1284 }, { "analysis_explanation": null, "end": 1488, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1484 }, { "analysis_explanation": null, "end": 1763, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1759 }, { "analysis_explanation": null, "end": 1828, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1824 }, { "analysis_explanation": null, "end": 2018, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2014 }, { "analysis_explanation": null, "end": 2078, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2074 }, { "analysis_explanation": null, "end": 2176, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2168 }, { "analysis_explanation": null, "end": 2192, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2180 }, { "analysis_explanation": null, "end": 2482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2475 }, { "analysis_explanation": null, "end": 2492, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2483 }, { "analysis_explanation": null, "end": 2519, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2508 }, { "analysis_explanation": null, "end": 2644, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2636 }, { "analysis_explanation": null, "end": 2789, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2773 }, { "analysis_explanation": null, "end": 3030, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3027 }, { "analysis_explanation": null, "end": 3801, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3796 }, { "analysis_explanation": null, "end": 3862, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3848 }, { "analysis_explanation": null, "end": 4288, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4283 }, { "analysis_explanation": null, "end": 4436, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4429 }, { "analysis_explanation": null, "end": 4667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4662 }, { "analysis_explanation": null, "end": 4872, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4868 }, { "analysis_explanation": null, "end": 4881, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4877 }, { "analysis_explanation": null, "end": 4954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4938 }, { "analysis_explanation": null, "end": 4981, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4976 }, { "analysis_explanation": null, "end": 5051, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5034 }, { "analysis_explanation": null, "end": 5071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5053 }, { "analysis_explanation": null, "end": 5079, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5073 }, { "analysis_explanation": null, "end": 5090, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5084 }, { "analysis_explanation": null, "end": 5231, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5216 }, { "analysis_explanation": null, "end": 5618, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5591 }, { "analysis_explanation": null, "end": 5836, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5831 }, { "analysis_explanation": null, "end": 6093, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6089 }, { "analysis_explanation": null, "end": 6149, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6144 }, { "analysis_explanation": null, "end": 6161, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6154 }, { "analysis_explanation": null, "end": 6186, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6178 }, { "analysis_explanation": null, "end": 6204, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6188 }, { "analysis_explanation": null, "end": 6227, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6209 }, { "analysis_explanation": null, "end": 6283, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6277 }, { "analysis_explanation": null, "end": 6314, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6306 }, { "analysis_explanation": null, "end": 6335, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6319 }, { "analysis_explanation": null, "end": 6398, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6392 }, { "analysis_explanation": null, "end": 6436, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6431 }, { "analysis_explanation": null, "end": 6444, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6437 }, { "analysis_explanation": null, "end": 6486, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6477 }, { "analysis_explanation": null, "end": 6553, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6546 }, { "analysis_explanation": null, "end": 6632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6624 }, { "analysis_explanation": null, "end": 6653, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6637 }, { "analysis_explanation": null, "end": 6671, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6665 }, { "analysis_explanation": null, "end": 6752, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6745 }, { "analysis_explanation": null, "end": 6791, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6787 }, { "analysis_explanation": null, "end": 6850, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6838 }, { "analysis_explanation": null, "end": 7027, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7019 }, { "analysis_explanation": null, "end": 7143, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7135 }, { "analysis_explanation": null, "end": 7192, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7183 }, { "analysis_explanation": null, "end": 7211, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7206 }, { "analysis_explanation": null, "end": 7281, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7268 }, { "analysis_explanation": null, "end": 7335, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7320 }, { "analysis_explanation": null, "end": 7374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7361 }, { "analysis_explanation": null, "end": 7456, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7449 }, { "analysis_explanation": null, "end": 7492, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7484 }, { "analysis_explanation": null, "end": 7543, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7530 }, { "analysis_explanation": null, "end": 7625, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7614 }, { "analysis_explanation": null, "end": 7679, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7674 }, { "analysis_explanation": null, "end": 7742, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7730 }, { "analysis_explanation": null, "end": 7891, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7878 }, { "analysis_explanation": null, "end": 7904, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7895 }, { "analysis_explanation": null, "end": 7910, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7906 }, { "analysis_explanation": null, "end": 7948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7912 }, { "analysis_explanation": null, "end": 7966, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7953 }, { "analysis_explanation": null, "end": 8065, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8059 }, { "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": 8175, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8171 }, { "analysis_explanation": null, "end": 8338, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8332 }, { "analysis_explanation": null, "end": 8431, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8425 }, { "analysis_explanation": null, "end": 8482, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8478 }, { "analysis_explanation": null, "end": 8516, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8512 }, { "analysis_explanation": null, "end": 8538, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8534 }, { "analysis_explanation": null, "end": 8564, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8558 }, { "analysis_explanation": null, "end": 8610, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8592 }, { "analysis_explanation": null, "end": 8636, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8632 }, { "analysis_explanation": null, "end": 8676, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8670 }, { "analysis_explanation": null, "end": 8734, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8727 }, { "analysis_explanation": null, "end": 8785, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8778 }, { "analysis_explanation": null, "end": 8822, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8809 }, { "analysis_explanation": null, "end": 8835, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8831 }, { "analysis_explanation": null, "end": 8938, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8934 }, { "analysis_explanation": null, "end": 8946, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8942 }, { "analysis_explanation": null, "end": 8972, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8963 }, { "analysis_explanation": null, "end": 9000, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8987 }, { "analysis_explanation": null, "end": 9049, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9031 }, { "analysis_explanation": null, "end": 9069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9061 }, { "analysis_explanation": null, "end": 9128, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9115 }, { "analysis_explanation": null, "end": 9202, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9187 }, { "analysis_explanation": null, "end": 9287, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9283 }, { "analysis_explanation": null, "end": 9337, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9329 }, { "analysis_explanation": null, "end": 9380, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9376 }, { "analysis_explanation": null, "end": 9395, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9382 }, { "analysis_explanation": null, "end": 9455, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9440 }, { "analysis_explanation": null, "end": 9492, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9488 }, { "analysis_explanation": null, "end": 9523, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9512 }, { "analysis_explanation": null, "end": 9589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9585 }, { "analysis_explanation": null, "end": 9609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9597 }, { "analysis_explanation": null, "end": 9621, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9617 }, { "analysis_explanation": null, "end": 9630, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9626 }, { "analysis_explanation": null, "end": 9651, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9646 }, { "analysis_explanation": null, "end": 9659, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9655 }, { "analysis_explanation": null, "end": 9686, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9682 }, { "analysis_explanation": null, "end": 9774, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9769 }, { "analysis_explanation": null, "end": 9835, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9830 }, { "analysis_explanation": null, "end": 9893, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9889 }, { "analysis_explanation": null, "end": 10893, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10884 }, { "analysis_explanation": null, "end": 10967, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10956 }, { "analysis_explanation": null, "end": 11135, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11129 }, { "analysis_explanation": null, "end": 11153, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11140 }, { "analysis_explanation": null, "end": 11462, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11452 }, { "analysis_explanation": null, "end": 11508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11503 }, { "analysis_explanation": null, "end": 11539, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11532 }, { "analysis_explanation": null, "end": 11589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11576 }, { "analysis_explanation": null, "end": 11608, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11603 }, { "analysis_explanation": null, "end": 11677, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11670 }, { "analysis_explanation": null, "end": 11757, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11753 }, { "analysis_explanation": null, "end": 11797, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11790 }, { "analysis_explanation": null, "end": 11895, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11890 }, { "analysis_explanation": null, "end": 12317, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12309 }, { "analysis_explanation": null, "end": 12334, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12328 }, { "analysis_explanation": null, "end": 12343, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12336 }, { "analysis_explanation": null, "end": 12361, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12352 }, { "analysis_explanation": null, "end": 12462, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12455 }, { "analysis_explanation": null, "end": 12481, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12473 }, { "analysis_explanation": null, "end": 12488, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12483 }, { "analysis_explanation": null, "end": 12496, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12490 }, { "analysis_explanation": null, "end": 12513, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12505 }, { "analysis_explanation": null, "end": 13198, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13193 }, { "analysis_explanation": null, "end": 13227, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13203 }, { "analysis_explanation": null, "end": 13436, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13428 }, { "analysis_explanation": null, "end": 13471, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13458 }, { "analysis_explanation": null, "end": 13544, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13537 }, { "analysis_explanation": null, "end": 13567, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13561 }, { "analysis_explanation": null, "end": 13576, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13571 }, { "analysis_explanation": null, "end": 13683, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13675 }, { "analysis_explanation": null, "end": 13694, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13685 }, { "analysis_explanation": null, "end": 13762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13755 }, { "analysis_explanation": null, "end": 13807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13802 }, { "analysis_explanation": null, "end": 13876, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13872 }, { "analysis_explanation": null, "end": 13929, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13924 }, { "analysis_explanation": null, "end": 13990, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13973 }, { "analysis_explanation": null, "end": 13996, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13992 }, { "analysis_explanation": null, "end": 14136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14126 }, { "analysis_explanation": null, "end": 14166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14161 }, { "analysis_explanation": null, "end": 14187, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14177 }, { "analysis_explanation": null, "end": 14278, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14274 }, { "analysis_explanation": null, "end": 14480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14450 }, { "analysis_explanation": null, "end": 14857, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14852 }, { "analysis_explanation": null, "end": 15003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14998 }, { "analysis_explanation": null, "end": 15107, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15100 }, { "analysis_explanation": null, "end": 15129, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15112 }, { "analysis_explanation": null, "end": 15312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15307 }, { "analysis_explanation": null, "end": 15364, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15357 }, { "analysis_explanation": null, "end": 15387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15375 }, { "analysis_explanation": null, "end": 15493, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15489 }, { "analysis_explanation": null, "end": 15546, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15532 }, { "analysis_explanation": null, "end": 15572, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15568 }, { "analysis_explanation": null, "end": 15648, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15640 }, { "analysis_explanation": null, "end": 15684, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15679 }, { "analysis_explanation": null, "end": 15758, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15753 }, { "analysis_explanation": null, "end": 15813, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15805 }, { "analysis_explanation": null, "end": 15941, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15937 }, { "analysis_explanation": null, "end": 16086, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16082 }, { "analysis_explanation": null, "end": 16103, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16098 }, { "analysis_explanation": null, "end": 16142, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16133 }, { "analysis_explanation": null, "end": 16284, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16269 }, { "analysis_explanation": null, "end": 16450, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16445 }, { "analysis_explanation": null, "end": 16457, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16452 }, { "analysis_explanation": null, "end": 16593, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16584 }, { "analysis_explanation": null, "end": 16653, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16642 }, { "analysis_explanation": null, "end": 16710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16696 }, { "analysis_explanation": null, "end": 16790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16786 }, { "analysis_explanation": null, "end": 16810, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16804 }, { "analysis_explanation": null, "end": 16822, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16817 }, { "analysis_explanation": null, "end": 16862, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16858 }, { "analysis_explanation": null, "end": 16933, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16910 }, { "analysis_explanation": null, "end": 16960, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16942 }, { "analysis_explanation": null, "end": 17012, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17005 }, { "analysis_explanation": null, "end": 17131, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17123 }, { "analysis_explanation": null, "end": 17296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17292 }, { "analysis_explanation": null, "end": 17301, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17298 }, { "analysis_explanation": null, "end": 17313, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17308 }, { "analysis_explanation": null, "end": 17358, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17348 }, { "analysis_explanation": null, "end": 17375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17370 }, { "analysis_explanation": null, "end": 17452, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17444 }, { "analysis_explanation": null, "end": 17464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17461 }, { "analysis_explanation": null, "end": 17530, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17525 }, { "analysis_explanation": null, "end": 17626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17623 }, { "analysis_explanation": null, "end": 17665, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17660 }, { "analysis_explanation": null, "end": 17728, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17718 }, { "analysis_explanation": null, "end": 17794, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17784 }, { "analysis_explanation": null, "end": 17856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17851 }, { "analysis_explanation": null, "end": 17921, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17916 }, { "analysis_explanation": null, "end": 17983, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17976 }, { "analysis_explanation": null, "end": 18032, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18024 }, { "analysis_explanation": null, "end": 18066, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18058 }, { "analysis_explanation": null, "end": 18166, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18158 }, { "analysis_explanation": null, "end": 18208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18203 }, { "analysis_explanation": null, "end": 18215, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18210 }, { "analysis_explanation": null, "end": 18341, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18336 }, { "analysis_explanation": null, "end": 18367, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18362 }, { "analysis_explanation": null, "end": 18446, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18437 }, { "analysis_explanation": null, "end": 18469, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18464 }, { "analysis_explanation": null, "end": 18528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18523 }, { "analysis_explanation": null, "end": 18638, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18634 }, { "analysis_explanation": null, "end": 18705, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18701 }, { "analysis_explanation": null, "end": 18756, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18751 }, { "analysis_explanation": null, "end": 18997, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18990 }, { "analysis_explanation": null, "end": 19237, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19233 }, { "analysis_explanation": null, "end": 19252, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19247 }, { "analysis_explanation": null, "end": 19364, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19358 }, { "analysis_explanation": null, "end": 19382, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19375 }, { "analysis_explanation": null, "end": 19495, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19491 }, { "analysis_explanation": null, "end": 19502, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19497 }, { "analysis_explanation": null, "end": 19557, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19548 }, { "analysis_explanation": null, "end": 19678, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19672 }, { "analysis_explanation": null, "end": 19728, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19723 }, { "analysis_explanation": null, "end": 19823, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19819 }, { "analysis_explanation": null, "end": 19839, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19833 }, { "analysis_explanation": null, "end": 19913, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19908 }, { "analysis_explanation": null, "end": 19929, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19914 }, { "analysis_explanation": null, "end": 20088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20080 }, { "analysis_explanation": null, "end": 20104, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20102 }, { "analysis_explanation": null, "end": 20177, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20170 }, { "analysis_explanation": null, "end": 20402, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20398 }, { "analysis_explanation": null, "end": 20415, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20411 }, { "analysis_explanation": null, "end": 20562, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20558 }, { "analysis_explanation": null, "end": 20667, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20661 }, { "analysis_explanation": null, "end": 20673, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20669 }, { "analysis_explanation": null, "end": 20887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20883 }, { "analysis_explanation": null, "end": 20991, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20974 }, { "analysis_explanation": null, "end": 21078, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21074 }, { "analysis_explanation": null, "end": 21113, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21106 }, { "analysis_explanation": null, "end": 21201, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21171 }, { "analysis_explanation": null, "end": 21226, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21221 }, { "analysis_explanation": null, "end": 21269, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21264 }, { "analysis_explanation": null, "end": 21309, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21302 }, { "analysis_explanation": null, "end": 21317, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21310 }, { "analysis_explanation": null, "end": 21349, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21340 }, { "analysis_explanation": null, "end": 21443, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21436 }, { "analysis_explanation": null, "end": 21451, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21444 }, { "analysis_explanation": null, "end": 21512, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21500 }, { "analysis_explanation": null, "end": 21608, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21591 }, { "analysis_explanation": null, "end": 21688, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21683 }, { "analysis_explanation": null, "end": 21732, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21727 }, { "analysis_explanation": null, "end": 21784, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21779 }, { "analysis_explanation": null, "end": 21858, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21834 }, { "analysis_explanation": null, "end": 21877, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21873 }, { "analysis_explanation": null, "end": 21957, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21950 }, { "analysis_explanation": null, "end": 21987, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21980 }, { "analysis_explanation": null, "end": 22051, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22046 }, { "analysis_explanation": null, "end": 22117, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22107 }, { "analysis_explanation": null, "end": 22125, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22119 }, { "analysis_explanation": null, "end": 22154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22141 }, { "analysis_explanation": null, "end": 22204, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22199 }, { "analysis_explanation": null, "end": 22667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22663 }, { "analysis_explanation": null, "end": 22735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22721 }, { "analysis_explanation": null, "end": 22771, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22766 }, { "analysis_explanation": null, "end": 23078, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23062 }, { "analysis_explanation": null, "end": 23116, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23109 }, { "analysis_explanation": null, "end": 23299, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23285 }, { "analysis_explanation": null, "end": 23338, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23333 }, { "analysis_explanation": null, "end": 23520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23513 }, { "analysis_explanation": null, "end": 23563, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23557 }, { "analysis_explanation": null, "end": 23772, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23765 }, { "analysis_explanation": null, "end": 23786, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23777 }, { "analysis_explanation": null, "end": 23878, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23873 }, { "analysis_explanation": null, "end": 24265, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24260 }, { "analysis_explanation": null, "end": 24418, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24413 }, { "analysis_explanation": null, "end": 24661, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24654 }, { "analysis_explanation": null, "end": 24697, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24682 }, { "analysis_explanation": null, "end": 24840, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24833 }, { "analysis_explanation": null, "end": 24863, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24848 }, { "analysis_explanation": null, "end": 25252, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25235 }, { "analysis_explanation": null, "end": 25261, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25254 }, { "analysis_explanation": null, "end": 25525, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25520 }, { "analysis_explanation": null, "end": 25602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25594 }, { "analysis_explanation": null, "end": 25624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25619 }, { "analysis_explanation": null, "end": 25757, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25741 }, { "analysis_explanation": null, "end": 25768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25761 }, { "analysis_explanation": null, "end": 26077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26070 }, { "analysis_explanation": null, "end": 26278, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26274 }, { "analysis_explanation": null, "end": 26410, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26404 }, { "analysis_explanation": null, "end": 26508, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26498 }, { "analysis_explanation": null, "end": 27403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27385 }, { "analysis_explanation": null, "end": 27644, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27633 }, { "analysis_explanation": null, "end": 27955, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27949 }, { "analysis_explanation": null, "end": 27981, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27970 }, { "analysis_explanation": null, "end": 28591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28584 }, { "analysis_explanation": null, "end": 28599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28594 }, { "analysis_explanation": null, "end": 28753, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28744 }, { "analysis_explanation": null, "end": 28871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28866 }, { "analysis_explanation": null, "end": 28946, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28937 }, { "analysis_explanation": null, "end": 29060, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29055 }, { "analysis_explanation": null, "end": 29601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29596 }, { "analysis_explanation": null, "end": 30298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30284 }, { "analysis_explanation": null, "end": 30318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30314 }, { "analysis_explanation": null, "end": 30352, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30345 }, { "analysis_explanation": null, "end": 30374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30369 }, { "analysis_explanation": null, "end": 30538, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30521 }, { "analysis_explanation": null, "end": 30590, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30578 }, { "analysis_explanation": null, "end": 30688, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30655 }, { "analysis_explanation": null, "end": 31004, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30997 }, { "analysis_explanation": null, "end": 31065, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31055 }, { "analysis_explanation": null, "end": 31102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31099 }, { "analysis_explanation": null, "end": 31199, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31194 }, { "analysis_explanation": null, "end": 31210, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31201 }, { "analysis_explanation": null, "end": 31239, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31234 }, { "analysis_explanation": null, "end": 31395, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31390 }, { "analysis_explanation": null, "end": 31458, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31453 }, { "analysis_explanation": null, "end": 31499, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31491 }, { "analysis_explanation": null, "end": 31687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31684 }, { "analysis_explanation": null, "end": 31699, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31695 }, { "analysis_explanation": null, "end": 32170, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32165 }, { "analysis_explanation": null, "end": 32406, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32401 }, { "analysis_explanation": null, "end": 32825, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32821 }, { "analysis_explanation": null, "end": 32969, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32964 }, { "analysis_explanation": null, "end": 33165, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33159 }, { "analysis_explanation": null, "end": 33340, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33331 }, { "analysis_explanation": null, "end": 33364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33352 }, { "analysis_explanation": null, "end": 33392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33376 }, { "analysis_explanation": null, "end": 33970, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33965 }, { "analysis_explanation": null, "end": 34308, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34304 }, { "analysis_explanation": null, "end": 34398, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34394 }, { "analysis_explanation": null, "end": 34515, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34504 }, { "analysis_explanation": null, "end": 34810, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34795 }, { "analysis_explanation": null, "end": 34893, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34882 }, { "analysis_explanation": null, "end": 34964, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34951 }, { "analysis_explanation": null, "end": 35133, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35126 }, { "analysis_explanation": null, "end": 24498, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 24490 } ]
[ "<#--\n/*\n * $Id$\n *\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. ", " See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. ", " The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. ", " You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. ", " See the License for the\n * specific language governing permissions and limitations\n * under the License.", "\n */\n-->\n<textarea<#rt/>\n name=\"${(parameters.name!\"\")?html}\"<#rt/>\n cols=\"${(parameters.cols!\"\")?html}\"<#rt/>\n rows=\"${(parameters.rows!\"\")?html}\"<#rt/>\n<#if parameters.wrap?has_content>\n wrap=\"${parameters.wrap?html}\"<#rt/>\n</#if>\n<#if parameters.disabled!false>\n disabled=\"disabled\"<#rt/>\n</#if>\n<#if parameters.readonly!false>\n readonly=\"readonly\"<#rt/>\n</#if>\n<#if parameters.tabindex?has_content>\n tabindex=\"${parameters.tabindex?html}\"<#rt/>\n</#if>\n<#if parameters.id?has_content>\n id=\"${parameters.id?html}\"<#rt/>\n</#if>\n<#include \"/${parameters.templateDir}/${parameters.expandTheme}/css.ftl\" />\n<#if parameters.title?has_content>\n title=\"${parameters.title?html}\"<#rt/>\n</#if>\n<#include \"/${parameters.templateDir}/${parameters.expandTheme}/scripting-events.ftl\" />\n<#include \"/${parameters.templateDir}/${parameters.expandTheme}/common-attributes.ftl\" />\n<#include \"/${parameters.templateDir}/${parameters.expandTheme}/dynamic-attributes.ftl\" />\n><#rt/>\n<#if parameters.nameValue??", ">\n<@s.property value=\"parameters.nameValue\"/><#t/>\n</#if>\n</textarea>" ]
{ "pile_set_name": "Github" }
[ 0.008064516129032258, 0.008928571428571428, 0.012195121951219513, 0.006389776357827476, 0.009523809523809525, 0, 0 ]
0.006443
5
[ { "analysis_explanation": null, "end": 487, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 445 }, { "analysis_explanation": null, "end": 861, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 848 }, { "analysis_explanation": null, "end": 904, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 891 }, { "analysis_explanation": null, "end": 947, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 934 }, { "analysis_explanation": null, "end": 1130, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1117 }, { "analysis_explanation": null, "end": 1287, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1274 }, { "analysis_explanation": null, "end": 1321, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1308 }, { "analysis_explanation": null, "end": 1796, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1783 }, { "analysis_explanation": null, "end": 1815, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1810 }, { "analysis_explanation": null, "end": 1841, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1828 } ]
[ "Dorogawa Dam\n\nDorogawa Dam () is a dam in Karuizawa, Nagano Prefecture, Japan. ", "The kanji in the name translate to \"Muddy River\" Dam.", "\n\nSee also\n List of dams and reservoirs in Japan\n\nCategory:Dams in Nagano Prefecture\nCategory:Gravity dams" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 51, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42 }, { "analysis_explanation": null, "end": 70, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53 }, { "analysis_explanation": null, "end": 77, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72 }, { "analysis_explanation": null, "end": 179, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174 }, { "analysis_explanation": null, "end": 215, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198 } ]
[ "Fibrin generation during the diabetic pregnancy.", "\nFibrin catabolism was measured during the pregnancy of insulin-dependent diabetic women in both a longitudinal and cross sectional fashion. ", "Samples of maternal peripheral venous blood were obtained in 20 pregnant diabetic women between 26 and 38 weeks' gestational age. ", "Fibrinopeptide A, the first peptide cleaved from fibrinogen during thrombin-mediated catabolism, was measured by radioimmunoassay. ", "Intra-assay and interassay variation for fibrinopeptide A in this laboratory were 2% and 4% respectively. ", "Antithrombin III activity was determined by the method of Odegaard. ", "The patients ranged from 23 to 36 years. ", "Overall blood glucose control was good as reflected in near-normal HbA1 fasting plasma glucose values. ", "The mean HbA1 +/- 1 standard deviation was 7.1% +/- 1.2%. ", "The mean fasting plasma glucose concentration was 101.9 mg% +/- 21.5 mg%. ", "Mean FPA for the diabetic women exceeded control values at each gestational period. ", "Significant differences were found in four of the seven intervals. ", "While the highest FPA was noted in a patient with advanced diabetic vasculopathy, exclusion of this patient did not alter the overall findings. ", "The findings were striking and suggest the need for a prospective study designed to account for White's classification of diabetes and the degree of glucose control. ", "Because complications of the diabetic pregnancy include an increased risk of hypertension in the mother and sudden, unexplained fetal loss, two complications associated with abnormal clotting, the increase in fibrin catabolism in patients in tight metabolic control would suggest that events other than glucose regulation impact upon fibrin catabolism and possibly pregnancy outcome in the diabetic mother." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.0070921985815602835, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0.006944444444444444, 0.006024096385542169, 0 ]
0.002318
5
[ { "analysis_explanation": null, "end": 6, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 301, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277 }, { "analysis_explanation": null, "end": 572, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 556 }, { "analysis_explanation": null, "end": 663, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649 }, { "analysis_explanation": null, "end": 1296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1291 } ]
[ "Q:\n\nMany To Many Table Join With Pivot\n\nI currently have two tables similar to users and programs that are linked through a many-to-many relationships by way of a link table.", "\nmysql> select * from users;\n+----+----------+\n| id | name |\n+----+----------+\n| 1 | Jonathan |\n| 2 | Little |\n| 3 | Annie |\n| 4 | Bob |\n+----+----------+\n4 rows in set (0.00 sec)\n\nmysql> select * from programs;\n+----+----------------------+\n| id | name |\n+----+----------------------+\n| 1 | Microsoft Word |\n| 2 | Microsoft Excel |\n| 3 | Microsoft PowerPoint |\n+----+----------------------+\n3 rows in set (0.00 sec)\n\nmysql> select * from link;\n+---------+------------+\n| user_id | program_id |\n+---------+------------+\n| 1 | 1 |\n| 1 | 2 |\n| 1 | 3 |\n| 2 | 2 |\n| 3 | 1 |\n| 3 | 4 |\n+---------+------------+\n6 rows in set (0.00 sec)\n\nI understand how to join the tables and return a result of this sort:\nmysql> select users.name, programs.name from linker\n -> join users on users.id = linker.user_id\n -> join programs on programs.id = linker.program_id;\n+----------+----------------------+\n| name | name |\n+----------+----------------------+\n| Jonathan | Microsoft Word |\n| Jonathan | Microsoft Excel |\n| Jonathan | Microsoft PowerPoint |\n| Little | Microsoft Excel |\n| Annie | Microsoft Word |\n+----------+----------------------+\n\nBut what I am really looking for is a little more complicated:\n+----------+-----------------------------------------------------+\n| name | name |\n+----------+-----------------------------------------------------+\n| Jonathan | Microsoft Word,Microsoft Excel,Microsoft PowerPoint |\n| Little | Microsoft Excel |\n| Annie | Microsoft Word |\n+----------+-----------------------------------------------------+\n\nI assume there is a GROUP_CONCAT() thrown into the command somewhere, but I cannot seem to keep the results from looking like this:\nmysql> select users.name, group_concat(programs.name) from linker\n -> join users on users.id = linker.user_id\n -> join programs on programs.id = linker.program_id;\n+----------+------------------------------------------------------------------------------------+\n| name | group_concat(programs.name) |\n+----------+------------------------------------------------------------------------------------+\n| Jonathan | Microsoft Word,Microsoft Excel,Microsoft PowerPoint,Microsoft Excel,Microsoft Word |\n+----------+------------------------------------------------------------------------------------+\n\nCan anybody point me in the right direction?", "\n\nA:\n\nYou need to specify a DISTINCT, i.e.\nselect users.name, group_concat( DISTINCT programs.name)\n\nSee the MySQL docs here.", "\nTry changing your query to:\nSELECT users.name, group_concat(programs.name) \nfrom users\nLEFT JOIN linker on linker.user_id = users.id\nLEFT JOIN programs on linker.program_id = programs.id\nGROUP BY users.id\n\nThis will give you a null for any user with no programs associated with them. ", "To filter them out, just add a WHERE programs.id IS NOT NULL.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.008550185873605948, 0.016, 0, 0, 0 ]
0.004092
5
[ { "analysis_explanation": null, "end": 327, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318 }, { "analysis_explanation": null, "end": 1094, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 1086 }, { "analysis_explanation": null, "end": 1106, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 1097 }, { "analysis_explanation": null, "end": 1147, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 1136 }, { "analysis_explanation": null, "end": 1160, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 1150 }, { "analysis_explanation": null, "end": 2254, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2246 }, { "analysis_explanation": null, "end": 2266, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2257 }, { "analysis_explanation": null, "end": 2307, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2296 }, { "analysis_explanation": null, "end": 2320, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2310 }, { "analysis_explanation": null, "end": 3105, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 3096 }, { "analysis_explanation": null, "end": 3121, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 3113 }, { "analysis_explanation": null, "end": 3154, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 3144 }, { "analysis_explanation": null, "end": 3175, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 3164 }, { "analysis_explanation": null, "end": 3193, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 3185 }, { "analysis_explanation": null, "end": 1035, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1027 }, { "analysis_explanation": null, "end": 1050, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1039 }, { "analysis_explanation": null, "end": 2181, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2173 }, { "analysis_explanation": null, "end": 2209, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2198 }, { "analysis_explanation": null, "end": 2464, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2453 }, { "analysis_explanation": null, "end": 2921, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2913 }, { "analysis_explanation": null, "end": 2959, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2948 }, { "analysis_explanation": null, "end": 3032, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3024 }, { "analysis_explanation": null, "end": 3060, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3049 }, { "analysis_explanation": null, "end": 3321, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3310 } ]
[ "Q:\n\nHow to get IV for decryption in Java?", "\n\nI need to encrypt / decrypt a username field and I was planning to use the code below: \npublic class Decrypter {\n Cipher dcipher;\n\n byte[] salt = new String(\"12345678\").getBytes();\n int iterationCount = 1024;\n int keyStrength = 256;\n SecretKey key;\n byte[] iv;\n\n Decrypter(String passPhrase) throws Exception {\n SecretKeyFactory factory = SecretKeyFactory.getInstance(\"PBKDF2WithHmacSHA1\");\n KeySpec spec = new PBEKeySpec(passPhrase.toCharArray(), salt, iterationCount, keyStrength);\n SecretKey tmp = factory.generateSecret(spec);\n key = new SecretKeySpec(tmp.getEncoded(), \"AES\");\n dcipher = Cipher.getInstance(\"AES/CBC/PKCS5Padding\");\n }\n\n public String encrypt(String data) throws Exception {\n dcipher.init(Cipher.", "ENCRYPT_MODE, key);\n AlgorithmParameters params = dcipher.getParameters();\n iv = params.getParameterSpec(IvParameterSpec.class).getIV();\n byte[] utf8EncryptedData = dcipher.doFinal(data.getBytes());\n String base64EncryptedData = new sun.misc.", "BASE64Encoder().encodeBuffer(utf8EncryptedData);\n\n System.out.println(\"IV \" + new sun.misc.", "BASE64Encoder().encodeBuffer(iv));\n System.out.println(\"Encrypted Data \" + base64EncryptedData);\n return base64EncryptedData;\n }\n\n public String decrypt(String base64EncryptedData) throws Exception {\n dcipher.init(Cipher.", "DECRYPT_MODE, key, new IvParameterSpec(iv));\n byte[] decryptedData = new sun.misc.", "BASE64Decoder().decodeBuffer(base64EncryptedData);\n byte[] utf8 = dcipher.doFinal(decryptedData);\n return new String(utf8, \"UTF8\");\n }\n\n public static void main(String args[]) throws Exception {\n Decrypter decrypter = new Decrypter(\"ABCDEFGHIJKL\");\n String encrypted = decrypter.encrypt(\"StringToBeEncrypted\");\n String decrypted = decrypter.decrypt(encrypted);\n System.out.println(decrypted);\n }\n} \n\nI've taken this code from another site. ", "The above code works fine when run as standalone. ", "But the issue that I'm facing is how to decrypt the value when username is already encrypted?", "\nI'll be calling encrypt & decrypt functions from different classes, so if the string is already encrypted & stored in the DB, then when user logs into website, when I'll call decrypt method, how do I pass the IV as CBC mode decrypt requires an IV parameter, while I've not stored iv during the encryption???", "\nAny help is much appreciated!!", "\nNOTE: This has nothing to do with password protection. ", "As mentioned, need to encrypt userid & not password! ", "For password protection, I'm using hash only.", "\n\nA:\n\nThe IV is something you need to supply when encrypting or decrypting data.", "\nLike salt for a hash, the IV ensures that the identical plaintexts will never result in indentical ciphertexts.", "\nYou need to generate a (securely) random IV when you encrypt each plaintext and store it alongside the ciphertext.", "\n\nA:\n\nTo decrypt you have to have the IV and the secret key.", "\nThough it is less secure, what I've seen is that people always keep the key (or password) safe somewhere and sometimes just code the IV into the program. ", "\nbyte[] iv = new byte[] \n{ \n0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f \n};\n\nOr with some other set of byte values.", "\n[Note that your code is generating an IV for each call to encrypt()]\nEdit\nCommenter @SLaks points out that using a constant IV reduces the level of protection and removes the extra level of security added by using CBC (which uses the IV). ", "It reduces to the level of ECB (which has no IV). ", "\n(Note: in the code above:\nCipher.getInstance(\"AES/CBC/PKCS5Padding\");\n\nwhere CBC is selected.)", "\nThis is significant in that a particular string of bytes will encrypt to the same result every time when the key, IV and salt used are the same. ", "IV is there to make this stop happening.", "\nWe want the encrypted results to be as random looking as possible. ", "That keeps the bad guys from figuring out the original content.", "\nThink of the IV as adding randomness to the plain-text message. ", "For example, you might be encrypting passwords people give you. ", "Those people tend to choose poor passwords and multiple people tend to choose the same one. ", "Adding randomness would be a good thing in this case.", "\nThink of a salt as adding randomness to the passphrase (which is just a fancy word for password to highlight using a long and varied one). ", "In this case, again, people choose poor ones and adding randomness to them makes the encrypted results more random.", "\nThat's why you would choose a random bunch of bits to serve as the IV for each message encrypted. ", "To keep it from looking like other encrypted messages. ", "But they have to be stored with each message so it can be decrypted.", "\nAny choosing a random bunch of bits to serve as the salt for each person will serve to make their messages encrypt and look different from anyone elses messages. ", "You could use a different salt each time the person logs in or each time they change their password or even just once per person. ", "However you do it, you have to save the salt values so you can decrypt the messages later.", "\nIf you need this level of security, be sure to generate a truly random IV for each message encrypted and store it somewhere to be used when decrypting.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.024390243902439025, 0.007614213197969543, 0, 0.01020408163265306, 0.004032258064516129, 0, 0.004073319755600814, 0, 0, 0.003246753246753247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012121212121212121, 0.008333333333333333, 0, 0.010526315789473684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.002062
5
[ { "analysis_explanation": null, "end": 40, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36 }, { "analysis_explanation": null, "end": 165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143 }, { "analysis_explanation": null, "end": 251, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233 }, { "analysis_explanation": null, "end": 279, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268 }, { "analysis_explanation": null, "end": 353, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 326 }, { "analysis_explanation": null, "end": 476, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 469 }, { "analysis_explanation": null, "end": 558, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547 }, { "analysis_explanation": null, "end": 1780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1761 }, { "analysis_explanation": null, "end": 1810, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1787 }, { "analysis_explanation": null, "end": 2855, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2833 }, { "analysis_explanation": null, "end": 428, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 409 }, { "analysis_explanation": null, "end": 512, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 499 }, { "analysis_explanation": null, "end": 595, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 585 }, { "analysis_explanation": null, "end": 653, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 647 }, { "analysis_explanation": null, "end": 700, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 691 }, { "analysis_explanation": null, "end": 818, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 808 }, { "analysis_explanation": null, "end": 896, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 886 }, { "analysis_explanation": null, "end": 933, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 924 }, { "analysis_explanation": null, "end": 966, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 948 }, { "analysis_explanation": null, "end": 1025, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1015 }, { "analysis_explanation": null, "end": 1038, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1031 }, { "analysis_explanation": null, "end": 1171, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1158 }, { "analysis_explanation": null, "end": 1255, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1242 }, { "analysis_explanation": null, "end": 1437, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1427 }, { "analysis_explanation": null, "end": 1621, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1611 }, { "analysis_explanation": null, "end": 1922, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1910 }, { "analysis_explanation": null, "end": 1961, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1948 }, { "analysis_explanation": null, "end": 3674, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3665 }, { "analysis_explanation": null, "end": 1810, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1798 }, { "analysis_explanation": null, "end": 214, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 206 }, { "analysis_explanation": null, "end": 214, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 206 } ]
[ "\n\"account\" = \"アカウント\";\n\"add_as_new_contact\" = \"新規の連絡先として追加\";\n\"amount\" = \"量\";\n\"balance_error\" = \"%@ しか利用できません!\";", "\n\"balance_info\" = \"残高:%@(%@ の手数料)\";\n\"btc_address\" = \"BTC のアドレス\";\n\"btc_bought_successfully\" = \"You will receive your bitcoins shortly. [", "TODO]\";\n\"buy\" = \"Buy [TODO]\";\n\"buy_btc\" = \"Buy Bitcoins [TODO]\";\n\"cancel\" = \"キャンセル\";\n\"change_currency\" = \"通貨を変更\";\n\"choose_contact\" = \"連絡先を選択\";\n\"contacts\" = \"連絡先\";\n\"confirm_buy\" = \"Are you sure you want to buy %.4f BTC for $%i? [", "TODO]\";\n\"could_not_fetch_balance\" = \"残高を照会できませんでした。\";", "\n\"current_balance\" = \"現在の残高\";\n\"display_name\" = \"表示名\";\n\"error\" = \"エラー\";\n\"error_title\" = \"エラーです!\";", "\n\"export\" = \"エクスポート\";\n\"feature_unavailable\" = \"This feature is currently disabled. [", "TODO]\";\n\"me\" = \"自分\";\n\"n_confirmation\" = \"%i件の確認事項\";\n\"network_error\" = \"ネットワーク・エラー\";\n\"new_contact\" = \"新規の連絡先\";\n\"not_a_key\" = \"スキャンされたコードは有効な秘密鍵ではありません。\";", "\n\"not_enough_funds\" = \"資金不足です。(0.0001以上が必要です)\";\n\"okay\" = \"OK\";\n\"passcode\" = \"パスコード\";\n\"please_wait\" = \"お待ちください\";\n\"private_keys\" = \"Private Keys [TODO]\";\n\"push_message\" = \"%@ が入金されました。\";", "\n\"push_notifications_title\" = \"プッシュ通知\";\n\"push_notifications_desc\" = \"新規取引の通知\";\n\"receive\" = \"受信する\";\n\"recent_transactions\" = \"最近の取引\";\n\"retry\" = \"再試行\";\n\"send\" = \"送信\";\n\"settings\" = \"設定\";\n\"shops\" = \"ショップ\";\n\"success\" = \"成功です!\";", "\n\"swipe\" = \"秘密鍵をスワイプする\";\n\"swipe_failed\" = \"インポートに失敗しました。再試行してください。\";", "\n\"swipe_key\" = \"鍵をスワイプする\";\n\"swipe_key_title\" = \"鍵をスワイプしますか?\";", "\n\"swipe_key_message\" = \"この秘密鍵の資金すべてをスワイプしますか?(%.8f BTC)\";\n\"swipe_success\" = \"すべての資金のインポートに成功しました。\";", "\n\"total\" = \"合計\";\n\"transaction\" = \"取引\";\n\"tx_error_msg\" = \"取引をブロードキャストできませんでした。\";", "\n\"tx_success_msg\" = \"取引のブロードキャストに成功しました。\";", "\n\"unit\" = \"単位\";\n\"unlock\" = \"ロック解除\";\n\"verify_tx_title\" = \"取引の確認\";\n\"verify_tx_message\" = \"%@ を %@ に送金しますか?\";", "\n\"yes\" = \"はい\";\n\"you_will_receive\" = \"You will receive %.4f BTC [TODO]\";" ]
{ "pile_set_name": "Github" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010101010101010102, 0, 0, 0, 0 ]
0.000631
5
[ { "analysis_explanation": null, "end": 554, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549 } ]
[ "Item Details\n\nRinse produce and strain pasta using the Johnson Rose 3975 Heavy Duty Strainer 12\". ", "A great addition to any kitchen, this strainer features a concave net which securely holds solid foods while its double fire tinned wooden handle provides a comfortable grip. ", "Crafted from double fired plated steel with a sturdy outer frame, this double mesh strainer will endure constant use and cleaning." ]
{ "pile_set_name": "Pile-CC" }
[ 0.01020408163265306, 0, 0 ]
0.003401
5
[ { "analysis_explanation": null, "end": 19, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 } ]
[ "export { default as Blocker } from './Blocker'\nexport { default as Button } from './Button'\nexport { default as Divider } from './Divider'\nexport { default as DropdownMenu } from './DropdownMenu'\nexport { default as FileSelect } from './FileSelect'\nexport { default as Form } from './Form'\nexport { default as FormRow } from './FormRow'\nexport { default as HorizontalSpace } from './HorizontalSpace'\nexport { default as HorizontalStack } from './HorizontalStack'\nexport { default as Icon } from './Icon'\nexport { default as Input } from './Input'\nexport { default as Limiter } from './Limiter'\nexport { default as Link } from './Link'\nexport { default as MenuItem } from './MenuItem'\nexport { default as Modal } from './Modal'\nexport { default as ModalCanvas } from './ModalCanvas'\nexport { default as MultiInput } from './MultiInput'\nexport { default as MultiSelect } from './MultiSelect'\nexport { default as Popover } from './Popover'\nexport { default as QuerySelect } from './QuerySelect'\nexport { default as renderMenu } from './renderMenu'\nexport { default as Select } from './Select'\nexport { default as Separator } from './Separator'\nexport { default as StackFill } from './StackFill'\nexport { default as SwitchTextTypeDropdown } from './SwitchTextTypeDropdown'\nexport { default as TextArea } from './TextArea'\nexport { default as Title } from './Title'\n" ]
{ "pile_set_name": "Github" }
[ 0.005878030859662013 ]
0.005878
5
[ { "analysis_explanation": null, "end": 435, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 420 }, { "analysis_explanation": null, "end": 812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 802 }, { "analysis_explanation": null, "end": 917, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 910 }, { "analysis_explanation": null, "end": 1297, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1289 }, { "analysis_explanation": null, "end": 1360, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1351 } ]
[ "\n@h1 sarray-01.flx\n@felix\ninclude \"std/datatype/sarray\";\n// test code, remove when putting in library\nvar x = sarray 0.0;\niter (proc (d:double) { set (x, d.size, d); }) (1.1,2.2,3.3);\niter (proc (d:double) { set (x, d.size, d); }) (6.6,7.7,8.9);\nvar i : int;\nfor i in 0 upto 10 do println$ i.str+ \" \"+(x,i.size).get.str ; done\nprintln \"---\";\n\ndel (x,size 2);\nfor i in 0 upto 10 do println$ i.str+ \" \"+(x,i.size).get.str ; done\nprintln \"---\";\n\npack x;\nfor i in 0 upto 10 do println$ i.str+ \" \"+(x,i.size).get.str ; done\n\npack x;\nfor i in 0 upto 10 do println$ i.str+ \" \"+(x,i.size).get.str ; done\n\n\n@expect\n0 0\n1 1.1\n2 2.2\n3 3.3\n4 0\n5 0\n6 6.6\n7 7.7\n8 8.9\n9 0\n10 0\n---\n0 0\n1 1.1\n2 0\n3 3.3\n4 0\n5 0\n6 6.6\n7 7.7\n8 8.9\n9 0\n10 0\n---\n0 0\n1 1.1\n2 0\n3 3.3\n4 0\n5 0\n6 6.6\n7 7.7\n8 8.9\n9 0\n10 0\n0 0\n1 1.1\n2 0\n3 3.3\n4 0\n5 0\n6 6.6\n7 7.7\n8 8.9\n9 0\n10 0\n@\n" ]
{ "pile_set_name": "Github" }
[ 0.003579952267303103 ]
0.00358
5
[ { "analysis_explanation": null, "end": 318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303 }, { "analysis_explanation": null, "end": 418, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 403 }, { "analysis_explanation": null, "end": 510, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495 }, { "analysis_explanation": null, "end": 587, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 572 }, { "analysis_explanation": null, "end": 157, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 153 }, { "analysis_explanation": null, "end": 219, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 215 }, { "analysis_explanation": null, "end": 293, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 289 }, { "analysis_explanation": null, "end": 307, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 303 }, { "analysis_explanation": null, "end": 317, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 310 }, { "analysis_explanation": null, "end": 393, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 389 }, { "analysis_explanation": null, "end": 407, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 403 }, { "analysis_explanation": null, "end": 417, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 410 }, { "analysis_explanation": null, "end": 485, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 481 }, { "analysis_explanation": null, "end": 499, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 495 }, { "analysis_explanation": null, "end": 509, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 502 }, { "analysis_explanation": null, "end": 562, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 558 }, { "analysis_explanation": null, "end": 576, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 572 }, { "analysis_explanation": null, "end": 586, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 579 } ]
[ "The present invention relates to a software preparing method, and more particularly to a method for creating a software module and message data when the software module is developed in a distributed system, and a method for preparing a data-flow-structured program with the I/O specification defined by message data using multiple program languages.", "\nIn a program development supporting system in which programs are designed in module structures and the modules are individually formed, in order to make it easy to change the program, there is proposed a method of analyzing the portion of a program source to be changed to investigate its influencing range, as disclosed in JP-A-63-273132. ", "This method is silent on assuring consistency of designed data in designing software to support program development.", "\nFurther, generally, where a self-distributed software module is to be developed, its processing contents are determined after input and output messages are defined. ", "In particular, in developing the software module in a distributed manner, in order to assure consistency with the module and message data already developed, on the basis of the design specifications, non-definition and multi-definition of message data used by the module are checked and they are unified or separated.", "\nThe above prior art has the following defects. ", "First of all, if software is developed in a distributed manner, the message data which is the same as or analogous to the message data already defined may be defined.", "\nSecondly, the presence of the message data having the same structure means that the message data defined later is not required or unified with the prior message data. ", "The presence of the message data having the analogous structure should be reconsidered to determine whether or not they are really required or if they should be unified or separated.", "\nFurther, the data item already defined may be multi-defined.", "\nMeanwhile, development of multiple programs prepared in a different language through the same function for fault tolerance is disclosed in e.g., \"The N-Version Approach to Fault-Tolerant Software\", IEEE Transaction on Software Engineering, Vol. ", "SE-11, No. ", "2, December 1985, pp. ", "1491-1501.", "\nFIG. ", "14 is a block diagram showing the conventional method of preparing multiple programs for the same function specifications.", "\nIn the conventional method, as seen from FIG. ", "14, the function specification 711 described in an application term is interpreted to prepare processing specifications 712, 713 and 714 corresponding to different languages; individual programs are prepared based on these processing specifications. ", "An operator understands the sentence in the function specification 711 to prepare at least one of the processing specification 712 corresponding to language A, the processing specification 713 corresponding to language B and the processing specification 714 corresponding to language C. Specifically, the operator determines the data items which can be dealt with by the corresponding languages on the basis of the corresponding processing specifications. ", "It should be noted that the function specification on the basis of which of the individual processing specifications are prepared must be interpreted and converted in terms of different programs for respective languages.", "\nThus, the corresponding language A program 715, language B program 716 and language C program 717 can be prepared.", "\nNow it is assumed that the function specification 711 includes the function specification defined by a sentence, but does not take the form such as a module structure, data item structure, etc. ", "which can be understood by a certain computer. ", "Specifically, the function specification 711 expresses the function to be demonstrated using languages and terms of an application or user, in the fashion e.g. the \"tracking of a steel material plate is carried out within a zone corresponding to a tandem mill\". ", "On the other hand, the processing specification expresses the contents of a computer processing for realizing the contents of the function specification using the language for a program processing, in the fashion of e.g. \"a tracking initial state is prepared referring to an index table\".", "\nAs described above, the prior art individually prepares the processing specifications corresponding to different programs so that it is very disadvantageous in the viewpoint of production efficiency and cost in the case where multiple programs for the same function are to be prepared for fault tolerance. ", "For this reason, the above prior art has not been put into practice." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0.002932551319648094, 0, 0, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0.02127659574468085, 0, 0.0021929824561403508, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.001279
5
[ { "analysis_explanation": null, "end": 2187, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2171 }, { "analysis_explanation": null, "end": 2211, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2209 }, { "analysis_explanation": null, "end": 2380, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2378 }, { "analysis_explanation": null, "end": 2927, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2912 }, { "analysis_explanation": null, "end": 688, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 682 } ]
[ "[Role of antioxidant in protecting the biological function of hematopoietic stem cells].", "\nIn peripheral blood hematopoietic stem cell transplantation (PBHSCT) , the mobilization and circulating of bone marrow hematopoietic stem cells in blood with higher oxygen concentration all increase reactive oxygen species(ROS) production, which has negative effect on the biological function of BMHSC. ", "In order to investigate the protective effect of antioxidant on hematopoietic stem cells (HSC), the ascorbic acid 2-phosphate (AA2P), an ascorbic acid derivative of vitamin C, was added in HSC culturing by imitating oxygen conditions which BMHSC experienced in peripheral blood stem cell transplantation. ", "The protective effect of above-mentioned culture methods on the biologic functions of BMHSC was evaluated by vitro amplification assay, committed division assay, reactive oxygen species (ROS) measurement, CD34(+) HSC engraftment. ", "The results showed that the ROS level in HSC from in vitro cultures was much higher than that freshly separated BMHSC, and the amplified AC133(+)CD34(+) HSC, BFU-E, CFU-GM, CFU-GEMM colonies, migration rate and severe combined immunodeficiency (SCID)-repopulating cells (SRC) were all much more than HSC cultured without AA2P. It is concluded that antioxidant intervention may be an effective methods for protecting the biological function of PBHSC and improving the therapeutic effect of PBHSCT." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.003289473684210526, 0.006557377049180328, 0.013043478260869565, 0.008064516129032258 ]
0.006191
5
[ { "analysis_explanation": null, "end": 156, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150 }, { "analysis_explanation": null, "end": 1117, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1109 }, { "analysis_explanation": null, "end": 1190, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1172 }, { "analysis_explanation": null, "end": 1069, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1064 } ]
[ "Mitt Romney did not attend a for-profit college, and we don't think he took out any student loans. ", "Perhaps that explains why his policies on those issues are so insensitive to the needs of students.", "\n\nMitt Romney has just released his plan for educating America’s young people, and it’s wholly consistent with his overall philosophy: Allow money to dominate politics, and everything will work out great. ", "Except that, when it comes to policies on college education, we tried that approach under George W. Bush, and it was a disaster for students and taxpayers.", "\n\nIn the recent bad old days, the big firms dominating the student loan business — Sallie Mae, Citigroup, Wells Fargo, JPMorgan Chase, etc. — ", "got paid as if they were lenders, when in fact they were merely loan servicers; it was us taxpayers who actually took the risk of students defaulting on loans. ", "These banks then used our money to hire lobbyists to protect their billions in unwarranted profits. ", "The Obama Administration stood up to them, and Congress, with nowhere left to cut spending, finally ended this absurd giveaway. ", "There’s absolutely no logical reason to restore this massive waste of taxpayer money. ", "You would only do it if a central principle of your presidency was to hand out gifts to special interests who helped you get elected. ", "Unfortunately it looks like Romney might want to be just that kind of President. ", "JPMorgan Chase, Citigroup, and Wells Fargo employees are ranked numbers 3, 6, and 10 among the top 2012 Romney donors.", "\n\nThen there’s the issue of the for-profit college sector, whose multiple bad actors have been caught in the act of defrauding our veterans and low-income students with deceptive recruiting practices, and defrauding government with phony reporting. ", "For-profit colleges have grown rapidly and now account for about 12 percent of students, but their financial footprint is even bigger: With high prices, high dropout rates, and poor job placement, they account for 25 percent of federal financial aid — over $30 billion a year — and 45 percent of student loan defaults.", "\n\nRomney takes direct aim at the Obama Administration’s “gainful employment” rule — an effort to channel federal student aid to college programs that actually help students learn and get jobs, rather than to programs that leave students deep in debt and ruin their lives. ", "Many of the biggest for-profit schools get 90 percent or more of their revenue from taxpayer funds. ", "They devoted a big chunk of that money to a lobbying and public relations campaign that succeeded in watering down — but not eliminating — the new Obama rule. ", "But that’s not good enough for Mitt Romney.", "\n\nWhy? ", "One possibility is that the for-profit college owners are his friends and business associates. ", "On the campaign trail, Romney has pointed to a for-profit college, Florida’s Full Sail University, as an innovative, cost-effective leader in higher education. ", "Never mind that Full Sail has sky-high prices and, at best, a mixed record when it comes to helping students. ", "Romney did not inform voters that his campaign and Super PAC have received nearly $100,000 from Full Sail CEO Bill Heavener and from C. Kevin Landry, chairman of TA Associates, the private equity firm that owns Full Sail.", "\n\nNor did Romney tell voters about the private equity fund Solamere Capital, which is run by Mitt’s son Tagg Romney and Spencer Zwick, who also serves as the top fundraiser on the Romney campaign staff. ", "Solamere was launched with a $10 million investment from Mitt and Ann Romney, and Mitt also has provided strategic advice. ", "Solamere Capital offered its clients a stake in TA Associates, which owns not just Full Sail but a number of for-profit schools, including troubled Vatterott Colleges, marked by exploitative recruiting practices and high student loan defaults.", "\n\nThat’s not all. ", "The political action committee of the Apollo Group, owner of the largest for-profit education business, the University of Phoenix, has contributed the maximum $5,000 to Romney’s campaign, the company’s only contribution to a 2012 presidential candidate. ", "Goldman Sachs, the number one source of contributions to Romney, owns 41 percent of EDMC, one of the largest for-profit college businesses, currently being sued by the Justice Department and investigated by state attorneys general for fraud.", "\n\nWhen a candidate endorses his donors’ businesses, without even telling you they are donors (and business associates), there is legitimate concern that those donors might receive favorable treatment after the candidate is elected.", "\n\nBut give Mitt Romney credit: Now he has told us flat out that, when it comes to higher education policy, he will favor the business interests of his donors — at the expense of students and taxpayers — when he’s elected. ", "Voters will have to decide what to do with that information.", "\n\nWithout God and an economy that supports ourselves and families, alleged “social reforms” are no more than government slavery of its people. ", "I would remind you that neither President Obama nor the US Government are God..\n\nSkip, you are correct that a strong economy is very important. ", "We must have meaningful jobs that pay a fair wage in order for the people of this country to provide for themselves and their families.", "\n\nWhether Pres. ", "Obama is God or not, is completely irrelevant. ", "Under his watch, an economic catastrophe was averted, job losses turned into job gains, we ended two wars, and we finally got Osama Bin Laden. ", "That’s relevant!", "\n\nEvery thing that flows from that cardboard cut out is a disaster, of course. ", "Who (except the zombies in the Right Wing) doesn’t know by now that the guy’s agenda is that of Wall Street and the elites? ", "Having said, I have to point out that when it comes to the decimation of public education, he shares a goal with our illustrious President whose pet project is also the conversion of public schools into for-profit indoctrination camps.", "\n\nFrances in California\n\n‘Any of you log-eyed Know-It-Alls care to comment on EDUCATION?!", "\n\nCatKinNY\n\nThe only question now is whether the Democrats will be able to explain this so the simpletons can clearly see that the POTUS eliminated a massive giveaway to the rich and connected and Romey want’s to bring it back. ", "Hopefully, they’ll employ some veterans to expain it – they have been disproportionately victimized by these vampires. ", "Let’s see the GOP calling a bunch of soldiers liberal liars asking for a handout.", "\n\nI’m happy to see Romney open up the education discussion in the presidential race. ", "Obama and Arne Duncan, Sec of Education, sole policy difference from the republicans is on vouchers. ", "In fact, Obama has stated that education is one area in which there is bipartisan support. ", "Unfortunately, the support does not extend to experts in learning. ", "Current Dept of Education policy is being set by those with financial interests in policy changes such as: Jeb Bush, Bill Gates, The Walton Foundation, Rupert Murdoch, Joe Klein, Michelle Rhee, Wendy Kopp, Michael Milken, Bill Bennett, Pearson, a host of test publishers, for-profit charter schools, the board of hedge fund managers running Democrats for Education Reform (DFER), and astroturf organizing by Stand for Children (For which Jonah Edelman apologized publicly).", "\n\nNONE of Arne Duncan’s mandates in Race to the Top (RttT) are backed by independent, scientific peer review. ", "Value-added scores for high stakes decisions, charter schools, fast-track and online teacher certification, firing teachers and principals, turning schools over to private management companies, are all business plans, not education plans. ", "If you look carefully at who is profiting from these privatization efforts it is not students. ", "I find it disturbing that non educators who profit from education contracts to improve learning are avoiding peer review and critical analysis by experts in the field. ", "Also note, the public schools being forced into these busines plans are not those used in private elite schools the “reformers” send their kids to.", "\n\nObama should be open and honest about his positions on such misguided education policies. ", "No other country in the world is moving towards such wrongheaded school reforms. ", "Duncan is replicating the Chicago reforms on the entire country. ", "For an in depth report of the effects of Duncan’s Renaissance 2010 when CEO of Chicago read the full report here: http://www.commondreams.org/view/2009/05/29-10\n\nI am a student Egyptian my circumstances are very bad financially, and my only dream Hua Okrnia study engineering in any of the States or groin will not find it standing next to me in my desire to support me in this study expenses\nWho can help me be next to him all my life and serve it, and Hua Lee Seda Please Alasthmam about me, it is the dream of my life Flaamr days, but the tears on my cheek grief of what is done Dikh Financial and I Mtad anime I’ll be successful in this area is very So please Íaasahab hearts Tayyiba Charoa me and Bhala This is Emily and my mobile messaging[email protected]\n00201002882668\n\nRepublic Report is dedicated to rooting out the corruption that is so corrosive to American values. ", "We investigate and uncover the buying and selling of politicians and of institutions entrusted with upholding the public interest. ", "We expose how big money distorts major policy decisions – harming our economy and our people." ]
{ "pile_set_name": "Pile-CC" }
[ 0.010101010101010102, 0, 0.004878048780487805, 0.0064516129032258064, 0.028169014084507043, 0, 0, 0.015625, 0, 0, 0.012345679012345678, 0.025423728813559324, 0, 0, 0.007352941176470588, 0, 0, 0.023255813953488372, 0, 0, 0.0125, 0, 0.02262443438914027, 0.024630541871921183, 0.032520325203252036, 0.012345679012345678, 0, 0.011811023622047244, 0.016597510373443983, 0, 0.0045045045045045045, 0, 0, 0.006944444444444444, 0, 0, 0, 0.006993006993006993, 0, 0, 0, 0, 0.011235955056179775, 0.008771929824561403, 0, 0.012345679012345678, 0.011764705882352941, 0.0297029702970297, 0, 0, 0.023255813953488372, 0.00909090909090909, 0, 0, 0, 0, 0.010869565217391304, 0, 0.015384615384615385, 0.004550625711035267, 0, 0 ]
0.006807
5
[ { "analysis_explanation": null, "end": 11, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199 }, { "analysis_explanation": null, "end": 259, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252 }, { "analysis_explanation": null, "end": 506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492 }, { "analysis_explanation": null, "end": 584, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 561 }, { "analysis_explanation": null, "end": 1340, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1334 }, { "analysis_explanation": null, "end": 1463, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1462 }, { "analysis_explanation": null, "end": 1490, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1486 }, { "analysis_explanation": null, "end": 1497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1491 }, { "analysis_explanation": null, "end": 2078, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2072 }, { "analysis_explanation": null, "end": 2594, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2589 }, { "analysis_explanation": null, "end": 2643, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2632 }, { "analysis_explanation": null, "end": 2774, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2768 }, { "analysis_explanation": null, "end": 2819, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2812 }, { "analysis_explanation": null, "end": 3021, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3015 }, { "analysis_explanation": null, "end": 3138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3125 }, { "analysis_explanation": null, "end": 3163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3148 }, { "analysis_explanation": null, "end": 3251, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3245 }, { "analysis_explanation": null, "end": 3332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3328 }, { "analysis_explanation": null, "end": 3350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3339 }, { "analysis_explanation": null, "end": 3368, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3355 }, { "analysis_explanation": null, "end": 3421, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3415 }, { "analysis_explanation": null, "end": 3499, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3495 }, { "analysis_explanation": null, "end": 3514, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3504 }, { "analysis_explanation": null, "end": 3524, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3520 }, { "analysis_explanation": null, "end": 3727, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3709 }, { "analysis_explanation": null, "end": 4050, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4046 }, { "analysis_explanation": null, "end": 4567, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4556 }, { "analysis_explanation": null, "end": 5016, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5011 }, { "analysis_explanation": null, "end": 5268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5263 }, { "analysis_explanation": null, "end": 5451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5436 }, { "analysis_explanation": null, "end": 5914, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5907 }, { "analysis_explanation": null, "end": 5928, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5918 }, { "analysis_explanation": null, "end": 6051, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6042 }, { "analysis_explanation": null, "end": 6195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6190 }, { "analysis_explanation": null, "end": 6445, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6439 }, { "analysis_explanation": null, "end": 6510, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6505 }, { "analysis_explanation": null, "end": 6526, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6515 }, { "analysis_explanation": null, "end": 6589, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6578 }, { "analysis_explanation": null, "end": 6620, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6615 }, { "analysis_explanation": null, "end": 6879, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6871 }, { "analysis_explanation": null, "end": 6891, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6881 }, { "analysis_explanation": null, "end": 6930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6916 }, { "analysis_explanation": null, "end": 6941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6932 }, { "analysis_explanation": null, "end": 6956, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6943 }, { "analysis_explanation": null, "end": 6968, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6958 }, { "analysis_explanation": null, "end": 6984, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6970 }, { "analysis_explanation": null, "end": 6998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6986 }, { "analysis_explanation": null, "end": 7114, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7105 }, { "analysis_explanation": null, "end": 7215, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7202 }, { "analysis_explanation": null, "end": 7259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7246 }, { "analysis_explanation": null, "end": 8001, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7996 }, { "analysis_explanation": null, "end": 8173, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8167 }, { "analysis_explanation": null, "end": 8200, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8193 }, { "analysis_explanation": null, "end": 8279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8273 }, { "analysis_explanation": null, "end": 8318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8311 }, { "analysis_explanation": null, "end": 8417, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8409 }, { "analysis_explanation": null, "end": 8489, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8479 }, { "analysis_explanation": null, "end": 8528, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8522 }, { "analysis_explanation": null, "end": 8698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8686 }, { "analysis_explanation": null, "end": 8715, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8706 }, { "analysis_explanation": null, "end": 8904, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8896 }, { "analysis_explanation": null, "end": 8926, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8912 }, { "analysis_explanation": null, "end": 8939, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8934 }, { "analysis_explanation": null, "end": 8953, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8948 }, { "analysis_explanation": null, "end": 9102, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9094 }, { "analysis_explanation": null, "end": 9009, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.75, "start": 8995 }, { "analysis_explanation": null, "end": 8392, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 8346 }, { "analysis_explanation": null, "end": 8389, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 8379 }, { "analysis_explanation": null, "end": 9009, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 8995 }, { "analysis_explanation": null, "end": 9009, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 8995 } ]
[ "Q:\n\nDate is this week, this month, this year\n\nI have DateTime value and I want to determine is this date on:\n\nCurrent week\nCurrent month\nCurrent year\n\nHow can I do this?", "\n\nA:\n\nYou can use the Calendar class of the .NET framework.", "\npublic static bool IsCurrentWeek(this DateTime dt)\n{\n var f = DateTimeFormatInfo.", "CurrentInfo;\n var c = f.Calendar;\n var givenWeek = c.GetWeekOfYear(dt, f.CalendarWeekRule, f.FirstDayOfWeek);\n var givenYear = c.GetYear(dt);\n var thisWeek = c.GetWeekOfYear(DateTime.", "Now, f.CalendarWeekRule, f.FirstDayOfWeek);\n var thisYear = c.GetYear(DateTime.", "Now);\n return thisWeek == givenWeek && thisYear == givenYear;\n}\n\npublic static bool IsCurrentMonth(this DateTime dt)\n{\n return DateTime.", "Now.", "Month == dt.", "Month && dt.", "IsCurrentYear();\n}\n\npublic static bool IsCurrentYear(this DateTime dt)\n{\n return DateTime.", "Now.", "Year == dt.", "Year;\n}\n\nDateTime dateTime = DateTime.", "Now;\nbool isCurrentYear = dateTime.", "IsCurrentYear()\n\nA:\n\nThe month and year are easy:\nif (yourDate.", "Month = DateTime.", "Now.", "Month)\n ...\n\nif (yourDate.", "Year = DateTime.", "Now.", "Year)\n ...\n\nWeek is harder, since week rules differ per region. ", " Here's an example:\nvar dfi = DateTimeFormatInfo.", "CurrentInfo;\nvar cal = dfi.", "Calendar;\n\nif (cal.", "GetWeekOfYear(yourDate, dfi.", "CalendarWeekRule, dfi.", "FirstDayOfWeek) ==\n cal.", "GetWeekOfYear(DateTime.", "Now, dfi.", "CalendarWeekRule, dfi.", "FirstDayOfWeek))\n ...\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.011764705882352941, 0.015384615384615385, 0, 0.007042253521126761, 0, 0, 0.08333333333333333, 0.010752688172043012, 0, 0, 0, 0, 0, 0, 0, 0, 0.0625, 0, 0, 0.02040816326530612, 0.037037037037037035, 0, 0, 0.045454545454545456, 0.037037037037037035, 0, 0, 0.045454545454545456, 0.038461538461538464 ]
0.013375
5
[ { "analysis_explanation": null, "end": 21, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12 }, { "analysis_explanation": null, "end": 33, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23 }, { "analysis_explanation": null, "end": 44, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35 }, { "analysis_explanation": null, "end": 122, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110 }, { "analysis_explanation": null, "end": 136, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123 }, { "analysis_explanation": null, "end": 154, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137 }, { "analysis_explanation": null, "end": 348, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338 }, { "analysis_explanation": null, "end": 388, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 370 }, { "analysis_explanation": null, "end": 408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 390 }, { "analysis_explanation": null, "end": 480, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 468 }, { "analysis_explanation": null, "end": 507, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 483 }, { "analysis_explanation": null, "end": 532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514 }, { "analysis_explanation": null, "end": 617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609 }, { "analysis_explanation": null, "end": 779, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 766 }, { "analysis_explanation": null, "end": 869, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 865 }, { "analysis_explanation": null, "end": 881, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 877 }, { "analysis_explanation": null, "end": 991, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 973 }, { "analysis_explanation": null, "end": 1095, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1091 }, { "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": 1132, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1122 }, { "analysis_explanation": null, "end": 1184, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1177 }, { "analysis_explanation": null, "end": 1233, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1230 }, { "analysis_explanation": null, "end": 1367, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1364 }, { "analysis_explanation": null, "end": 342, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 338 }, { "analysis_explanation": null, "end": 374, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 370 }, { "analysis_explanation": null, "end": 394, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 390 }, { "analysis_explanation": null, "end": 414, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 410 }, { "analysis_explanation": null, "end": 453, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 449 }, { "analysis_explanation": null, "end": 487, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 483 }, { "analysis_explanation": null, "end": 518, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 514 }, { "analysis_explanation": null, "end": 538, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 534 }, { "analysis_explanation": null, "end": 576, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 572 } ]
[ "Timely disclosure of progress in childhood cancer survival by 'period' analysis in the Automated Childhood Cancer Information System.", "\nA few years ago, a new method of survival analysis, denoted 'period' analysis, was introduced to provide more up-to-date survival estimates of cancer patients. ", "We evaluated the period survival method using the large database of the Automated Childhood Cancer Information System (ACCIS). ", "Our evaluation is based on data from 35 191 children diagnosed with cancer in 13 European countries between 1975 and 1989 and followed for vital status until around 1999. ", "Using the follow-up data available in 1989, 10-year survival for all children with cancer calculated by the period method for the 1985-89 period was 58%, while it was 43% when calculated by traditional 'cohort' life-table analysis (based on children diagnosed in 1975-79). ", "The period method provided a better estimate of the true 10-year survival of 62%, observed 10 years later in the cohort of patients diagnosed in 1985-89. ", "Similar results were observed for each of the common groups of childhood cancer. ", "Period analysis is especially useful for monitoring childhood cancer survival, because at a given point in time it provides more timely estimates of long-term survival expectations than the cohort life-table method. ", "Using the ACCIS database, up-to-date estimates of period survival for childhood cancer are derived in subsequent papers in this journal." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.007518796992481203, 0, 0.007874015748031496, 0, 0, 0, 0, 0, 0.007352941176470588 ]
0.002527
5
[ { "analysis_explanation": null, "end": 149, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134 }, { "analysis_explanation": null, "end": 510, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 502 }, { "analysis_explanation": null, "end": 542, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 521 }, { "analysis_explanation": null, "end": 590, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 579 }, { "analysis_explanation": null, "end": 634, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 630 }, { "analysis_explanation": null, "end": 643, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 636 }, { "analysis_explanation": null, "end": 729, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 722 }, { "analysis_explanation": null, "end": 862, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 855 }, { "analysis_explanation": null, "end": 929, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 922 }, { "analysis_explanation": null, "end": 970, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 956 }, { "analysis_explanation": null, "end": 1017, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1010 } ]
[ "/*-\n * Copyright (c) 1990, 1993, 1994\n *\tThe Regents of the University of California. ", " All rights reserved.", "\n *\n * This code is derived from software contributed to Berkeley by\n * Margo Seltzer.", "\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. ", "Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.", "\n * 2. ", "Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.", "\n * 3. ", "All advertising materials mentioning features or use of this software\n * must display the following acknowledgement:\n *\tThis product includes software developed by the University of\n *\tCalifornia, Berkeley and its contributors.", "\n * 4. ", "Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.", "\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. ", " IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.", "\n */\n\n#if defined(LIBC_SCCS) && !", "defined(lint)\nstatic char sccsid[] = \"@(#)hash.c\t8.9 (Berkeley) 6/16/94\";\n#endif /* LIBC_SCCS and not lint */\n\n#include <sys/param.h>\n#include <sys/stat.h>\n\n#include <errno.h>\n#include <fcntl.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n#include <unistd.h>\n#ifdef DEBUG\n#include <assert.h>\n#endif\n\n#include <db.h>\n#include \"hash.h\"\n#include \"page.h\"\n#include \"extern.h\"\n\nstatic int alloc_segs __P((HTAB *, int));\nstatic int flush_meta __P((HTAB *));\nstatic int hash_access __P((HTAB *, ACTION, DBT *, DBT *));\nstatic int hash_close __P((DB *));\nstatic int hash_delete __P((const DB *, const DBT *, u_int32_t));\nstatic int hash_fd __P((const DB *));\nstatic int hash_get __P((const DB *, const DBT *, DBT *, u_int32_t));\nstatic int hash_put __P((const DB *, DBT *, const DBT *, u_int32_t));\nstatic void *hash_realloc __P((SEGMENT **, int, int));\nstatic int hash_seq __P((const DB *, DBT *, DBT *, u_int32_t));\nstatic int hash_sync __P((const DB *, u_int32_t));\nstatic int hdestroy __P((HTAB *));\nstatic HTAB *init_hash __P((HTAB *, const char *, HASHINFO *));\nstatic int init_htab __P((HTAB *, int));\n#if BYTE_ORDER == LITTLE_ENDIAN\nstatic void swap_header __P((HTAB *));\nstatic void swap_header_copy __P((HASHHDR *, HASHHDR *));\n#endif\n\n/* Fast arithmetic, relying on powers of 2, */\n#define MOD(x, y)\t\t((x) & ((y) - 1))\n\n#define RETURN_ERROR(ERR, LOC)\t{ save_errno = ERR; goto LOC; }\n\n/* Return values */\n#define\tSUCCESS\t (0)\n#define\tERROR\t(-1)\n#define\tABNORMAL (1)\n\n#ifdef HASH_STATISTICS\nint hash_accesses, hash_collisions, hash_expansions, hash_overflows;\n#endif\n\n/************************** INTERFACE ROUTINES ***************************/\n/* OPEN/CLOSE */\n\nextern DB *\n__hash_open(file, flags, mode, info, dflags)\n\tconst char *file;\n\tint flags, mode, dflags;\n\tconst HASHINFO *info;\t/* Special directives for create */\n{\n\tHTAB *hashp;\n\tstruct stat statbuf;\n\tDB *dbp;\n\tint bpages, hdrsize, new_table, nsegs, save_errno;\n\n\tif ((flags & O_ACCMODE) == O_WRONLY) {\n\t\terrno = EINVAL;\n\t\treturn (NULL);\n\t}\n\n\tif (!(", "hashp = (HTAB *)calloc(1, sizeof(HTAB))))\n\t\treturn (NULL);\n\thashp->fp = -1;\n\n\t/*\n\t * Even if user wants write only, we need to be able to read\n\t * the actual file, so we need to open it read/write. ", "But, the\n\t * field in the hashp structure needs to be accurate so that\n\t * we can check accesses.", "\n\t */\n\thashp->flags = flags;\n\n\tnew_table = 0;\n\tif (!", "file || (flags & O_TRUNC) ||\n\t (stat(file, &statbuf) && (errno == ENOENT))) {\n\t\tif (errno == ENOENT)\n\t\t\terrno = 0; /* Just in case someone looks at errno */\n\t\tnew_table = 1;\n\t}\n\tif (file) {\n\t\tif ((hashp->fp = open(file, flags, mode)) == -1)\n\t\t\tRETURN_ERROR(errno, error0);\n\t\t(void)fcntl(hashp->fp, F_SETFD, 1);\n\t}\n\tif (new_table) {\n\t\tif (!(", "hashp = init_hash(hashp, file, (HASHINFO *)info)))\n\t\t\tRETURN_ERROR(errno, error1);\n\t} else {\n\t\t/* Table already exists */\n\t\tif (info && info->hash)\n\t\t\thashp->hash = info->hash;\n\t\telse\n\t\t\thashp->hash = __default_hash;\n\n\t\thdrsize = read(hashp->fp, &hashp->hdr, sizeof(HASHHDR));\n#if BYTE_ORDER == LITTLE_ENDIAN\n\t\tswap_header(hashp);\n#endif\n\t\tif (hdrsize == -1)\n\t\t\tRETURN_ERROR(errno, error1);\n\t\tif (hdrsize !", "= sizeof(HASHHDR))\n\t\t\tRETURN_ERROR(EFTYPE, error1);\n\t\t/* Verify file type, versions and hash function */\n\t\tif (hashp->MAGIC !", "= HASHMAGIC)\n\t\t\tRETURN_ERROR(EFTYPE, error1);\n#define\tOLDHASHVERSION\t1\n\t\tif (hashp->VERSION !", "= HASHVERSION &&\n\t\t hashp->VERSION !", "= OLDHASHVERSION)\n\t\t\tRETURN_ERROR(EFTYPE, error1);\n\t\tif (hashp->hash(CHARKEY, sizeof(CHARKEY)) !", "= hashp->H_CHARKEY)\n\t\t\tRETURN_ERROR(EFTYPE, error1);\n\t\t/*\n\t\t * Figure out how many segments we need. ", " Max_Bucket is the\n\t\t * maximum bucket number, so the number of buckets is\n\t\t * max_bucket + 1.", "\n\t\t */\n\t\tnsegs = (hashp->MAX_BUCKET + 1 + hashp->SGSIZE - 1) /\n\t\t\t hashp->SGSIZE;\n\t\thashp->nsegs = 0;\n\t\tif (alloc_segs(hashp, nsegs))\n\t\t\t/*\n\t\t\t * If alloc_segs fails, table will have been destroyed\n\t\t\t * and errno will have been set.", "\n\t\t\t */\n\t\t\treturn (NULL);\n\t\t/* Read in bitmaps */\n\t\tbpages = (hashp->SPARES[hashp->OVFL_POINT] +\n\t\t (hashp->BSIZE << BYTE_SHIFT) - 1) >>\n\t\t (hashp->BSHIFT + BYTE_SHIFT);\n\n\t\thashp->nmaps = bpages;\n\t\t(void)memset(&hashp->mapp[0], 0, bpages * sizeof(u_int32_t *));\n\t}\n\n\t/* Initialize Buffer Manager */\n\tif (info && info->cachesize)\n\t\t__buf_init(hashp, info->cachesize);\n\telse\n\t\t__buf_init(hashp, DEF_BUFSIZE);\n\n\thashp->new_file = new_table;\n\thashp->save_file = file && (hashp->flags & O_RDWR);\n\thashp->cbucket = -1;\n\tif (!(", "dbp = (DB *)malloc(sizeof(DB)))) {\n\t\tsave_errno = errno;\n\t\thdestroy(hashp);\n\t\terrno = save_errno;\n\t\treturn (NULL);\n\t}\n\tdbp->internal = hashp;\n\tdbp->close = hash_close;\n\tdbp->del = hash_delete;\n\tdbp->fd = hash_fd;\n\tdbp->get = hash_get;\n\tdbp->put = hash_put;\n\tdbp->seq = hash_seq;\n\tdbp->sync = hash_sync;\n\tdbp->type = DB_HASH;\n\n#ifdef DEBUG\n\t(void)fprintf(stderr,\n\"%s\\n%s%x\\n%s%d\\n%s%d\\n%s%d\\n%s%d\\n%s%d\\n%s%d\\n%s%d\\n%s%d\\n%s%d\\n%s%x\\n%s%x\\n%s%d\\n%s%d\\n\",\n\t \"init_htab:\",\n\t \"TABLE POINTER \", hashp,\n\t \"BUCKET SIZE \", hashp->BSIZE,\n\t \"BUCKET SHIFT \", hashp->BSHIFT,\n\t \"DIRECTORY SIZE \", hashp->DSIZE,\n\t \"SEGMENT SIZE \", hashp->SGSIZE,\n\t \"SEGMENT SHIFT \", hashp->SSHIFT,\n\t \"FILL FACTOR \", hashp->FFACTOR,\n\t \"MAX BUCKET \", hashp->MAX_BUCKET,\n\t \"OVFL POINT\t \", hashp->OVFL_POINT,\n\t \"LAST FREED \", hashp->LAST_FREED,\n\t \"HIGH MASK \", hashp->HIGH_MASK,\n\t \"LOW MASK \", hashp->LOW_MASK,\n\t \"NSEGS \", hashp->nsegs,\n\t \"NKEYS \", hashp->NKEYS);\n#endif\n#ifdef HASH_STATISTICS\n\thash_overflows = hash_accesses = hash_collisions = hash_expansions = 0;\n#endif\n\treturn (dbp);\n\nerror1:\n\tif (hashp !", "= NULL)\n\t\t(void)close(hashp->fp);\n\nerror0:\n\tfree(hashp);\n\terrno = save_errno;\n\treturn (NULL);\n}\n\nstatic int\nhash_close(dbp)\n\tDB *dbp;\n{\n\tHTAB *hashp;\n\tint retval;\n\n\tif (!", "dbp)\n\t\treturn (ERROR);\n\n\thashp = (HTAB *)dbp->internal;\n\tretval = hdestroy(hashp);\n\tfree(dbp);\n\treturn (retval);\n}\n\nstatic int\nhash_fd(dbp)\n\tconst DB *dbp;\n{\n\tHTAB *hashp;\n\n\tif (!", "dbp)\n\t\treturn (ERROR);\n\n\thashp = (HTAB *)dbp->internal;\n\tif (hashp->fp == -1) {\n\t\terrno = ENOENT;\n\t\treturn (-1);\n\t}\n\treturn (hashp->fp);\n}\n\n/************************** LOCAL CREATION ROUTINES **********************/\nstatic HTAB *\ninit_hash(hashp, file, info)\n\tHTAB *hashp;\n\tconst char *file;\n\tHASHINFO *info;\n{\n\tstruct stat statbuf;\n\tint nelem;\n\n\tnelem = 1;\n\thashp->NKEYS = 0;\n\thashp->LORDER = BYTE_ORDER;\n\thashp->BSIZE = DEF_BUCKET_SIZE;\n\thashp->BSHIFT = DEF_BUCKET_SHIFT;\n\thashp->SGSIZE = DEF_SEGSIZE;\n\thashp->SSHIFT = DEF_SEGSIZE_SHIFT;\n\thashp->DSIZE = DEF_DIRSIZE;\n\thashp->FFACTOR = DEF_FFACTOR;\n\thashp->hash = __default_hash;\n\tmemset(hashp->SPARES, 0, sizeof(hashp->SPARES));\n\tmemset(hashp->BITMAPS, 0, sizeof (hashp->BITMAPS));\n\n\t/* Fix bucket size to be optimal for file system */\n\tif (file !", "= NULL) {\n\t\tif (stat(file, &statbuf))\n\t\t\treturn (NULL);\n\t\thashp->BSIZE = statbuf.st_blksize;\n\t\thashp->BSHIFT = __log2(hashp->BSIZE);\n\t}\n\n\tif (info) {\n\t\tif (info->bsize) {\n\t\t\t/* Round pagesize up to power of 2 */\n\t\t\thashp->BSHIFT = __log2(info->bsize);\n\t\t\thashp->BSIZE = 1 << hashp->BSHIFT;\n\t\t\tif (hashp->BSIZE > MAX_BSIZE) {\n\t\t\t\terrno = EINVAL;\n\t\t\t\treturn (NULL);\n\t\t\t}\n\t\t}\n\t\tif (info->ffactor)\n\t\t\thashp->FFACTOR = info->ffactor;\n\t\tif (info->hash)\n\t\t\thashp->hash = info->hash;\n\t\tif (info->nelem)\n\t\t\tnelem = info->nelem;\n\t\tif (info->lorder) {\n\t\t\tif (info->lorder !", "= BIG_ENDIAN &&\n\t\t\t info->lorder !", "= LITTLE_ENDIAN) {\n\t\t\t\terrno = EINVAL;\n\t\t\t\treturn (NULL);\n\t\t\t}\n\t\t\thashp->LORDER = info->lorder;\n\t\t}\n\t}\n\t/* init_htab should destroy the table and set errno if it fails */\n\tif (init_htab(hashp, nelem))\n\t\treturn (NULL);\n\telse\n\t\treturn (hashp);\n}\n/*\n * This calls alloc_segs which may run out of memory. ", " Alloc_segs will destroy\n * the table and set errno, so we just pass the error information along.", "\n *\n * Returns 0 on No Error\n */\nstatic int\ninit_htab(hashp, nelem)\n\tHTAB *hashp;\n\tint nelem;\n{\n\tregister int nbuckets, nsegs;\n\tint l2;\n\n\t/*\n\t * Divide number of elements by the fill factor and determine a\n\t * desired number of buckets. ", " Allocate space for the next greater\n\t * power of two number of buckets.", "\n\t */\n\tnelem = (nelem - 1) / hashp->FFACTOR + 1;\n\n\tl2 = __log2(MAX(nelem, 2));\n\tnbuckets = 1 << l2;\n\n\thashp->SPARES[l2] = l2 + 1;\n\thashp->SPARES[l2 + 1] = l2 + 1;\n\thashp->OVFL_POINT = l2;\n\thashp->LAST_FREED = 2;\n\n\t/* First bitmap page is at: splitpoint l2 page offset 1 */\n\tif (__ibitmap(hashp, OADDR_OF(l2, 1), l2 + 1, 0))\n\t\treturn (-1);\n\n\thashp->MAX_BUCKET = hashp->LOW_MASK = nbuckets - 1;\n\thashp->HIGH_MASK = (nbuckets << 1) - 1;\n\thashp->HDRPAGES = ((MAX(sizeof(HASHHDR), MINHDRSIZE) - 1) >>\n\t hashp->BSHIFT) + 1;\n\n\tnsegs = (nbuckets - 1) / hashp->SGSIZE + 1;\n\tnsegs = 1 << __log2(nsegs);\n\n\tif (nsegs > hashp->DSIZE)\n\t\thashp->DSIZE = nsegs;\n\treturn (alloc_segs(hashp, nsegs));\n}\n\n/********************** DESTROY/CLOSE ROUTINES ************************/\n\n/*\n * Flushes any changes to the file if necessary and destroys the hashp\n * structure, freeing all allocated space.", "\n */\nstatic int\nhdestroy(hashp)\n\tHTAB *hashp;\n{\n\tint i, save_errno;\n\n\tsave_errno = 0;\n\n#ifdef HASH_STATISTICS\n\t(void)fprintf(stderr, \"hdestroy: accesses %ld collisions %ld\\n\",\n\t hash_accesses, hash_collisions);\n\t(void)fprintf(stderr, \"hdestroy: expansions %ld\\n\",\n\t hash_expansions);\n\t(void)fprintf(stderr, \"hdestroy: overflows %ld\\n\",\n\t hash_overflows);\n\t(void)fprintf(stderr, \"keys %ld maxp %d segmentcount %d\\n\",\n\t hashp->NKEYS, hashp->MAX_BUCKET, hashp->nsegs);\n\n\tfor (i = 0; i < NCACHED; i++)\n\t\t(void)fprintf(stderr,\n\t\t \"spares[%d] = %d\\n\", i, hashp->SPARES[i]);\n#endif\n\t/*\n\t * Call on buffer manager to free buffers, and if required,\n\t * write them to disk.", "\n\t */\n\tif (__buf_free(hashp, 1, hashp->save_file))\n\t\tsave_errno = errno;\n\tif (hashp->dir) {\n\t\tfree(*hashp->dir);\t/* Free initial segments */\n\t\t/* Free extra segments */\n\t\twhile (hashp->exsegs--)\n\t\t\tfree(hashp->dir[--hashp->nsegs]);\n\t\tfree(hashp->dir);\n\t}\n\tif (flush_meta(hashp) && !", "save_errno)\n\t\tsave_errno = errno;\n\t/* Free Bigmaps */\n\tfor (i = 0; i < hashp->nmaps; i++)\n\t\tif (hashp->mapp[i])\n\t\t\tfree(hashp->mapp[i]);\n\n\tif (hashp->fp !", "= -1)\n\t\t(void)close(hashp->fp);\n\n\tfree(hashp);\n\n\tif (save_errno) {\n\t\terrno = save_errno;\n\t\treturn (ERROR);\n\t}\n\treturn (SUCCESS);\n}\n/*\n * Write modified pages to disk\n *\n * Returns:\n *\t 0 == OK\n *\t-1 ERROR\n */\nstatic int\nhash_sync(dbp, flags)\n\tconst DB *dbp;\n\tu_int32_t flags;\n{\n\tHTAB *hashp;\n\n\tif (flags !", "= 0) {\n\t\terrno = EINVAL;\n\t\treturn (ERROR);\n\t}\n\n\tif (!", "dbp)\n\t\treturn (ERROR);\n\n\thashp = (HTAB *)dbp->internal;\n\tif (!", "hashp->save_file)\n\t\treturn (0);\n\tif (__buf_free(hashp, 0, 1) || flush_meta(hashp))\n\t\treturn (ERROR);\n\thashp->new_file = 0;\n\treturn (0);\n}\n\n/*\n * Returns:\n *\t 0 == OK\n *\t-1 indicates that errno should be set\n */\nstatic int\nflush_meta(hashp)\n\tHTAB *hashp;\n{\n\tHASHHDR *whdrp;\n#if BYTE_ORDER == LITTLE_ENDIAN\n\tHASHHDR whdr;\n#endif\n\tint fp, i, wsize;\n\n\tif (!", "hashp->save_file)\n\t\treturn (0);\n\thashp->MAGIC = HASHMAGIC;\n\thashp->VERSION = HASHVERSION;\n\thashp->H_CHARKEY = hashp->hash(CHARKEY, sizeof(CHARKEY));\n\n\tfp = hashp->fp;\n\twhdrp = &hashp->hdr;\n#if BYTE_ORDER == LITTLE_ENDIAN\n\twhdrp = &whdr;\n\tswap_header_copy(&hashp->hdr, whdrp);\n#endif\n\tif ((lseek(fp, (off_t)0, SEEK_SET) == -1) ||\n\t ((wsize = write(fp, whdrp, sizeof(HASHHDR))) == -1))\n\t\treturn (-1);\n\telse\n\t\tif (wsize !", "= sizeof(HASHHDR)) {\n\t\t\terrno = EFTYPE;\n\t\t\thashp->errno = errno;\n\t\t\treturn (-1);\n\t\t}\n\tfor (i = 0; i < NCACHED; i++)\n\t\tif (hashp->mapp[i])\n\t\t\tif (__put_page(hashp, (char *)hashp->mapp[i],\n\t\t\t\thashp->BITMAPS[i], 0, 1))\n\t\t\t\treturn (-1);\n\treturn (0);\n}\n\n/*******************************SEARCH ROUTINES *****************************/\n/*\n * All the access routines return\n *\n * Returns:\n *\t 0 on SUCCESS\n *\t 1 to indicate an external ERROR (i.e. key not found, etc)\n *\t-1 to indicate an internal ERROR (i.e. out of memory, etc)\n */\nstatic int\nhash_get(dbp, key, data, flag)\n\tconst DB *dbp;\n\tconst DBT *key;\n\tDBT *data;\n\tu_int32_t flag;\n{\n\tHTAB *hashp;\n\n\thashp = (HTAB *)dbp->internal;\n\tif (flag) {\n\t\thashp->errno = errno = EINVAL;\n\t\treturn (ERROR);\n\t}\n\treturn (hash_access(hashp, HASH_GET, (DBT *)key, data));\n}\n\nstatic int\nhash_put(dbp, key, data, flag)\n\tconst DB *dbp;\n\tDBT *key;\n\tconst DBT *data;\n\tu_int32_t flag;\n{\n\tHTAB *hashp;\n\n\thashp = (HTAB *)dbp->internal;\n\tif (flag && flag !", "= R_NOOVERWRITE) {\n\t\thashp->errno = errno = EINVAL;\n\t\treturn (ERROR);\n\t}\n\tif ((hashp->flags & O_ACCMODE) == O_RDONLY) {\n\t\thashp->errno = errno = EPERM;\n\t\treturn (ERROR);\n\t}\n\treturn (hash_access(hashp, flag == R_NOOVERWRITE ?", "\n\t HASH_PUTNEW : HASH_PUT, (DBT *)key, (DBT *)data));\n}\n\nstatic int\nhash_delete(dbp, key, flag)\n\tconst DB *dbp;\n\tconst DBT *key;\n\tu_int32_t flag;\t\t/* Ignored */\n{\n\tHTAB *hashp;\n\n\thashp = (HTAB *)dbp->internal;\n\tif (flag && flag !", "= R_CURSOR) {\n\t\thashp->errno = errno = EINVAL;\n\t\treturn (ERROR);\n\t}\n\tif ((hashp->flags & O_ACCMODE) == O_RDONLY) {\n\t\thashp->errno = errno = EPERM;\n\t\treturn (ERROR);\n\t}\n\treturn (hash_access(hashp, HASH_DELETE, (DBT *)key, NULL));\n}\n\n/*\n * Assume that hashp has been set in wrapper routine.", "\n */\nstatic int\nhash_access(hashp, action, key, val)\n\tHTAB *hashp;\n\tACTION action;\n\tDBT *key, *val;\n{\n\tregister BUFHEAD *rbufp;\n\tBUFHEAD *bufp, *save_bufp;\n\tregister u_int16_t *bp;\n\tregister int n, ndx, off, size;\n\tregister char *kp;\n\tu_int16_t pageno;\n\n#ifdef HASH_STATISTICS\n\thash_accesses++;\n#endif\n\n\toff = hashp->BSIZE;\n\tsize = key->size;\n\tkp = (char *)key->data;\n\trbufp = __get_buf(hashp, __call_hash(hashp, kp, size), NULL, 0);\n\tif (!", "rbufp)\n\t\treturn (ERROR);\n\tsave_bufp = rbufp;\n\n\t/* Pin the bucket chain */\n\trbufp->flags |= BUF_PIN;\n\tfor (bp = (u_int16_t *)rbufp->page, n = *bp++, ndx = 1; ndx < n;)\n\t\tif (bp[1] >= REAL_KEY) {\n\t\t\t/* Real key/data pair */\n\t\t\tif (size == off - *bp &&\n\t\t\t memcmp(kp, rbufp->page + *bp, size) == 0)\n\t\t\t\tgoto found;\n\t\t\toff = bp[1];\n#ifdef HASH_STATISTICS\n\t\t\thash_collisions++;\n#endif\n\t\t\tbp += 2;\n\t\t\tndx += 2;\n\t\t} else if (bp[1] == OVFLPAGE) {\n\t\t\trbufp = __get_buf(hashp, *bp, rbufp, 0);\n\t\t\tif (!", "rbufp) {\n\t\t\t\tsave_bufp->flags &= ~BUF_PIN;\n\t\t\t\treturn (ERROR);\n\t\t\t}\n\t\t\t/* FOR LOOP INIT */\n\t\t\tbp = (u_int16_t *)rbufp->page;\n\t\t\tn = *bp++;\n\t\t\tndx = 1;\n\t\t\toff = hashp->BSIZE;\n\t\t} else if (bp[1] < REAL_KEY) {\n\t\t\tif ((ndx =\n\t\t\t __find_bigpair(hashp, rbufp, ndx, kp, size)) > 0)\n\t\t\t\tgoto found;\n\t\t\tif (ndx == -2) {\n\t\t\t\tbufp = rbufp;\n\t\t\t\tif (!(", "pageno =\n\t\t\t\t __find_last_page(hashp, &bufp))) {\n\t\t\t\t\tndx = 0;\n\t\t\t\t\trbufp = bufp;\n\t\t\t\t\tbreak;\t/* FOR */\n\t\t\t\t}\n\t\t\t\trbufp = __get_buf(hashp, pageno, bufp, 0);\n\t\t\t\tif (!", "rbufp) {\n\t\t\t\t\tsave_bufp->flags &= ~BUF_PIN;\n\t\t\t\t\treturn (ERROR);\n\t\t\t\t}\n\t\t\t\t/* FOR LOOP INIT */\n\t\t\t\tbp = (u_int16_t *)rbufp->page;\n\t\t\t\tn = *bp++;\n\t\t\t\tndx = 1;\n\t\t\t\toff = hashp->BSIZE;\n\t\t\t} else {\n\t\t\t\tsave_bufp->flags &= ~BUF_PIN;\n\t\t\t\treturn (ERROR);\n\t\t\t}\n\t\t}\n\n\t/* Not found */\n\tswitch (action) {\n\tcase HASH_PUT:\n\tcase HASH_PUTNEW:\n\t\tif (__addel(hashp, rbufp, key, val)) {\n\t\t\tsave_bufp->flags &= ~BUF_PIN;\n\t\t\treturn (ERROR);\n\t\t} else {\n\t\t\tsave_bufp->flags &= ~BUF_PIN;\n\t\t\treturn (SUCCESS);\n\t\t}\n\tcase HASH_GET:\n\tcase HASH_DELETE:\n\tdefault:\n\t\tsave_bufp->flags &= ~BUF_PIN;\n\t\treturn (ABNORMAL);\n\t}\n\nfound:\n\tswitch (action) {\n\tcase HASH_PUTNEW:\n\t\tsave_bufp->flags &= ~BUF_PIN;\n\t\treturn (ABNORMAL);\n\tcase HASH_GET:\n\t\tbp = (u_int16_t *)rbufp->page;\n\t\tif (bp[ndx + 1] < REAL_KEY) {\n\t\t\tif (__big_return(hashp, rbufp, ndx, val, 0))\n\t\t\t\treturn (ERROR);\n\t\t} else {\n\t\t\tval->data = (u_char *)rbufp->page + (int)bp[ndx + 1];\n\t\t\tval->size = bp[ndx] - bp[ndx + 1];\n\t\t}\n\t\tbreak;\n\tcase HASH_PUT:\n\t\tif ((__delpair(hashp, rbufp, ndx)) ||\n\t\t (__addel(hashp, rbufp, key, val))) {\n\t\t\tsave_bufp->flags &= ~BUF_PIN;\n\t\t\treturn (ERROR);\n\t\t}\n\t\tbreak;\n\tcase HASH_DELETE:\n\t\tif (__delpair(hashp, rbufp, ndx))\n\t\t\treturn (ERROR);\n\t\tbreak;\n\tdefault:\n\t\tabort();\n\t}\n\tsave_bufp->flags &= ~BUF_PIN;\n\treturn (SUCCESS);\n}\n\nstatic int\nhash_seq(dbp, key, data, flag)\n\tconst DB *dbp;\n\tDBT *key, *data;\n\tu_int32_t flag;\n{\n\tregister u_int32_t bucket;\n\tregister BUFHEAD *bufp;\n\tHTAB *hashp;\n\tu_int16_t *bp, ndx;\n\n\thashp = (HTAB *)dbp->internal;\n\tif (flag && flag !", "= R_FIRST && flag !", "= R_NEXT) {\n\t\thashp->errno = errno = EINVAL;\n\t\treturn (ERROR);\n\t}\n#ifdef HASH_STATISTICS\n\thash_accesses++;\n#endif\n\tif ((hashp->cbucket < 0) || (flag == R_FIRST)) {\n\t\thashp->cbucket = 0;\n\t\thashp->cndx = 1;\n\t\thashp->cpage = NULL;\n\t}\n\n\tfor (bp = NULL; !", "bp || !", "bp[0]; ) {\n\t\tif (!(", "bufp = hashp->cpage)) {\n\t\t\tfor (bucket = hashp->cbucket;\n\t\t\t bucket <= hashp->MAX_BUCKET;\n\t\t\t bucket++, hashp->cndx = 1) {\n\t\t\t\tbufp = __get_buf(hashp, bucket, NULL, 0);\n\t\t\t\tif (!", "bufp)\n\t\t\t\t\treturn (ERROR);\n\t\t\t\thashp->cpage = bufp;\n\t\t\t\tbp = (u_int16_t *)bufp->page;\n\t\t\t\tif (bp[0])\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t\thashp->cbucket = bucket;\n\t\t\tif (hashp->cbucket > hashp->MAX_BUCKET) {\n\t\t\t\thashp->cbucket = -1;\n\t\t\t\treturn (ABNORMAL);\n\t\t\t}\n\t\t} else\n\t\t\tbp = (u_int16_t *)hashp->cpage->page;\n\n#ifdef DEBUG\n\t\tassert(bp);\n\t\tassert(bufp);\n#endif\n\t\twhile (bp[hashp->cndx + 1] == OVFLPAGE) {\n\t\t\tbufp = hashp->cpage =\n\t\t\t __get_buf(hashp, bp[hashp->cndx], bufp, 0);\n\t\t\tif (!", "bufp)\n\t\t\t\treturn (ERROR);\n\t\t\tbp = (u_int16_t *)(bufp->page);\n\t\t\thashp->cndx = 1;\n\t\t}\n\t\tif (!", "bp[0]) {\n\t\t\thashp->cpage = NULL;\n\t\t\t++hashp->cbucket;\n\t\t}\n\t}\n\tndx = hashp->cndx;\n\tif (bp[ndx + 1] < REAL_KEY) {\n\t\tif (__big_keydata(hashp, bufp, key, data, 1))\n\t\t\treturn (ERROR);\n\t} else {\n\t\tkey->data = (u_char *)hashp->cpage->page + bp[ndx];\n\t\tkey->size = (ndx > 1 ? ", "bp[ndx - 1] : hashp->BSIZE) - bp[ndx];\n\t\tdata->data = (u_char *)hashp->cpage->page + bp[ndx + 1];\n\t\tdata->size = bp[ndx] - bp[ndx + 1];\n\t\tndx += 2;\n\t\tif (ndx > bp[0]) {\n\t\t\thashp->cpage = NULL;\n\t\t\thashp->cbucket++;\n\t\t\thashp->cndx = 1;\n\t\t} else\n\t\t\thashp->cndx = ndx;\n\t}\n\treturn (SUCCESS);\n}\n\n/********************************* UTILITIES ************************/\n\n/*\n * Returns:\n *\t 0 ==> OK\n *\t-1 ==> Error\n */\nextern int\n__expand_table(hashp)\n\tHTAB *hashp;\n{\n\tu_int32_t old_bucket, new_bucket;\n\tint dirsize, new_segnum, spare_ndx;\n\n#ifdef HASH_STATISTICS\n\thash_expansions++;\n#endif\n\tnew_bucket = ++hashp->MAX_BUCKET;\n\told_bucket = (hashp->MAX_BUCKET & hashp->LOW_MASK);\n\n\tnew_segnum = new_bucket >> hashp->SSHIFT;\n\n\t/* Check if we need a new segment */\n\tif (new_segnum >= hashp->nsegs) {\n\t\t/* Check if we need to expand directory */\n\t\tif (new_segnum >= hashp->DSIZE) {\n\t\t\t/* Reallocate directory */\n\t\t\tdirsize = hashp->DSIZE * sizeof(SEGMENT *);\n\t\t\tif (!", "hash_realloc(&hashp->dir, dirsize, dirsize << 1))\n\t\t\t\treturn (-1);\n\t\t\thashp->DSIZE = dirsize << 1;\n\t\t}\n\t\tif ((hashp->dir[new_segnum] =\n\t\t (SEGMENT)calloc(hashp->SGSIZE, sizeof(SEGMENT))) == NULL)\n\t\t\treturn (-1);\n\t\thashp->exsegs++;\n\t\thashp->nsegs++;\n\t}\n\t/*\n\t * If the split point is increasing (MAX_BUCKET's log base 2\n\t * * increases), we need to copy the current contents of the spare\n\t * split bucket to the next bucket.", "\n\t */\n\tspare_ndx = __log2(hashp->MAX_BUCKET + 1);\n\tif (spare_ndx > hashp->OVFL_POINT) {\n\t\thashp->SPARES[spare_ndx] = hashp->SPARES[hashp->OVFL_POINT];\n\t\thashp->OVFL_POINT = spare_ndx;\n\t}\n\n\tif (new_bucket > hashp->HIGH_MASK) {\n\t\t/* Starting a new doubling */\n\t\thashp->LOW_MASK = hashp->HIGH_MASK;\n\t\thashp->HIGH_MASK = new_bucket | hashp->LOW_MASK;\n\t}\n\t/* Relocate records to the new bucket */\n\treturn (__split_page(hashp, old_bucket, new_bucket));\n}\n\n/*\n * If realloc guarantees that the pointer is not destroyed if the realloc\n * fails, then this routine can go away.", "\n */\nstatic void *\nhash_realloc(p_ptr, oldsize, newsize)\n\tSEGMENT **p_ptr;\n\tint oldsize, newsize;\n{\n\tregister void *p;\n\n\tif (p = malloc(newsize)) {\n\t\tmemmove(p, *p_ptr, oldsize);\n\t\tmemset((char *)p + oldsize, 0, newsize - oldsize);\n\t\tfree(*p_ptr);\n\t\t*p_ptr = p;\n\t}\n\treturn (p);\n}\n\nextern u_int32_t\n__call_hash(hashp, k, len)\n\tHTAB *hashp;\n\tchar *k;\n\tint len;\n{\n\tint n, bucket;\n\n\tn = hashp->hash(k, len);\n\tbucket = n & hashp->HIGH_MASK;\n\tif (bucket > hashp->MAX_BUCKET)\n\t\tbucket = bucket & hashp->LOW_MASK;\n\treturn (bucket);\n}\n\n/*\n * Allocate segment table. ", " On error, destroy the table and set errno.", "\n *\n * Returns 0 on success\n */\nstatic int\nalloc_segs(hashp, nsegs)\n\tHTAB *hashp;\n\tint nsegs;\n{\n\tregister int i;\n\tregister SEGMENT store;\n\n\tint save_errno;\n\n\tif ((hashp->dir =\n\t (SEGMENT *)calloc(hashp->DSIZE, sizeof(SEGMENT *))) == NULL) {\n\t\tsave_errno = errno;\n\t\t(void)hdestroy(hashp);\n\t\terrno = save_errno;\n\t\treturn (-1);\n\t}\n\t/* Allocate segments */\n\tif ((store =\n\t (SEGMENT)calloc(nsegs << hashp->SSHIFT, sizeof(SEGMENT))) == NULL) {\n\t\tsave_errno = errno;\n\t\t(void)hdestroy(hashp);\n\t\terrno = save_errno;\n\t\treturn (-1);\n\t}\n\tfor (i = 0; i < nsegs; i++, hashp->nsegs++)\n\t\thashp->dir[i] = &store[i << hashp->SSHIFT];\n\treturn (0);\n}\n\n#if BYTE_ORDER == LITTLE_ENDIAN\n/*\n * Hashp->hdr needs to be byteswapped.", "\n */\nstatic void\nswap_header_copy(srcp, destp)\n\tHASHHDR *srcp, *destp;\n{\n\tint i;\n\n\tP_32_COPY(srcp->magic, destp->magic);\n\tP_32_COPY(srcp->version, destp->version);\n\tP_32_COPY(srcp->lorder, destp->lorder);\n\tP_32_COPY(srcp->bsize, destp->bsize);\n\tP_32_COPY(srcp->bshift, destp->bshift);\n\tP_32_COPY(srcp->dsize, destp->dsize);\n\tP_32_COPY(srcp->ssize, destp->ssize);\n\tP_32_COPY(srcp->sshift, destp->sshift);\n\tP_32_COPY(srcp->ovfl_point, destp->ovfl_point);\n\tP_32_COPY(srcp->last_freed, destp->last_freed);\n\tP_32_COPY(srcp->max_bucket, destp->max_bucket);\n\tP_32_COPY(srcp->high_mask, destp->high_mask);\n\tP_32_COPY(srcp->low_mask, destp->low_mask);\n\tP_32_COPY(srcp->ffactor, destp->ffactor);\n\tP_32_COPY(srcp->nkeys, destp->nkeys);\n\tP_32_COPY(srcp->hdrpages, destp->hdrpages);\n\tP_32_COPY(srcp->h_charkey, destp->h_charkey);\n\tfor (i = 0; i < NCACHED; i++) {\n\t\tP_32_COPY(srcp->spares[i], destp->spares[i]);\n\t\tP_16_COPY(srcp->bitmaps[i], destp->bitmaps[i]);\n\t}\n}\n\nstatic void\nswap_header(hashp)\n\tHTAB *hashp;\n{\n\tHASHHDR *hdrp;\n\tint i;\n\n\thdrp = &hashp->hdr;\n\n\tM_32_SWAP(hdrp->magic);\n\tM_32_SWAP(hdrp->version);\n\tM_32_SWAP(hdrp->lorder);\n\tM_32_SWAP(hdrp->bsize);\n\tM_32_SWAP(hdrp->bshift);\n\tM_32_SWAP(hdrp->dsize);\n\tM_32_SWAP(hdrp->ssize);\n\tM_32_SWAP(hdrp->sshift);\n\tM_32_SWAP(hdrp->ovfl_point);\n\tM_32_SWAP(hdrp->last_freed);\n\tM_32_SWAP(hdrp->max_bucket);\n\tM_32_SWAP(hdrp->high_mask);\n\tM_32_SWAP(hdrp->low_mask);\n\tM_32_SWAP(hdrp->ffactor);\n\tM_32_SWAP(hdrp->nkeys);\n\tM_32_SWAP(hdrp->hdrpages);\n\tM_32_SWAP(hdrp->h_charkey);\n\tfor (i = 0; i < NCACHED; i++) {\n\t\tM_32_SWAP(hdrp->spares[i]);\n\t\tM_16_SWAP(hdrp->bitmaps[i]);\n\t}\n}\n#endif\n" ]
{ "pile_set_name": "Github" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0.004347826086956522, 0, 0.0051813471502590676, 0, 0.0056925996204933585, 0.030303030303030304, 0.00682261208576998, 0.015151515151515152, 0, 0, 0.0058309037900874635, 0.009852216748768473, 0, 0.021505376344086023, 0.02564102564102564, 0.010416666666666666, 0, 0, 0.004291845493562232, 0.009505703422053232, 0.007588532883642495, 0.01764705882352941, 0.00558659217877095, 0.007509386733416771, 0.008896797153024912, 0.02702702702702703, 0.009966777408637873, 0, 0, 0, 0.0034207525655644243, 0.004424778761061947, 0.0035460992907801418, 0.006493506493506494, 0.013114754098360656, 0.018867924528301886, 0, 0.0056657223796034, 0.011876484560570071, 0.013278855975485188, 0.008928571428571428, 0.017241379310344827, 0.013888888888888888, 0.011363636363636364, 0.006072874493927126, 0.005847953216374269, 0.005917159763313609, 0.008563899868247694, 0, 0.02, 0, 0.05263157894736842, 0.005434782608695652, 0.010570824524312896, 0, 0.007462686567164179, 0.007337526205450734, 0.011764705882352941, 0.001763668430335097, 0.005385996409335727, 0, 0.005625879043600563, 0.005572755417956657 ]
0.007476
5
[ { "analysis_explanation": null, "end": 25, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21 }, { "analysis_explanation": null, "end": 31, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27 }, { "analysis_explanation": null, "end": 37, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33 }, { "analysis_explanation": null, "end": 190, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177 }, { "analysis_explanation": null, "end": 906, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 896 }, { "analysis_explanation": null, "end": 916, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 908 }, { "analysis_explanation": null, "end": 1500, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1491 }, { "analysis_explanation": null, "end": 1727, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1717 }, { "analysis_explanation": null, "end": 1976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1965 }, { "analysis_explanation": null, "end": 2006, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1998 }, { "analysis_explanation": null, "end": 2963, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2953 }, { "analysis_explanation": null, "end": 2988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2984 }, { "analysis_explanation": null, "end": 3115, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3102 }, { "analysis_explanation": null, "end": 3209, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3202 }, { "analysis_explanation": null, "end": 3367, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3359 }, { "analysis_explanation": null, "end": 3703, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3697 }, { "analysis_explanation": null, "end": 3823, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3818 }, { "analysis_explanation": null, "end": 3868, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3858 }, { "analysis_explanation": null, "end": 4004, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3997 }, { "analysis_explanation": null, "end": 4010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4006 }, { "analysis_explanation": null, "end": 4226, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4221 }, { "analysis_explanation": null, "end": 4330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4321 }, { "analysis_explanation": null, "end": 5988, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5976 }, { "analysis_explanation": null, "end": 6404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6399 }, { "analysis_explanation": null, "end": 6454, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6447 }, { "analysis_explanation": null, "end": 7060, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7047 }, { "analysis_explanation": null, "end": 7273, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7256 }, { "analysis_explanation": null, "end": 7561, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7558 }, { "analysis_explanation": null, "end": 7583, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7578 }, { "analysis_explanation": null, "end": 7718, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7715 }, { "analysis_explanation": null, "end": 7734, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7729 }, { "analysis_explanation": null, "end": 7760, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7757 }, { "analysis_explanation": null, "end": 7789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7782 }, { "analysis_explanation": null, "end": 7795, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7791 }, { "analysis_explanation": null, "end": 7927, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7922 }, { "analysis_explanation": null, "end": 7940, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7937 }, { "analysis_explanation": null, "end": 7969, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7962 }, { "analysis_explanation": null, "end": 7975, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7971 }, { "analysis_explanation": null, "end": 8208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8203 }, { "analysis_explanation": null, "end": 8280, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8271 }, { "analysis_explanation": null, "end": 8356, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8344 }, { "analysis_explanation": null, "end": 8425, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8412 }, { "analysis_explanation": null, "end": 8807, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8795 }, { "analysis_explanation": null, "end": 9254, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9243 }, { "analysis_explanation": null, "end": 9353, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9340 }, { "analysis_explanation": null, "end": 9814, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9809 }, { "analysis_explanation": null, "end": 9826, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9817 }, { "analysis_explanation": null, "end": 10112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10098 }, { "analysis_explanation": null, "end": 10221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10204 }, { "analysis_explanation": null, "end": 10246, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10229 }, { "analysis_explanation": null, "end": 10346, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10335 }, { "analysis_explanation": null, "end": 10633, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10623 }, { "analysis_explanation": null, "end": 10877, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10869 }, { "analysis_explanation": null, "end": 10960, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10955 }, { "analysis_explanation": null, "end": 10982, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10972 }, { "analysis_explanation": null, "end": 11058, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11050 }, { "analysis_explanation": null, "end": 11338, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11335 }, { "analysis_explanation": null, "end": 11474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11471 }, { "analysis_explanation": null, "end": 11619, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11605 }, { "analysis_explanation": null, "end": 11663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11656 }, { "analysis_explanation": null, "end": 11907, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11900 }, { "analysis_explanation": null, "end": 12320, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12315 }, { "analysis_explanation": null, "end": 12393, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12390 }, { "analysis_explanation": null, "end": 12422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12415 }, { "analysis_explanation": null, "end": 12428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12424 }, { "analysis_explanation": null, "end": 12506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12492 }, { "analysis_explanation": null, "end": 12705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12700 }, { "analysis_explanation": null, "end": 12717, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12710 }, { "analysis_explanation": null, "end": 12757, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12744 }, { "analysis_explanation": null, "end": 12864, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12855 }, { "analysis_explanation": null, "end": 13027, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13014 }, { "analysis_explanation": null, "end": 13124, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13116 }, { "analysis_explanation": null, "end": 13292, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13285 }, { "analysis_explanation": null, "end": 13390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13376 }, { "analysis_explanation": null, "end": 13873, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13868 }, { "analysis_explanation": null, "end": 13884, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13877 }, { "analysis_explanation": null, "end": 13890, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13886 }, { "analysis_explanation": null, "end": 14154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14149 }, { "analysis_explanation": null, "end": 14165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14158 }, { "analysis_explanation": null, "end": 14171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14167 }, { "analysis_explanation": null, "end": 14359, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14344 }, { "analysis_explanation": null, "end": 14431, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14418 }, { "analysis_explanation": null, "end": 14606, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14601 }, { "analysis_explanation": null, "end": 14617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14610 }, { "analysis_explanation": null, "end": 14623, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14619 }, { "analysis_explanation": null, "end": 14806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14791 }, { "analysis_explanation": null, "end": 14916, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14911 }, { "analysis_explanation": null, "end": 15013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15008 }, { "analysis_explanation": null, "end": 15696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15692 }, { "analysis_explanation": null, "end": 16132, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16114 }, { "analysis_explanation": null, "end": 16245, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16227 }, { "analysis_explanation": null, "end": 16375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16369 }, { "analysis_explanation": null, "end": 17149, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17143 }, { "analysis_explanation": null, "end": 17840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17835 }, { "analysis_explanation": null, "end": 17872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17865 }, { "analysis_explanation": null, "end": 17878, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17874 }, { "analysis_explanation": null, "end": 18404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18400 }, { "analysis_explanation": null, "end": 18768, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18754 }, { "analysis_explanation": null, "end": 18852, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18838 }, { "analysis_explanation": null, "end": 19059, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19053 }, { "analysis_explanation": null, "end": 19104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19087 }, { "analysis_explanation": null, "end": 19241, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19235 }, { "analysis_explanation": null, "end": 19690, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19685 }, { "analysis_explanation": null, "end": 19917, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19907 }, { "analysis_explanation": null, "end": 20003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19993 }, { "analysis_explanation": null, "end": 20084, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20074 }, { "analysis_explanation": null, "end": 20321, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20300 }, { "analysis_explanation": null, "end": 20783, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20766 }, { "analysis_explanation": null, "end": 21516, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21511 }, { "analysis_explanation": null, "end": 21536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21529 }, { "analysis_explanation": null, "end": 21857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21852 }, { "analysis_explanation": null, "end": 21931, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21917 }, { "analysis_explanation": null, "end": 22041, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22034 }, { "analysis_explanation": null, "end": 22190, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22177 }, { "analysis_explanation": null, "end": 22241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22234 }, { "analysis_explanation": null, "end": 22446, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22433 }, { "analysis_explanation": null, "end": 22542, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22535 }, { "analysis_explanation": null, "end": 23484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23479 }, { "analysis_explanation": null, "end": 23496, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23489 }, { "analysis_explanation": null, "end": 23502, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23498 }, { "analysis_explanation": null, "end": 2015, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 2008 }, { "analysis_explanation": null, "end": 8820, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8810 }, { "analysis_explanation": null, "end": 1200, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1188 }, { "analysis_explanation": null, "end": 1430, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1418 }, { "analysis_explanation": null, "end": 1665, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1653 } ]
[ "Fábio Motta/Estadão Conteúdo Na última semana, Savino decidiu que Adélio é “portador de Transtorno Delirante Persistente” e, por isso, inimputável\n\n\n\nO juiz da 3ª Vara Federal, Bruno Savino, responsável pela ação penal de Adélio Bispo de Oliveira, acusado de esfaquear Jair Bolsonaro (PSL) durante as eleições de 2018, convidou o presidente a depor contra o réu.", "\n\nSegundo o magistrado, Adélio e a defesa deverão formular em até 48 horas as suas perguntas, que serão transmitidas por ofício a Bolsonaro, que deverá devolvê-las até o dia 7 de maio, “último dia útil anterior à data da audiência de instrução designada para eventual oitiva das testemunhas de acusação”.", "\n\nNa última semana, Savino decidiu que Adélio é “portador de Transtorno Delirante Persistente” e, por isso, inimputável, ou seja, não pode ser punido criminalmente. ", "Com isso, se for condenado, ele deve ir para um manicômio judiciário e não para uma penitenciária. ", "Até o julgamento, permanecerá no Presídio Federal de Campo Grande (MS) — que, segundo a sua defesa, tem “estrutura para o tratamento adequado” da doença.", "\n\nO juiz afirmou ainda que o presidente pode escolher como prestar o depoimento.", "\n\n“Na hipótese de preferir que o seu depoimento seja prestado na presença da autoridade Judicial, o assistente da acusação deverá ser intimado a, no prazo de três dias, indicar o dia, a hora e o local para ser inquirido, bem como dizer a forma por meio da qual deseja que o ato seja realizado, se por carta precatória ou por meio de videoconferência, rogando ao Excelentíssimo Presidente da República que o ato seja marcado para data anterior à da audiência de instrução, a ser realizada no dia 10/06/2019 às 14h”.", "\n\n*Com informações do Estadão Conteúdo" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.027624309392265192, 0.009868421052631578, 0.01818181818181818, 0.020202020202020204, 0, 0.0125, 0.011673151750972763, 0.02631578947368421 ]
0.015796
5
[ { "analysis_explanation": null, "end": 11, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 31, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20 }, { "analysis_explanation": null, "end": 45, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32 }, { "analysis_explanation": null, "end": 61, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47 }, { "analysis_explanation": null, "end": 72, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66 }, { "analysis_explanation": null, "end": 120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88 }, { "analysis_explanation": null, "end": 189, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177 }, { "analysis_explanation": null, "end": 221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208 }, { "analysis_explanation": null, "end": 246, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222 }, { "analysis_explanation": null, "end": 283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248 }, { "analysis_explanation": null, "end": 391, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 385 }, { "analysis_explanation": null, "end": 435, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 430 }, { "analysis_explanation": null, "end": 453, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 439 }, { "analysis_explanation": null, "end": 490, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459 }, { "analysis_explanation": null, "end": 500, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 491 }, { "analysis_explanation": null, "end": 512, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 506 }, { "analysis_explanation": null, "end": 557, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 554 }, { "analysis_explanation": null, "end": 591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 579 }, { "analysis_explanation": null, "end": 682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 666 }, { "analysis_explanation": null, "end": 698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 684 }, { "analysis_explanation": null, "end": 709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 703 }, { "analysis_explanation": null, "end": 757, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 725 }, { "analysis_explanation": null, "end": 827, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 794 }, { "analysis_explanation": null, "end": 855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 846 }, { "analysis_explanation": null, "end": 860, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 857 }, { "analysis_explanation": null, "end": 886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 866 }, { "analysis_explanation": null, "end": 899, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 887 }, { "analysis_explanation": null, "end": 1060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1033 }, { "analysis_explanation": null, "end": 1102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1084 }, { "analysis_explanation": null, "end": 1195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1162 }, { "analysis_explanation": null, "end": 1220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1207 }, { "analysis_explanation": null, "end": 1272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1257 }, { "analysis_explanation": null, "end": 1414, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1407 }, { "analysis_explanation": null, "end": 1508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1484 }, { "analysis_explanation": null, "end": 1535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1521 }, { "analysis_explanation": null, "end": 1559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1547 }, { "analysis_explanation": null, "end": 1710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1694 }, { "analysis_explanation": null, "end": 1664, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 1654 } ]
[ "Q:\n\nHow to remove Hover Border (FocusRing ) of listview items in UWP?", "\n\nMy listview item consists of a TextBox as shown in the picture and I have given border thickness = \"0\" for the TextBox.", "\nBut I'm hot able to remove the Mouse Pointer Hover border(Focus Ring As Shown in Picture).", "\nWhat property should I override to remove it?", "\n\nA:\n\nThis is a border reveal effect which is part of the Fluent Design System language. ", "The effect itself is part of the controls template but you can remove it by creating a custom version of a control's template without it. ", "You can find the generic templates on this path:\n\nC:\\Program Files (x86)\\Windows Kits\\10\\DesignTime\\CommonConfiguration\\Neutral\\UAP\\\n {version}\\Generic\\generic.xaml\n\nYou can copy the default style, remove the reveal border and use your custom style instead of the default.", "\nIf you want to turn the effect off for ListView and GridView in general, you could overwrite the RevealBrush resources by \"transparent\" SolidColorBrush resources.", "\nCheck this interesting blog post from app developer who hit this problem with his app as well.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.01652892561983471, 0, 0, 0, 0, 0, 0.018404907975460124, 0, 0 ]
0.003493
5
[ { "analysis_explanation": null, "end": 684, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 633 }, { "analysis_explanation": null, "end": 941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 930 } ]
[ "This article is more than 2 years old\n\nThis article is more than 2 years old\n\nNew South Wales gave permission to clear over 7,000 hectares of native vegetation in 2015-16, the second highest rate of clearing in a decade, while the creation of new conservation areas and restoration of bushland has slumped under the Berejiklian government.", "\n\nIn 2013-14, 900 hectares was cleared in total. ", "In 2014-15 this jumped to 2,730 hectares and by 2015-16 it had increased to 7,390 hectares.", "\n\nAt the same time measures to conserve native vegetation, such as new conservation measures and restoration, slumped to the lowest level in a decade. ", "Restoration of native vegetation areas fell to 116,170 hectares in 2015-16, less than half the decade average.", "\n\nWeed removal programs also went into reverse, with just a tiny fraction of the areas being managed for weeds – 29,970 hectares compared to the decade average of 182,200 hectares.", "\n\nLand-clearing wipes out $1bn taxpayer-funded emissions gains Read more\n\nThe 2014-16 Native Vegetation report card was released following an eight-month battle by Guardian Australia in the NSW Civil and Administrative tribunal to have it released.", "\n\nThe most recent report from 2016-17 has still not been released, with the department claiming it is still not complete.", "\n\nBecause the data had not been released for three years, Guardian Australia attempted to use freedom of information laws to make it public.", "\n\nThe data is particularly important because during that time, the Berejiklian government replaced the Native Vegetation Act, with a much more liberal regime –the Biodiversity Conservation Act 2017 – which allows farms and landholders to self-assess whether they need to make a formal application to clear land using satellite maps.", "\n\nEnvironmental groups and the government’s own Office of Environment and Heritage have warned that the new regime will lead to a major increase in loss of habitat, on a scale only seen in Queensland, which is the nation’s worst state for land clearing.", "\n\nA document obtained by the Nature Conservation Council (NCC) under freedom of information revealed the new land-clearing laws would cause extensive harm to wildlife habitat but pressed ahead with the changes anyway.", "\n\n“This is damning evidence that the environment minister approved these new laws knowing they would expose 99% of identified koala habitat on private land to clearing,” NCC boss, Kate Smolski, said at the time. ", "The department also warned of a 45% spike in land clearing.", "\n\nKoalas are at the centre of a perfect storm. ", "The species is slipping away | Kevin Evans Read more\n\nThe woody vegetation report card which measures the tree cover over NSW showed fire and rural and other infrastructure development were the main causes of a major drop.", "\n\nIt revealed NSW lost 106,100 hectares (0.13% of the area of the state) in 2013–14 and 40,000 hectares (0.05% of the area of the state) in 2014–15.", "\n\nThe data lags the other data by one year. ", "The data shows clearing for crops, pasture and thinning increased slightly, by 1%, in 2013–14 compared to 2012–1 and 5% from 2013–14 to 2014–15.", "\n\nThe rate of clearing due to rural and major infrastructure increased by 23% from 2012–13 to 2013–14 and there was was a further 4% increase in the clearing rate from 2013–14 to 2014–15.", "\n\nThe loss from fire was an order of magnitude higher than the rates for other years. ", "Several large fires occurred across the Blue Mountains and the NSW Central Coast in October 2013. ", "In 2014–15 there was a significant decrease in the rate of mapped fire scars from 71,900 hectares per year to 6,700 hectares per year.", "\n\nThe new Biodiversity Conservation Act came into force in August 2017. ", "Figures on its impact may not be available for at least two years, judging by the department’s slow release of data under the old Act." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0, 0, 0, 0, 0.012096774193548387, 0, 0.007142857142857143, 0, 0.003952569169960474, 0.009216589861751152, 0.014150943396226415, 0, 0.02127659574468085, 0.009009009009009009, 0.006756756756756757, 0, 0, 0, 0, 0.01020408163265306, 0, 0, 0 ]
0.003752
5
[ { "analysis_explanation": null, "end": 37, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16 }, { "analysis_explanation": null, "end": 76, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55 }, { "analysis_explanation": null, "end": 93, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78 }, { "analysis_explanation": null, "end": 170, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163 }, { "analysis_explanation": null, "end": 219, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211 }, { "analysis_explanation": null, "end": 350, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 343 }, { "analysis_explanation": null, "end": 397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 390 }, { "analysis_explanation": null, "end": 442, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435 }, { "analysis_explanation": null, "end": 626, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618 }, { "analysis_explanation": null, "end": 702, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 695 }, { "analysis_explanation": null, "end": 888, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 878 }, { "analysis_explanation": null, "end": 1001, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 994 }, { "analysis_explanation": null, "end": 1069, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1058 }, { "analysis_explanation": null, "end": 1200, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1193 }, { "analysis_explanation": null, "end": 1339, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1328 }, { "analysis_explanation": null, "end": 1952, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1942 }, { "analysis_explanation": null, "end": 2413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2401 }, { "analysis_explanation": null, "end": 2499, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2493 }, { "analysis_explanation": null, "end": 2580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2569 }, { "analysis_explanation": null, "end": 2842, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2835 }, { "analysis_explanation": null, "end": 2906, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2899 }, { "analysis_explanation": null, "end": 2948, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2940 }, { "analysis_explanation": null, "end": 3043, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3036 }, { "analysis_explanation": null, "end": 3082, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3075 }, { "analysis_explanation": null, "end": 3093, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3086 }, { "analysis_explanation": null, "end": 3194, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3176 }, { "analysis_explanation": null, "end": 3268, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3261 }, { "analysis_explanation": null, "end": 3279, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3272 }, { "analysis_explanation": null, "end": 3363, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3352 }, { "analysis_explanation": null, "end": 3419, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3401 }, { "analysis_explanation": null, "end": 3461, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3449 }, { "analysis_explanation": null, "end": 3473, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3466 }, { "analysis_explanation": null, "end": 3666, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3655 }, { "analysis_explanation": null, "end": 3733, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3715 } ]
[ "Product Design Questionnaire\n\nHi all, I'm new on the forum but i have been riding bikes for many years, I'm a student at Salford university doing Product Design, our current brief is bike safety equipment, I have wrote a questionnaire and it would be greatly appreciated if you have 5 mins spare to fill it out for me. ", "The first link is for a more general questionnaire and the second is focused more at Dh and all mountain side\n\nI'd be interested to learn whether people who 'light up like a christmas tree' on the roads, have more or fewer incidents than riders who go for a minimal setup. ", "My personal experience when I commuted was that I felt much safer dressed in black with just one FO powerful front and rear light, than when I used multiple lights, Sam Browne belt, frame reflectors and reflective rucsac cover.", "\n\nQuestions definitely need work, too many open questions and too many where you're presuming that you already know the answer. ", "You'll find that out when you come to collecting the data.", "\nBut done and good luck.", "\n\nDon: Thanks for filling out the questionnaire and thanks for the comment, I've had a look through the results that I've got so far and with the questions being quite open its meant that I've had a wide range of answers. ", "This will help me as it has given me a few other areas too look at in my other research.", "\n\nIan: thanks for filling it out and getting back to me with your question. ", "I will sort that question out, ive forgotten to put in a year on it, should of read through it properly and been less egar to post it\n\nThanks again to those who have filled out the questionnaire it has and will be very useful for my brief" ]
{ "pile_set_name": "Pile-CC" }
[ 0.003134796238244514, 0, 0.004405286343612335, 0, 0, 0, 0.0045045045045045045, 0, 0, 0 ]
0.001204
5
[ { "analysis_explanation": null, "end": 102, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92 }, { "analysis_explanation": null, "end": 289, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283 }, { "analysis_explanation": null, "end": 767, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 757 }, { "analysis_explanation": null, "end": 1032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1029 }, { "analysis_explanation": null, "end": 1341, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1338 }, { "analysis_explanation": null, "end": 1473, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1467 }, { "analysis_explanation": null, "end": 1534, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1525 } ]
[ "Erratum to: Seasonal trend and clinical presentation of Bacillus cereus bloodstream infection: association with summer and indwelling catheter.", "\nBacillus cereus, an opportunistic pathogen, can cause fatal infection. ", "However, B. cereus bloodstream infections (BSIs) have not been well characterised. ", "From 2008 to 2013, B. cereus isolates from all of the specimens and patients with B. cereus BSIs were identified. ", "Environmental samples were collected to detect B. cereus contamination. ", "We also characterised the clinical presentation of B. cereus BSI through analyses of risk factors for BSI and mortality. ", "A total of 143 clinical B. cereus isolates was detected. ", "Fifty-one patients with nosocomial infections were diagnosed as B. cereus BSI, and 37 had contaminated blood cultures. ", "The number of B. cereus isolates and BSI patients was significantly greater from June to September than from January to April (3.4 vs. 1.0 per month and 1.4 vs. 0.2, respectively). ", "All BSIs were nosocomial and related to central or peripheral vascular catheter. ", "Urinary catheter [odds ratio (OR) 6.93, 95 % confidence interval (CI) 2.40-20.0] was the independent risk factor associated with BSI patients when compared to patients regarded as contaminated. ", "In-hospital mortality among BSI patients was 20 % and was associated with urinary catheter (OR 12.3, 95 % CI 0.67-225, p=0.045) and higher Charlson index (OR 1.99, 95 % CI 1.26-3.12). ", "The number of B. cereus isolates and BSI increased during summer. ", "Inpatients with indwelling vascular or urinary catheters should be carefully monitored for potential B. cereus BSIs." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.024096385542168676, 0.02631578947368421, 0.013888888888888888, 0.024793388429752067, 0, 0.01680672268907563, 0.011049723756906077, 0.012345679012345678, 0.010309278350515464, 0.021739130434782608, 0.030303030303030304, 0.017241379310344827 ]
0.014921
5
[ { "analysis_explanation": null, "end": 7, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 233, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224 }, { "analysis_explanation": null, "end": 315, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303 }, { "analysis_explanation": null, "end": 326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317 }, { "analysis_explanation": null, "end": 389, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380 }, { "analysis_explanation": null, "end": 468, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459 }, { "analysis_explanation": null, "end": 638, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629 }, { "analysis_explanation": null, "end": 735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 726 }, { "analysis_explanation": null, "end": 879, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 862 }, { "analysis_explanation": null, "end": 906, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 890 }, { "analysis_explanation": null, "end": 929, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 916 }, { "analysis_explanation": null, "end": 1485, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1479 }, { "analysis_explanation": null, "end": 1597, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1588 } ]
[ "Perry Beadle T.1\n\nThe Perry Beadle T.1 was a single-seat, single engine biplane built and flown in the United Kingdom in 1913. ", "In 1914 it flew with a more powerful engine and other modifications as the Perry Beadle T.2, which was acquired by the Royal Navy Air Service at the outbreak of World War I.\n\nDesign and development\nPerry, Beadle & Co. was formed by E.W. Copland Berry, a pilot, and F.P. Hyde Beadle, a technician, who were at the Royal Aircraft Factory, Farnborough together in 1912. ", " Their first product was the 1913 T.1, a single-seat tractor biplane modified the following year into the more powerful T.2. ", "The T.1 and T.2 are the only Perry Beadle types known to have flown.", "\n\nThe T.1 was a biplane with wings of equal span, constant chord and no stagger or sweep. ", " It had an essentially two bay wing structure, though a third set of simple parallel interplane struts on each wing, close to the fuselage, took the place of cabane struts. ", " Parallel chord ailerons were fitted only to the upper wing. ", "The fuselage was mounted between the wings, with gaps both above and below; the interplane gap was wide at about 5 ft 9 in (1.75 m). ", " The fuselage was flat sided and tapered to the tail, but had a curved decking which sloped down both fore and aft from the under wing cockpit. ", "This improved the pilot's forward view; a cut-out in the trailing edge of the upper wing aided his upward vision.", "\n\nAt the rear, the T.1 had a conventional tailplane and elevators but there was no fixed fin, only a deep rudder which ran between and well below the elevators to the struts that also carried the tail skid. ", " The main wheels were sprung on a pair of forward skids. ", " In the nose a 25 hp (19 kW) inverted Y Anzani 3-cylinder engine drove a two-bladed propeller.", "\n\nThe T.1 was built and flown at Beaulieu, Hampshire in 1913, with at least one flight from there to Cowes, a distance of about 8 miles (13 km). ", " In the following May a more powerful version with increased wing area and smaller interplane gap came to Brooklands, designated the T.2. ", " The extra power came from a 6-cylinder, two row Anzani 6 radial which produced 45 hp (34 kW). ", " The extra wing area was achieved by extending the upper wing by about 5 ft (1.5 m) on each side, the overhang braced by extra pairs of outward leaning struts. ", " The ailerons were now tapered. ", " The interplane gap was decreased to 4 ft 9 in (1.45 m) by attaching the lower wing to the bottom of the fuselage. ", " The undercarriage was simplified by removing the skids, leaving a simple single axle supported by pairs of inverted V struts.", "\n\nThe T.2 flew from Brooklands on 26 June 1914, piloted by Copland Berry. ", " It was later flown by others and, when war began, was requisitioned into the RNAS with serial 1322. ", " It was destroyed at Hendon the following March.", "\n\nSpecifications (T.2)\n\nReferences\n\nCategory:1910s British aircraft" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.007874015748031496, 0.01634877384196185, 0, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006896551724137931, 0.007194244604316547, 0.010526315789473684, 0, 0, 0, 0, 0.013513513513513514, 0, 0, 0 ]
0.003211
5
[ { "analysis_explanation": null, "end": 38, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 117, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99 }, { "analysis_explanation": null, "end": 125, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121 }, { "analysis_explanation": null, "end": 134, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130 }, { "analysis_explanation": null, "end": 218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202 }, { "analysis_explanation": null, "end": 408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 392 }, { "analysis_explanation": null, "end": 475, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464 }, { "analysis_explanation": null, "end": 492, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 488 }, { "analysis_explanation": null, "end": 589, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571 }, { "analysis_explanation": null, "end": 659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647 }, { "analysis_explanation": null, "end": 1684, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1679 }, { "analysis_explanation": null, "end": 1703, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1695 }, { "analysis_explanation": null, "end": 1791, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1783 }, { "analysis_explanation": null, "end": 1802, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1793 }, { "analysis_explanation": null, "end": 1810, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1806 }, { "analysis_explanation": null, "end": 1856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1851 }, { "analysis_explanation": null, "end": 1915, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1912 }, { "analysis_explanation": null, "end": 2011, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2001 }, { "analysis_explanation": null, "end": 2124, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2119 }, { "analysis_explanation": null, "end": 2585, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2575 }, { "analysis_explanation": null, "end": 2601, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2589 }, { "analysis_explanation": null, "end": 2710, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2706 }, { "analysis_explanation": null, "end": 2755, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2749 }, { "analysis_explanation": null, "end": 2775, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2770 }, { "analysis_explanation": null, "end": 2833, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2826 } ]
[ "There's more to a quality home theater than the components that make it.", "There's something to be said for style - something often ruined by ugly black cords running across your living room or up your wall.", "The IOGear GW3DHDKIT helps you avoid this by streaming not only HD video but 3D video and 5.1 audio to boot.", "\n\nThe GW3DHDKIT is simple to set up.", "Attach a transmitter to up to two sources via HDMI and attach the receiver to your TV, also via HDMI.You can send the signal up to 100 feet through walls thanks to a 5GHz signal, so you don't even have to have the source near your display.", "The MSRP of the kit sits at $379. ", "Also included with the kit is an IR blast cable and remote for switching sources." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 328, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 319 } ]
[ "Oriented polyester film, particularly biaxially oriented film composed of polyethylene terephthalate (PET), is widely used as a base for drafting film, photographic film and reprographic film, as well as for packaging and labelling applications.", "\nBecause PET film is hydrophobic and is not readily receptive to coating in most applications where the film is to serve as a base or support for other coatings, it must be first coated on one or both sides with a primer coating which adheres to the film and is receptive as well to other coatings applied to it. ", "For example, U.S. Pat. ", "Nos. ", "2,627,088 and 2,698,240 teach a primer coating for PET film comprising a terpolymer composition of vinylidene chloride, acrylic ester and itaconic acid. ", "This primer layer is said to have excellent adhesion to the polyester surface and to water or alcohol based photographic gelatin layers subsequently coated thereon.", "\nAnother known PET film primer includes copolymers of a vinylhalogenoester, such as vinylchloroacetate which may be copolymerized with numerous different monomers such as acrylic and methacrylic acids, esters and amides, olefins and vinyl alcohol as disclosed in U.S. Pat. ", "No. ", "3,674,531. ", "Such copolymers may also be crosslinked by the inclusion of melamine or urea formaldehyde resins in the composition. ", "The primed PET film is stated to exhibit enhanced adhesion to a variety of coatings applied thereto, including reprographic coatings.", "\nWhile some of these and other polyester film primer layers are effective in enhancing the adhesive qualities of PET film, it is important for the film manufacturer that scrap film made during production must be recyclable through the film-forming process. ", "Scrap film is normally comminuted, melted, extruded into the form of pellets, mixed with fresh virgin polyester, re-melted and re-fed to the film-forming extruder. ", "Temperatures of about 270.degree. ", "C. to 310.degree. ", "C. may be encountered during such processing of PET reclaim film. ", "Many of the primer compositions discussed above are not stable at such temperatures and tend to impart an undesirable yellow or black discoloration to finished oriented PET film containing significant amounts of such primed reclaim film, particularly after repeated passes through the extruder. ", "Such is the case with the vinylidene chloride-containing polymers used as PET primer layers and disclosed in U.S. Pat. ", "Nos. ", "2,627,088 and 2,698,240. ", "It is also the case with primer layers based on copolymers containing vinyl chloroacetate as disclosed in U.S. Pat. ", "No. ", "3,674,538. ", "It has been found that discoloration and degradation of these primer layers during the reclaim process is most likely attributable to the evolution of chlorine gas or hydrogen chloride in the case of chlorine-containing primer layers.", "\nAnother known primer is the thermoset, acrylic or methacrylic coatings taught in U.S. Pat. ", "No. ", "3,819,773, which can be applied to the PET film in the plant from aqueous medium. ", "Such a primer layer enhances the adhesion of organic solvent based reprographic and drafting layers applied thereto. ", "This patent also discloses that film primed with the thermoset acrylic coatings described therein may be reclaimed in the film forming extruder by mixing it with 50% by weight or more of virgin polyester and refeeding the mixture to the film-forming extruder. ", "Patentee indicates that problems of discoloration or degradation caused by certain prior art primer coatings are reduced. ", "While this is true in comparison with the chlorine-containing primers discussed above, the acrylic primer coatings of this patent crosslinked using the resinous crosslinking agents disclosed therein still are found to give rise to an undesirable yellowing of finished film containing such primed film as reclaim, particularly when compared to film based solely on virgin polymer." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0.00816326530612245, 0.003194888178913738, 0, 0, 0.006535947712418301, 0, 0.003663003663003663, 0, 0, 0, 0.007518796992481203, 0.0038910505836575876, 0, 0, 0, 0.015151515151515152, 0.003389830508474576, 0.008403361344537815, 0, 0, 0, 0, 0, 0, 0, 0, 0.012195121951219513, 0, 0, 0, 0 ]
0.002326
5
[ { "analysis_explanation": null, "end": 575, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571 }, { "analysis_explanation": null, "end": 579, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 576 }, { "analysis_explanation": null, "end": 1170, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1166 }, { "analysis_explanation": null, "end": 1174, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1171 }, { "analysis_explanation": null, "end": 2388, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2384 }, { "analysis_explanation": null, "end": 2392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2389 }, { "analysis_explanation": null, "end": 2534, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2530 }, { "analysis_explanation": null, "end": 2538, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2535 }, { "analysis_explanation": null, "end": 2875, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2871 }, { "analysis_explanation": null, "end": 1890, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1884 }, { "analysis_explanation": null, "end": 1908, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1902 } ]
[ "The present invention relates generally to the presentation of a live performance which makes use of “virtual reality-type” concepts to provide an interactive and altered perspective view for spectators. ", "By “virtual reality” is meant an altered sensory experience which differs from that which would otherwise be experienced. ", "The inventive system permits a customizable experience for individual spectators.", "\nLive theatrical performances generally involve one or more actors or performers on a stage which faces or is surrounded by an audience comprising of individual audience members. ", "The juxtaposition of stage and audience defines the perspective experienced by each audience member through the so-called “fourth wall”, the imaginary wall between the stage and the audience, which the performers on stage treat as an actual divider to give the audience the impression of viewing action in a closed room. ", "Individual audience members experience the theatrical performance based on their individual view of the performers on the stage through this fourth wall. ", "Even in productions where the fourth wall is breached such as by performers directly addressing the audience or venturing out into audience areas, an audience member's positioning still determines his or her view of the proceedings.", "\nLikewise, an individual audience member's experience is limited by selections made by the producers, director, or other creative individuals involved in the production. ", "In other words, certain scenery and costumes are selected and other aspects of the production's appearance and presentation are selected without the control or input of individual audience members. ", "Moreover, these selections are made for the audience as a whole and not customized for individual audience members. ", "Thus, each member of the audience is required to view the same stylistic elements as every other audience member regardless of personal preferences or creative notions.", "\nAlthough interactive productions have been staged where audience members vote or otherwise select from among options with respect to scenes and/or endings, the choices are made by the audience as a whole and not customizable by individual audience members. ", "Consequently, if the audience as a whole decides a scene should proceed in a certain manner in such an interactive production, each audience member is thereby obliged to experience that particular manner of proceeding. ", "Thus, while nominally interactive, individual choice falls prey to the group's decisions.", "\nWhat is desired, therefore, is an interactive live performance whereby individual spectators can select and/or alter their respective viewpoints or experience during the production." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[]
[ "ACT is a randomized clinical trial that will evaluate the efficacy of two primary care, practice-based physical activity counseling interventions (as compared to a control group) that will advocate adoption and maintenance of physical activity in 810 sedentary men and women 35-75 years of age. ", "Two years of intervention and follow-up will occur for each participant. ", "Participants will be enrolled over a period of approximately 18 months or less." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275 }, { "analysis_explanation": null, "end": 304, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295 }, { "analysis_explanation": null, "end": 446, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 415 } ]
[ "Q:\n\nDocker image prevents VM deployment\n\nI have interrupted a mvn gcloud:deploy command and I couldn't redeploy because this error message kept coming up. ", "I had deleted all self generated buckets from GCS, but still no different outcome from this.", "\n[INFO] If this is your first deployment, this may take a while.../\n[INFO] \n[INFO] If this is your first deployment, this may take a while...done.", "\n[INFO] \n\n[INFO] ERROR: (gcloud.preview.app.deploy) There is a Dockerfile in the current directory, \nand the runtime field in /target/appengine-staging/app.yaml is currently set to\n[runtime: java]. ", "To use your Dockerfile to build a custom runtime, set the runtime field \nin /target/appengine-staging/app.yaml to [runtime: custom]. ", "To continue using the [java]\nruntime, please omit the Dockerfile from this directory. ", "\n\n[ERROR] Error: gcloud app command with exit code : 1\n\nSince I suspected this \"lock\" was on Google's source files for a builder instance it later deletes, I did what it was complaining about, changed my runtime from java to custom on the app.yaml file and it redeployed. ", "\n\nI can no longer deploy my VM with a Java runtime, I still get the same error message. ", "How do I perform a clean build to get rid of this phantom docker image?", "\n\nA:\n\nTo clean the maven built target directory, you can do:\nmvn clean gcloud:deploy\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.010869565217391304, 0, 0, 0, 0.011627906976744186, 0.003676470588235294, 0.011363636363636364, 0, 0 ]
0.003754
5
[ { "analysis_explanation": null, "end": 1088, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1084 }, { "analysis_explanation": null, "end": 1179, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1175 }, { "analysis_explanation": null, "end": 1319, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1314 }, { "analysis_explanation": null, "end": 449, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 439 }, { "analysis_explanation": null, "end": 498, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 477 } ]
[ "Pages\n\nWednesday, September 2, 2009\n\nChocolate, Coffee, and... Peanut butter milkshake?", "\n\nYes, so this was an entry sitting in my \"drafts\" for a while simply because I made this way back in may with my sister and haven't even looked at posting this... but I should.", "\n\n3 scoops Vanilla ice cream\n\n1/4 cup brewed coffee\n\nhandful of chocolate chips\n\n2 tbsp peanut butter\n\nYou should know my measurements are never exact and I think playing with what is available is always fun. ", "We happened to have a smidgen of vanilla ice cream left and used the rest of the ingredients because they were almost empty and taking up space in the fridge. ", "Always fun. ", "But this is a very nice, smooth, and a tab rich for a milkshake. ", "Not healthy by any means =)" ]
{ "pile_set_name": "Pile-CC" }
[ 0.022988505747126436, 0, 0.004784688995215311, 0, 0, 0, 0 ]
0.003968
5
[ { "analysis_explanation": null, "end": 54, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7 } ]
[ "[ad_1]\n\n\n\n25 Best New Hairstyles for Long Haired Hotties!", "\n\nAdvertisements Loading...\n\n[ad_2]\n\n\n\nSource by mariavindas0" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0 ]
0
5
[]
[ "Thursday, January 12, 2006\n\nI spent too much of today trapped in the holding pen for prospective jurors at the Superior Court of the City and County of San Francisco. ", "No blogging about it yet; there is some infinitesimally remote possibility I could end up on a jury, so it would be improper.", "\n\nBut in the intervals as we were herded from room to room, I did get a lot of reading done, some of it worth sharing here. ", "Doug Henwood's Left Business Observer is a lot more interesting than its rudimentary web site might suggest. ", "In Issue #112, I particularly enjoyed Henwood's bemused observations on the strange moment the Bush regime has led us into. ", "Here is a sample:\n\nFor those of us who cut our teeth on the power-structure studies of William Domhoff...it's been quite a surprise to watch the Bush administration in action. ", "Though it should have known better, it started a pointless war that's put U.S. power and prestige at severe risk, and it's driven the government's accounts deep into the red, and it's financed both reckless adventures with huge gobs of money borrowed from abroad. ", "A serious ruling class might have reined them in long ago, but our elite has been too narcoticized by its tax cuts --your average millionaire got a $60,000 break, more than the pretax income of the average household -- to complain. ...", "And since the Dems serve a dual role, as the \"popular\" party and as the party of an alternative elite, their dithering reflects a crisis at the upper levels of our society, as well as the disorganization at the lower levels.", "\n\nInteresting. ", "You won't find Henwood's stuff online; you might find it worthwhile to subscribe to his print newsletter.", "\n\n1 comment:\n\nWhat's this blog about?", "\n\nMy musings on current events, current projects, current anxieties and current delights.", "\n\nI started this under the Bush regime when any grain of sand thrown into the gears of the over-reaching imperial state seemed worthwhile.", "\n\nI have worked to elect more and better Democrats -- and to hammer the shit out of them once we get them in office so they do the things their constituents want and need. ", "It's a big job.", "\n\nI have endured the dashed potential for a more transformational regime under Obama. ", "The man has made himself an accomplice in the imperial crimes of his predecessor as well as committing his own. ", "He has also almost certainly been the most progressive president most of us will live to see. ", "I fear we'll look back on his years in office with mild gratitude for a respite from national leadership that was habitually stupid and vicious, as well as wrong.", "\n\nVisitors here will find a lot of commentary on books I'm reading. ", "I am very intentionally reading intensively offline these days. ", "When it feels hard to find direction, it's time to learn something new.", "\n\nNow available\n\nAbout Me\n\nI'm a progressive political activist who runs trails and climbs mountains whenever any are available. ", "I've had the privilege to work for justice in Central America (Nicaragua and El Salvador), in South Africa, in the fields of California with the United Farmworkers Union, and in the cities and schools of my own country. ", "I'm a Christian of the Episcopalian flavor; we think and argue a lot. ", "For work, I've done a bit of it all: run an old fashioned switch-board; remodeled buildings and poured concrete; edited and published periodicals, reports and books; and organized for electoral campaigns. ", "I am currently an independent consultant to organizations seeking \"help when you have to make a fight.\"" ]
{ "pile_set_name": "Pile-CC" }
[ 0.005988023952095809, 0, 0, 0.01834862385321101, 0.016129032258064516, 0.011363636363636364, 0, 0, 0, 0, 0.009523809523809525, 0, 0, 0.007246376811594203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004545454545454545, 0.014285714285714285, 0, 0 ]
0.003123
5
[ { "analysis_explanation": null, "end": 29, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 53, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48 }, { "analysis_explanation": null, "end": 151, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129 }, { "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": 429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 415 }, { "analysis_explanation": null, "end": 623, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 619 }, { "analysis_explanation": null, "end": 750, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 735 }, { "analysis_explanation": null, "end": 797, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 793 }, { "analysis_explanation": null, "end": 902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 898 }, { "analysis_explanation": null, "end": 1145, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1137 }, { "analysis_explanation": null, "end": 1342, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1338 }, { "analysis_explanation": null, "end": 1821, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1817 }, { "analysis_explanation": null, "end": 1977, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1968 }, { "analysis_explanation": null, "end": 2197, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2192 }, { "analysis_explanation": null, "end": 2440, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2431 }, { "analysis_explanation": null, "end": 2696, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2686 }, { "analysis_explanation": null, "end": 2958, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2943 }, { "analysis_explanation": null, "end": 2969, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2960 }, { "analysis_explanation": null, "end": 2985, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2974 }, { "analysis_explanation": null, "end": 3003, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2991 }, { "analysis_explanation": null, "end": 3032, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3022 }, { "analysis_explanation": null, "end": 3132, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3123 }, { "analysis_explanation": null, "end": 3152, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3140 }, { "analysis_explanation": null, "end": 755, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 743 } ]
[ "Q:\n\nandroid url to access KML route\n\nI am trying to draw path between two points on google map using url below,\nhttp://maps.google.com/maps?f=d&hl=en&saddr=13.005621,77.577531&daddr=13.005621,77.579531&ie=UTF8&0&om=0&output=kml\nbefore it was working properly, but now it shows exception, \n I/System.out(461): Unexpected end of document\n\ndoc is returning null why?", "\nmy code is bellow, \nhttp://pastebin.com/XvR0rYdQ\nthank you\n\nA:\n\nThese links help u to code for maps:\nMAPS Tutor\nMaps Location\nMaps Api\n\nIf u want url only then use this : http://code.google.com/apis/kml/\n These Is complete source code for maps location . ", "\n Android\nAndroid G1 screenshot http://img249.imageshack.us/img249/3336/androidmaproute.jpg \npublic class MapRouteActivity extends MapActivity { \n LinearLayout linearLayout;\n MapView mapView;\n private Road mRoad; \n @Override\n public void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n setContentView(R.layout.main);\n mapView = (MapView) findViewById(R.id.mapview);\n mapView.setBuiltInZoomControls(true); \n new Thread() {\n @Override\n public void run() {\n double fromLat = 49.85, fromLon = 24.016667; \n double toLat = 50.45, toLon = 30.523333;\n String url = RoadProvider\n .getUrl(fromLat, fromLon, toLat, toLon);\n InputStream is = getConnection(url);\n mRoad = RoadProvider.getRoute(is);\n mHandler.sendEmptyMessage(0);\n }\n }.start();\n }\n\n Handler mHandler = new Handler() {\n public void handleMessage(android.os.", "Message msg) {\n TextView textView = (TextView) findViewById(R.id.description);\n textView.setText(mRoad.mName + \" \" + mRoad.mDescription);\n MapOverlay mapOverlay = new MapOverlay(mRoad, mapView);\n List<Overlay> listOfOverlays = mapView.getOverlays();\n listOfOverlays.clear();\n listOfOverlays.add(mapOverlay);\n mapView.invalidate();\n };\n };\n\n private InputStream getConnection(String url) {\n InputStream is = null;\n try {\n URLConnection conn = new URL(url).openConnection();\n is = conn.getInputStream();\n } catch (MalformedURLException e) {\n e.printStackTrace();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return is;\n } \n @Override\n protected boolean isRouteDisplayed() {\n return false;\n }\n}\n\nSee full code on J2MEMapRouteAndroidEx on Google Code\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.005509641873278237, 0.0078125, 0.01698754246885617, 0.0025348542458808617 ]
0.008211
5
[ { "analysis_explanation": null, "end": 227, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.95, "start": 112 }, { "analysis_explanation": null, "end": 567, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.95, "start": 535 }, { "analysis_explanation": null, "end": 708, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 649 }, { "analysis_explanation": null, "end": 792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 767 }, { "analysis_explanation": null, "end": 1304, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1293 }, { "analysis_explanation": null, "end": 1357, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 1342 }, { "analysis_explanation": null, "end": 1442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1426 }, { "analysis_explanation": null, "end": 1918, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1907 }, { "analysis_explanation": null, "end": 2008, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2001 }, { "analysis_explanation": null, "end": 2069, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2065 }, { "analysis_explanation": null, "end": 412, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 384 }, { "analysis_explanation": null, "end": 708, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 649 }, { "analysis_explanation": null, "end": 965, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 954 }, { "analysis_explanation": null, "end": 1012, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1005 }, { "analysis_explanation": null, "end": 1032, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1022 }, { "analysis_explanation": null, "end": 1384, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1373 }, { "analysis_explanation": null, "end": 1570, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1563 }, { "analysis_explanation": null, "end": 1596, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1585 }, { "analysis_explanation": null, "end": 1610, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1602 }, { "analysis_explanation": null, "end": 1630, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1622 }, { "analysis_explanation": null, "end": 1746, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1736 }, { "analysis_explanation": null, "end": 1779, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1762 }, { "analysis_explanation": null, "end": 1806, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1789 }, { "analysis_explanation": null, "end": 1834, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1824 }, { "analysis_explanation": null, "end": 2121, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2117 }, { "analysis_explanation": null, "end": 637, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 635 }, { "analysis_explanation": null, "end": 165, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 159 }, { "analysis_explanation": null, "end": 175, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 169 }, { "analysis_explanation": null, "end": 191, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 185 }, { "analysis_explanation": null, "end": 201, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 195 }, { "analysis_explanation": null, "end": 1164, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1158 }, { "analysis_explanation": null, "end": 1210, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1204 } ]
[ "Peter Williams (Medal of Honor)\n\nPeter Williams (born 1831, date of death unknown) was a Union Navy sailor in the American Civil War who received the U.S. military's highest decoration, the Medal of Honor. ", "He earned the award for steering throughout the Battle of Hampton Roads, the first combat between ironclad warships in history.", "\n\nBiography \nBorn in 1831 in Norway, Williams immigrated to the United States and lived in California. ", "He worked as a civilian sailor for nine years before joining the U.S. Navy in New York on January 27, 1862, for a three-year term of service. ", "His enlistment papers record him as being 5 feet 4 inches tall with blue eyes, brown hair, and a \"florid\" complexion. ", "Following brief assignments to and the receiving ship , Williams was transferred to the newly built , the first ironclad warship of the Union Navy, by March 6, 1862. ", "He served on Monitor as a seaman and quartermaster, a position responsible for navigation of the ship.", "\n\nAt the Battle of Hampton Roads on March 9, 1862, Williams stood at the ship's wheel and steered Monitor throughout an engagement with the Confederate ironclad CSS Virginia (formerly known as Merrimack). ", "This battle represented the first meeting in combat of two ironclad warships. ", "Williams was particularly noted for moving Monitor away from Virginia when the latter attempted to ram Monitor and again when Monitor's Captain John Lorimer Worden was wounded. ", "Shipmate John Driscoll recalled of Williams: \"Peter saw more of her [the Virginia] than anyone else. ", "He say right into the bore of the gun ... Pete says, 'Captain, that is for us,' and rip! ", "she came.\" ", "For his actions during the battle, Williams was awarded the Medal of Honor a year later on April 3, 1863. ", "He was the only person to receive the Medal of Honor for service on Monitor.", "\n\nWeeks after the battle, Williams was promoted to mate (March 25) and then to master's mate (March 28) for his \"heroic service\" at Hampton Roads. ", "On December 31, 1862, he survived the sinking of Monitor in rough seas. ", "He and fellow quartermaster Richard Anjier were applauded by their captain, Commander John P. Bankhead, for showing \"the highest quality of men and seamen\" during the incident. ", "Williams entered the commissioned officer ranks on January 10, 1863, with his assignment to as an acting ensign, a position he held through the end of the war. ", "In December 1865, he was placed in command of , a steam tugboat in the West Gulf Blockading Squadron. ", "Williams was honorably discharged from the U.S. Navy on November 9, 1867, after nearly six years of service.", "\n\nWilliams is one of the hundreds of Medal of Honor recipients who are considered \"lost to history\", as his place of burial and other biographical details outside of his naval service are unknown.", "\n\nMedal of Honor citation \nWilliams's official Medal of Honor citation reads:\n\n Rank and organization: Seaman, U.S. Navy\n Accredited to: Pennsylvania\n G.O. No.: ", "11, 3 April 1863\n\nServing on board the U.S.S. Ironclad Steamer Monitor, Hampton Roads, 9 March 1862. ", "During the engagement between the U.S.S. Monitor and the C.S.S. Merrimack, Williams gallantly served throughout the engagement as quartermaster, piloting the Monitor throughout the battle in which the Merrimack, after being damaged, retired from the scene of the battle.", "\n\nReferences \n\nCategory:1831 births\nCategory:Year of death unknown\nCategory:Norwegian emigrants to the United States\nCategory:People of California in the American Civil War\nCategory:Union Navy sailors\nCategory:United States Navy Medal of Honor recipients\nCategory:American Civil War recipients of the Medal of Honor\nCategory:Norwegian-born Medal of Honor recipients" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.019417475728155338, 0, 0.009708737864077669, 0.007042253521126761, 0, 0.011976047904191617, 0, 0.014634146341463415, 0, 0.011299435028248588, 0.019801980198019802, 0.011235955056179775, 0, 0.009433962264150943, 0, 0.006802721088435374, 0, 0.011299435028248588, 0.006211180124223602, 0, 0.018518518518518517, 0.00510204081632653, 0.031055900621118012, 0.009900990099009901, 0.007407407407407408, 0.010958904109589041 ]
0.008531
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": 47, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33 }, { "analysis_explanation": null, "end": 64, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54 }, { "analysis_explanation": null, "end": 154, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150 }, { "analysis_explanation": null, "end": 358, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354 }, { "analysis_explanation": null, "end": 368, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 362 }, { "analysis_explanation": null, "end": 378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 370 }, { "analysis_explanation": null, "end": 410, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 393 }, { "analysis_explanation": null, "end": 434, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 424 }, { "analysis_explanation": null, "end": 481, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 471 }, { "analysis_explanation": null, "end": 522, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514 }, { "analysis_explanation": null, "end": 542, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 526 }, { "analysis_explanation": null, "end": 560, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 550 }, { "analysis_explanation": null, "end": 761, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 753 }, { "analysis_explanation": null, "end": 861, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 848 }, { "analysis_explanation": null, "end": 1013, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1000 }, { "analysis_explanation": null, "end": 1023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1015 }, { "analysis_explanation": null, "end": 1137, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1129 }, { "analysis_explanation": null, "end": 1166, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1157 }, { "analysis_explanation": null, "end": 1255, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1247 }, { "analysis_explanation": null, "end": 1316, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1308 }, { "analysis_explanation": null, "end": 1410, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1391 }, { "analysis_explanation": null, "end": 1446, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1424 }, { "analysis_explanation": null, "end": 1467, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1459 }, { "analysis_explanation": null, "end": 1475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1470 }, { "analysis_explanation": null, "end": 1505, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1497 }, { "analysis_explanation": null, "end": 1571, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1567 }, { "analysis_explanation": null, "end": 1668, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1660 }, { "analysis_explanation": null, "end": 1712, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1700 }, { "analysis_explanation": null, "end": 1729, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1716 }, { "analysis_explanation": null, "end": 1813, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1808 }, { "analysis_explanation": null, "end": 1840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1832 }, { "analysis_explanation": null, "end": 1871, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1863 }, { "analysis_explanation": null, "end": 1908, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1900 }, { "analysis_explanation": null, "end": 1951, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1938 }, { "analysis_explanation": null, "end": 1973, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1956 }, { "analysis_explanation": null, "end": 2067, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2053 }, { "analysis_explanation": null, "end": 2127, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2111 }, { "analysis_explanation": null, "end": 2210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2202 }, { "analysis_explanation": null, "end": 2269, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2253 }, { "analysis_explanation": null, "end": 2379, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2366 }, { "analysis_explanation": null, "end": 2463, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2430 }, { "analysis_explanation": null, "end": 2473, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2465 }, { "analysis_explanation": null, "end": 2537, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2521 }, { "analysis_explanation": null, "end": 2561, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2545 }, { "analysis_explanation": null, "end": 2582, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2574 }, { "analysis_explanation": null, "end": 2802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2794 }, { "analysis_explanation": null, "end": 2916, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2904 }, { "analysis_explanation": null, "end": 2944, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2932 }, { "analysis_explanation": null, "end": 3013, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3000 }, { "analysis_explanation": null, "end": 3027, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3015 }, { "analysis_explanation": null, "end": 3102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3082 }, { "analysis_explanation": null, "end": 3112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3104 }, { "analysis_explanation": null, "end": 3239, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3230 }, { "analysis_explanation": null, "end": 3383, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3374 }, { "analysis_explanation": null, "end": 3414, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3397 }, { "analysis_explanation": null, "end": 3632, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3623 } ]
[ "Q:\n\nHow to Bind Tooltip's DataTemplate to its Parent?", "\n\nI Wrote the Codes below to Show the image in Content of the ListBoxItem in the Tooltip window (kind of Preview effect). ", "but they are not working at all. ", " \n<ListBox>\n <ListBoxItem>\n <Image x:Name=\"image\" Source=\"image.jpg\" Stretch=\"Uniform\">\n <Image.", "ToolTip>\n <Image Source=\"{Binding RelativeSource={RelativeSource AncestorType=Image}, Path=Source}\" />\n </Image.", "ToolTip>\n </Image>\n </ListBoxItem> \n<ListBox> \n\n<ListBox>\n <ListBoxItem>\n <Image x:Name=\"image\" Source=\"image.jpg\" Stretch=\"Uniform\">\n <Image.", "ToolTip>\n <Image Source=\"{Binding Source, RelativeSource={RelativeSource TemplatedParent}}\" />\n </Image.", "ToolTip>\n </Image>\n </ListBoxItem> \n<ListBox> \n\n<ListBox>\n <ListBoxItem>\n <Image x:Name=\"image\" Source=\"image.jpg\" Stretch=\"Uniform\">\n <Image.", "ToolTip>\n <Image Source=\"{Binding}\" />\n </Image.", "ToolTip>\n </Image>\n </ListBoxItem> \n<ListBox> \n\nNone of these worked.", "\n\nA:\n\nThis should work:\n<ListBox>\n <ListBoxItem>\n <Image x:Name=\"image\" Source=\"screen.png\" Stretch=\"Uniform\">\n <Image.", "ToolTip>\n <ToolTip>\n <Image Source=\"{Binding RelativeSource={RelativeSource AncestorType=ToolTip}, Path=PlacementTarget.", "Source}\" />\n </ToolTip>\n </Image.", "ToolTip>\n </Image>\n </ListBoxItem>\n</ListBox>\n\nThe Image is not a visual ancestor of a ToolTip but you could use the ToolTip's PlacementTarget property to bind to the Image.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.03773584905660377, 0.00819672131147541, 0.030303030303030304, 0, 0.008064516129032258, 0, 0, 0, 0, 0, 0, 0.006493506493506494, 0, 0.0273224043715847, 0 ]
0.007874
5
[ { "analysis_explanation": null, "end": 25, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11 }, { "analysis_explanation": null, "end": 275, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 267 }, { "analysis_explanation": null, "end": 558, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 550 }, { "analysis_explanation": null, "end": 833, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 825 }, { "analysis_explanation": null, "end": 1103, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1094 } ]
[ "It's been suggested that our history of Taste Tests skews a tad bacon-centric here at The A.V. Club. ", "But here's the thing: Y'all are the ones who keep telling us to eat/drink this stuff, even going so far as to send the product directly to us. ", "You're the enablers; we're just bobbing along on the zeitgeist here. ", "That said, today's entry into the canon of baconized comestibles took a little doing on our—well, my—part.", "\n\n\nAs far as we can tell, no one (shockingly) has mass-produced and marketed a bacon-flavored vodka. ", "But several of you alerted us to this random food-blog entry detailing how to make the stuff, and since then, we've heard tell of it showing up at the odd bar or restaurant as part of a fancy-schmancy cocktail, usually of the Bloody Mary variety. ", "Apparently, my wildly successful take on Nutriloaf qualified me to prepare this delicacy to delight/poison my coworkers, so off I went to purchase a package of bacon and a bottle of mid-shelf vodka.", "\n\nThere isn't much to making bacon vodka: You throw a few cooked slices into the bottle, put it in a cupboard, and wait three weeks.", "\n\n\nThe toughest part was separating the infused vodka from the globules of fat that congealed and floated to the top. ", "I tried a couple of passes through cheesecloth, but was still left with visible white chunks. ", "Since bacon vodka is a hard enough sell already without fatty backwash floating in it, I gave it a couple more passes through a pair of (new) nylons, and that seemed to do the trick, leaving me with a mostly clear liquid the pale yellow color of healthy, bacon-scented urine.", "\n\n\nSo what sort of mixers does bacon-infused booze pair with? ", "Well, not much that we could think of, actually. ", "Tomato juice or Bloody Mary mix seems like the most obvious candidate, so we got a bottle of V8 for making \"BLTinis.\" (", "Trademark pending.) ", "Beyond that, we were a little stymied, so we went for a basic option, tonic, and a so-weird-it-might-work option, orange-pineapple juice. (", "Like a Hawaiian pizza, get it? ", "Don't worry, no one else did either.)", "\n\n\nTaste: With one exception, the reaction to straight bacon vodka was surprisingly neutral. ", "Most tasters agreed that it was nowhere near as horrible as we expected, though Tasha spit it out and ran away in horror. [", "Hey, I walked briskly in disgust. —", "ed.] ", "It's basically salty vodka, with a slightly smoky quality that's not entirely unpleasant if you're a fan of savory drinks. (", "It should be noted that we drank this at room temperature, as we weren't sure if refrigerating the stuff would cause the remaining atoms of fat to re-congeal. ", "Perhaps we're missing out on the glories of ice-cold bacon vodka.) ", "The BLTini (one part V8, one part vodka, with a Bacon Salt rim) was a definite hit among those who tried it, though many opted out due to an aversion to tomato juice. ", "Once again, for fans of savory drinks only. ", "One brave/reckless tester added some to her Diet Coke in spite of general revulsion at the suggestion, to underwhelming ends. ", "The citrus-bacon combo was surprisingly non-offensive: Were it served cold, maybe with some Triple Sec or other complementary liqueur, it could probably be a serviceable, if not wildly popular, specialty martini at some fancy fusion joint. ", "The bacon-vodka tonic tasted, well, like a vodka tonic, with a pretty unpleasant aftertaste. ", "There's really no need to dirty up such a clean-tasting cocktail with the brackish essence of salty meat. ", "Then again, there's really no need to muddy up such a clean-tasting liquor either, outside of novelty appeal—which it certainly has: This was our most well-attended Taste Test ever.", "\n\nOffice reactions:\n\n\n\n— \"Ew, why is it yellow?\" \"", "Really? ", "Your problem is with the color?\"", "\n\n— \"It smells like fat.\"", "\n\n— \"It's got that nose of rubbing alcohol.\"", "\n\n— \"It's just kind of salty with a strong aftertaste.\"", "\n\n— \"It tastes like seawater.\"", "\n\n— \"I can feel my heart being pickled.\"", "\n\n— \"Agh, I can still taste the bacon!\"", "\n\n— \"I've had grosser versions of flavored vodka.\"", "\n\n— [Does a spit take.] \"", "Oh God, that's the worst thing ever. ", "Seriously, ever.\"", "\n\n— \"It tastes like rubbing-alcohol fumes and rancid bacon fat. ", "Like licking a piece of bacon that's been hidden behind a cabinet in a hospital for a month. ", "You are a cruel, cruel woman.\"", "\n\n\n— \"It tastes like I'm having a stroke.\"", "\n\n— \"The bacon really masks the taste of the vodka. ", "Now there needs to be something to mask the bacon taste. ", "Maybe more vodka!\"", "\n\n\n— \"I definitely taste meat, but just as an aftertaste. ", "It's obvious my vodka has been tampered with, but it's hard to tell if it's bacon or a steak that's been sitting under my refrigerator for a month.\"", "\n\n— \"Make a bacon screwdriver out of this, and you're halfway to a balanced breakfast. ", "Now all you need are some domestically abused eggs and suicidal waffles.\"", "\n\n\n— \"My mouth is all salty. ", "I think it's leaking up to my brain now.\"", "\n\n— \"First bacon-vodka burp: more vodka, less bacon.\"", "\n\n— \"From this point on, the consumption of either vodka and bacon will be forever tainted by this experience. ", "Thanks a lot, Genevieve.\"", "\n\n\n— [About the BLTini.] \"", "It's like a new Campbell's soup line.\"", "\n\n— [Bacon vodka and orange-pineapple juice.] \"", "I have no reaction for this. ", "I don't even know what to say about this.\"", "\n\n\n— [Bacon vodka and tonic.] \"", "It smells and looks and feels like a vodka tonic, so your body goes, 'Oh it's a vodka tonic.' ", "Then it hits your stomach and your body's like, 'Oh, it's bacon, maybe I should go throw up.'\"", "\n\n— [Afterwards.] \"", "It smells like a men's locker room in here.\"", "\n\nWhere to get it: Make your own damn bacon vodka!" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.009900990099009901, 0.006993006993006993, 0, 0, 0, 0, 0.005050505050505051, 0, 0, 0, 0, 0, 0, 0.01680672268907563, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0.005988023952095809, 0, 0, 0, 0, 0, 0.0055248618784530384, 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.04, 0, 0.02631578947368421, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.001732
5
[ { "analysis_explanation": null, "end": 329, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 324 }, { "analysis_explanation": null, "end": 815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 806 }, { "analysis_explanation": null, "end": 1093, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1082 }, { "analysis_explanation": null, "end": 1983, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1975 }, { "analysis_explanation": null, "end": 2212, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2207 }, { "analysis_explanation": null, "end": 2701, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2691 }, { "analysis_explanation": null, "end": 4199, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4192 }, { "analysis_explanation": null, "end": 4599, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4592 }, { "analysis_explanation": null, "end": 5013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5004 }, { "analysis_explanation": null, "end": 1783, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1781 }, { "analysis_explanation": null, "end": 2666, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2664 } ]
[ "The coldest mornings in Brisbane are usually around 6c at 04:00 when I took over the day-shift Ford Falcon taxi which ran on gas, the yardman had to pour hot water over the injector to get it to start." ]
{ "pile_set_name": "Pile-CC" }
[ 0.004975124378109453 ]
0.004975
5
[ { "analysis_explanation": null, "end": 20, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12 }, { "analysis_explanation": null, "end": 32, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24 }, { "analysis_explanation": null, "end": 63, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58 } ]
[ "Q:\n\nCyclic Reference - protocols and subclasses\n\nI'm getting some cyclic reference (I think) problems between a few classes that require imported headers due to either subclassing or protocol definitions. ", "I can explain why things are set up this way but I'm not sure it's essential. ", "Basically these classes are managing reciprocal to-many data relationships.", "\nThe layout is this:\nClass A imports Class B because it's a delegate of Class B and needs its protocol definition.", "\nClass B imports Class C because it's a subclass of Class C.\nClass C imports Class A because it's a delegate of Class A and needs its protocol definition. ", " \nHere's some sample code that illustrates the problem. ", "The errors I'm getting are as follows: In Class A - \"Can't find protocol definition for Class_B_Delegate\".", "\nIn Class B - \"Can't find interface declaration for Class C - superclass of Class B.\" In Class C - \"Can't find protocol definition for Class_A_Delegate\".", "\nClass A header:\n#import <Foundation/Foundation.h>\n#import \"Class_B.h\"\n\n@protocol Class_A_Delegate\n@end\n\n@interface Class_A : NSObject <Class_B_Delegate> {\n}\n\n@end\n\nClass B header:\n#import <Foundation/Foundation.h>\n#import \"Class_C.h\"\n\n@protocol Class_B_Delegate <NSObject>\n@end\n\n@interface Class_B : Class_C {\n}\n\n@end\n\nClass C Header:\n#import <Foundation/Foundation.h>\n#import \"Class_A.h\"\n\n@interface Class_C : NSObject <Class_A_Delegate> {\n}\n\n@end\n\nA:\n\nYou can use forward declarations to break dependency cycle. ", "See Referring to Other Classes in the Objective-C Programming Guide.", "\nSo the Class C header should look like:\n#import <Foundation/Foundation.h>\n\n@protocol Class_A_Delegate;\n\n@interface Class_C : NSObject <Class_A_Delegate> {\n}\n\n@end\n\nA:\n\nI ended up putting the protocol definitions in separate header files and that seemed to work.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0.019417475728155338, 0, 0.011450381679389313, 0 ]
0.002572
5
[]
[ "� The War on US Sovereignty [Y-not] | Main | Saturday Gardening Thread: Gardening with a Side of Pasta(farian) [Y-not and KT] � Our Headlong Charge Back To Pre-Industrial Society (CBD) Sometime commenter and beer guru Beeerslinger sent this along. ", "Cocktail guide offers recipes made with urine. ", "it reminded me of the discussion (was it yesterday) about tiny houses, and the Left's desire to return to a pre-industrial-revolution quality of life. ", "People drank urine because they were ignorant of science, and relied on alchemists and \"physicians\" to cure their ailments. ", "But we know exactly what urine is....waste products from metabolism, and the body balancing various other compounds. ", "This is not clever deduction....this is well known. ", "Because 2,500 years of Western philosophy and intellectual development has taught us how to study the world and discern facts from bullshit. ", "And drinking urine is bullshit -- it hearkens back to an ignorance based on lack of knowledge -- but we don't have that excuse any more. ", "Am I making too much of this? ", "Is this simply a bunch of rich people with too much time on their hands? ", "10 years ago I would have laughed, and chalked this up to stupidity and boredom. ", "But I am now deeply suspicious of any attempt to reject science and logic. ", "And I think this is exactly that. ", "But......\n\n\n\nSeamus Muldoon brings up an excellent point. ", "maybe it is not so much a rejection of science as it is a rejection of statistics. ", "By that I mean, the element of society that you are reading about in such an article have rejected a sense of 'normal' in the statistical sense. ", "Perhaps it stems from a deep-rooted desire (which they change to mean a 'need' or even a 'God-given right') to stand out from the crowd. ", "If someone is unable to achieve excellence in a productive way, they might seek excellence in a self-destructive way. ", "There should still be nothing wrong with reaching one's potential (give it your best), but if that puts you within two standard deviations from the mean in everyday things, it just isn't enough to make someone feel special these days. ", "Hence the rampant celebration of the ever more aberrant. ", "They have to be hipper and edgier than the hip and edgy.", "\n\nposted by Open Blogger at\n\n\n\n| Access Comments posted by Open Blogger at 11:02 AM\n\n\n\n\n\n\n\n\n\nRecent Comments Recent Entries Search Polls! ", "Polls! ", "Polls! ", "Frequently Asked Questions The (Almost) Complete Paul Anka Integrity Kick Top Top Tens Greatest Hitjobs" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.008064516129032258, 0, 0.006622516556291391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017241379310344827, 0, 0, 0, 0, 0, 0, 0, 0.014492753623188406, 0, 0, 0.009708737864077669 ]
0.002245
5
[ { "analysis_explanation": null, "end": 53, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45 }, { "analysis_explanation": null, "end": 345, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336 }, { "analysis_explanation": null, "end": 758, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 747 }, { "analysis_explanation": null, "end": 769, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 762 }, { "analysis_explanation": null, "end": 1132, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1120 }, { "analysis_explanation": null, "end": 1337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1323 }, { "analysis_explanation": null, "end": 2084, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2074 }, { "analysis_explanation": null, "end": 2281, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2273 }, { "analysis_explanation": null, "end": 721, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 706 } ]
[ "[Clinical usefulness of urinary anti HIV antibody test--a large scale study from 11 institutes in Japan].", "\nAn enzyme immuno assay kit has been developed to detect anti-HIV antibody in urine. ", "In order to examine the clinical utility of the kit, 1333 urine samples were assayed. ", "These samples consisted of 233 urine samples from HIV infected patients, 472 samples from HIV uninfected patients including 203 samples from patients with urogenital diseases, and 628 samples from normal subjects. ", "Anti-HIV antibodies were detected in all the urine samples from HIV infected patients, and the diagnostic sensitivity for HIV infection was 100% with no false negative cases. ", "A variety of anti-HIV antibody titers were found in the urine samples from HIV infected patients. ", "However, no significant differences were found in the distribution patterns of urinary anti-HIV antibody titers among AC, ARC and AIDS patients. ", "False positives were determined in only five samples in 628 healthy subjects (0.8%), one in 19 patients with hepatitis (5.3%), one in 45 patients with hemophilia (2.2%) and two in 105 pregnant women (1.9%). ", "The antibody titers of all the false positive samples in these groups were less than the cut-off index multiplied by two. ", "However, relatively high positive rates were demonstrated in the samples from urogenital diseases (11.8%), diabetes mellitus (20.0%) and auto-immune diseases (7.3%). ", "False positive results were found to be directly correlated to the protein concentration of urinary protein, especially the immunoglobulin concentration in urine. ", "The assay system was also evaluated by various reproducibility tests performed by different operators at different laboratories. ", "The test results were satisfactory.(ABSTRACT TRUNCATED AT 250 WORDS)" ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0.013793103448275862, 0, 0, 0, 0, 0, 0 ]
0.001061
5
[ { "analysis_explanation": null, "end": 103, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98 } ]
[ "Fish and chips\n\nFish and chips is a hot dish consisting of fried fish in batter served with chips. ", "The dish originated in England and is an example of culinary fusion of its two main ingredients, each brought by immigrants. ", "It is a staple meal and a common take-away food in the United Kingdom, Ireland, and numerous other countries, particularly in English-speaking and Commonwealth nations. ", "Fish and chips first appeared in the UK in the 1860s. ", "By 1910 there were more than 25,000 fish and chip shops across the UK, and by the 1930s there were over 35,000, falling to about 10,000 by 2009. ", "The British government safeguarded the supply of fish and chips during World War I and World War II; it was one of the few foods in the UK not subject to rationing.", "\n\nHistory\n\nThe tradition in the UK of fish battered and fried in oil may have come from Western Sephardic Jewish immigrants from Holland. ", "Originating in Spain and Portugal and settling in England as early as the 16th century, they would have prepared fried fish in a manner similar to pescado frito, which is coated in flour then fried in oil. ", "Fish fried for Shabbat for dinner on Friday evenings could be eaten cold the following afternoon for shalosh seudot, palatable this way as liquid vegetable oil was used rather than a hard fat, such as butter. ", "Charles Dickens mentions \"fried fish warehouses\" in Oliver Twist (1838), and in 1845 Alexis Soyer in his first edition of A Shilling Cookery for the People, gives a recipe for \"Fried fish, Jewish fashion\", which is dipped in a batter of flour and water. ", "\n\nThe exact location of the first fish and chip shop is unclear. ", "The earliest known shops were opened in the 1860s, in London by Joseph Malin and in Mossley, near Oldham, Lancashire, by John Lees. ", "However, fried fish, as well as chips, had existed independently for at least fifty years, so the possibility that they had been combined at an earlier time cannot be ruled out.", "\n\nFish and chips became a stock meal among the working classes in England as a consequence of the rapid development of trawl fishing in the North Sea, and the development of railways which connected the ports to major industrial cities during the second half of the 19th century, so that fresh fish could be rapidly transported to the heavily populated areas.", "\n\nDeep-fried chips (slices or pieces of potato) as a dish may have first appeared in England in about the same period: the Oxford English Dictionary notes as its earliest usage of \"chips\" in this sense the mention in Charles Dickens' A Tale of Two Cities (1859): \"husky chips of potato, fried with some reluctant drops of oil\".", "\n\nThe modern fish-and-chip shop (\"chippy\" in modern British slang) originated in the United Kingdom, although outlets selling fried food occurred commonly throughout Europe. ", "Early fish-and-chip shops had only very basic facilities. ", "Usually these consisted principally of a large cauldron of cooking fat, heated by a coal fire. ", "The fish-and-chip shop later evolved into a fairly standard format, with the food served, in paper wrappings, to queuing customers, over a counter in front of the fryers. ", "\nAs a boy Alfred Hitchcock lived above a fish and chip shop in London, which was the family business. ", "According to Professor John Walton, author of Fish and Chips and the British Working Class, the British government made safeguarding supplies of fish and chips during World War I a priority: \"The cabinet knew it was vital to keep families on the home front in good heart, unlike the German regime that failed to keep its people well fed\".", "\n\nIn 1928, Harry Ramsden opened his first fish and chip shop in Guiseley, West Yorkshire. ", "On a single day in 1952, the shop served 10,000 portions of fish and chips, earning a place in the Guinness Book of Records. ", "In George Orwell's The Road to Wigan Pier (1937), which documents his experience of working class life in the north of England, the author considered fish and chips chief among the 'home comforts' which acted as a panacea to the working classes.", "\n\nDuring World War II, fish and chips remained one of the few foods in the United Kingdom not subject to rationing. ", "Prime Minister Winston Churchill referred to the combination of fish and chips as \"the good companions\". ", "John Lennon enjoyed his fish and chips—a staple of the working class—smothered in ketchup.", "\n\nBritish fish and chips were originally served in a wrapping of old newspapers but this practice has now largely ceased, with plain paper, cardboard, or plastic being used instead. ", "In the United Kingdom, the Fish Labelling Regulations 2003 and in Ireland the European Communities (Labelling of Fishery and Aquaculture Products) Regulations 2003 respectively enact directive 2065/2001/EC, and generally mean that \"fish\" must be sold with the particular commercial name or species named; so, for example, \"cod and chips\" now appears on menus rather than the more vague \"fish and chips\". ", "In the United Kingdom the Food Standards Agency guidance excludes caterers from this; but several local Trading Standards authorities and others do say it cannot be sold merely as \"fish and chips\".", "\n\nUnited Kingdom \n\nA prominent meal in British culture, fish and chips became popular in wider circles in London and South East England in the middle of the 19th century: Charles Dickens mentions a \"fried fish warehouse\" in Oliver Twist, first published in 1838, while in the north of England a trade in deep-fried chipped potatoes developed. ", "The first chip shop stood on the present site of Oldham's Tommyfield Market. ", "It remains unclear exactly when and where these two trades combined to become the modern fish and chip shop industry. ", "A Jewish immigrant, Joseph Malin, opened the first recorded combined fish-and-chip shop in London in 1860; a Mr Lees pioneered the concept in the North of England, in Mossley, in 1863.", "\n\nThe concept of a fish restaurant, as opposed to take-away, was introduced by Samuel Isaacs (born 1856 in Whitechapel, London; died 1939 in Brighton, Sussex) who ran a thriving wholesale and retail fish business throughout London and the South of England in the latter part of the 19th century. ", "Isaacs' first restaurant opened in London in 1896 serving fish and chips, bread and butter, and tea for nine pence, and its popularity ensured a rapid expansion of the chain.", "\n\nThe restaurants were carpeted, had table service, tablecloths, flowers, china and cutlery, and made the trappings of upmarket dining affordable to the working classes for the first time. ", "They were located in London, Clacton, Brighton, Ramsgate, Margate and other seaside resorts in southern England. ", "Menus were expanded in the early 20th century to include meat dishes and other variations as their popularity grew to a total of thirty restaurants. ", "Sam Isaacs' trademark was the phrase \"This is the Plaice\", combined with a picture of the punned-upon fish in question. ", "A glimpse of the old Brighton restaurant at No.1 Marine Parade can be seen in the background of Norman Wisdom's 1955 film One Good Turn just as Pitkin runs onto the seafront; this is now the site of a Harry Ramsden's fish and chips restaurant. ", "A blue plaque at Oldham's Tommyfield Market marks the first chips fried in England in 1860, and the origin of the fish and chip shop and fast food industries.", "\n\nDundee City Council claims that chips were first sold by a Belgian immigrant, Edward De Gernier, in the city's Greenmarket in the 1870s.", "\n\nIn Edinburgh and the surrounding area, a combination of Gold Star brown sauce and water or malt vinegar, known as \"sauce\", or more specifically as \"chippy sauce\", has great popularity; salt and vinegar is preferred elsewhere in Scotland, often prompting light-hearted debate on the merits of each option by those who claim to find the alternative a baffling concept.", "\n\nFish & Chips Awards \nThe annual National Fish & Chips Awards were set up in the UK in 1988. ", "The 30th Annual Fish & Chips Awards ceremony was attended by Norwegian ambassador to the UK Mona Juul.", "\n\nIreland\n\nIn Ireland, the first fish and chips were sold by an Italian immigrant, Giuseppe Cervi, who mistakenly stepped off a North American-bound ship at Queenstown (now Cobh) in County Cork in the 1880s and walked all the way to Dublin. ", "He started by selling fish and chips outside Dublin pubs from a handcart. ", "He then found a permanent spot in Great Brunswick Street (now Pearse Street). ", "His wife Palma would ask customers \"Uno di questa, uno di quella?\" ", "This phrase (meaning \"one of this, one of that\") entered the vernacular in Dublin as \"one and one\", which is still a way of referring to fish and chips in the city.", "\n\nNew Zealand\n\nFish and chips is the most popular takeaway food in New Zealand. ", "Food historians haven't been able to pinpoint exactly when the meal became an established part of New Zealand cuisine but all recognise that the first fish and chips shops were introduced by British settlers before World War I. During the 20th century, nearly every small town and suburb in New Zealand had at least one fish-and-chip shop. ", "As in Britain, Friday night has been the traditional night to eat fish.", "\n\nTraditionally, fish and chips were served in wrappings of newspaper. ", "With the decline of the newspaper industry, this has become less common.", "\n\nIn 1980, four up-and-coming New Zealand Labour Party politicians, including David Lange, were nicknamed the \"Fish and Chip Brigade\" due to a picture published at the time with the group eating fish and chips.", "\n\nUnited States\n\nIn the United States, the dish is most commonly sold as fish and chips, except in Upstate New York and Wisconsin and other parts of the Northeast and Upper Midwest, where this dish would be called a fish fry. ", "Despite the name fish and chips, and the US meaning of chips as potato chips, the dish is served with french fries (much thinner than British and Irish chips). ", "However, some restaurants will use thicker french fries which are known as steak fries. ", "These fries are closer to British chips. ", "In the Southern United States, a common form of cuisine is fried catfish with french fries, accompanied by coleslaw, pickles, raw onion slices and lemon slices.", "\n\nComposition\n\nCooking\n\nTraditional frying uses beef dripping or lard; however, vegetable oils, such as palm oil, rapeseed or peanut oil (used because of its relatively high smoke point) predominate. ", "A minority of vendors in the North of England and Scotland, and the majority of vendors in Northern Ireland, still use dripping or lard, as it imparts a different flavour to the dish, but this makes the fried chips unsuitable for vegetarians and for adherents of certain faiths. ", "Lard is used in some living industrial history museums, such as the Black Country Living Museum. ", "All fish is filleted, no bones should be found in the fish.", "\n\nThickness\nBritish and Irish chips are usually thicker than American-style french fries. ", "In their homes or in some restaurants, people in or from the United States may eat a thick type of chip, more similar to the British and Irish variant, sometimes referred to as steak fries.", "\n\nBatter\nIn Britain and Ireland, fish and chip shops traditionally use a simple water and flour batter, adding a little sodium bicarbonate (baking soda) and a little vinegar to create lightness, as they react to create bubbles in the batter. ", "Other recipes may use beer or milk batter, where these liquids are often substitutes for water. ", "The carbon dioxide in the beer lends a lighter texture to the batter. ", "Beer also results in an orange-brown colour. ", "A simple beer batter might consist of a 2:3 ratio of flour to beer by volume. ", "The type of beer alters the taste of the batter; some prefer lager whereas others use stout or bitter.", "\n\nChoice of fish\nIn Britain and Ireland, cod and haddock appear most commonly as the fish used for fish and chips, but vendors also sell many other kinds of fish, especially other white fish, such as pollock, hake or coley, plaice, skate, and ray (particularly popular in Ireland); and huss or rock salmon (a term covering several species of dogfish and similar fish). ", "In traditional fish and chip shops several varieties of fish are offered by name (\"haddock and chips\"), but in some restaurants and stalls \"fish and chips\", unspecified, is offered; it is increasingly likely to be the much cheaper basa. ", "In Northern Ireland, cod, plaice or whiting appear most commonly in 'fish suppers'—'supper' being Scottish and Northern Irish chip-shop terminology for a food item accompanied by chips. ", "Suppliers in Devon and Cornwall often offer pollock and coley as cheap alternatives to haddock.", "\n\nIn Australia, reef cod and rock cod (a different variety from that used in the United Kingdom), barramundi or flathead (more expensive options), flake (a type of shark meat), King George whiting (little more expensive than other fish, but cheaper than barramundi or flathead) or snapper (cheaper options), are commonly used. ", "From the early 21st century, farmed basa imported from Vietnam and hoki have become common in Australian fish and chip shops. ", "Other types of fish are also used based on regional availability.", "\n\nIn New Zealand, snapper or gurnard was originally the preferred species for battered fillets in the North Island. ", "As catches of this fish declined, it was replaced by hoki, shark (particularly rig) – marketed as lemon fish – and tarakihi. ", "Bluefin gurnard and blue cod predominate in South Island fish and chips.", "\n\nIn the United States, the type of fish used depends on availability in a given region. ", "Some common types are cod, halibut, flounder, tilapia or, in New England, Atlantic cod or haddock. ", "Salmon is growing common on the West Coast, while freshwater catfish is most frequently used in the Southeast.", "\n\nIn India, the dish is usually based on pomfret fish, and uses chilli paste, and more pepper than would be used in Britain.", "\n\nAccompaniments\n\nIn chip shops in most parts of Britain and Ireland, salt and vinegar are traditionally sprinkled over fish and chips at the time it is served. ", "Suppliers use malt vinegar, onion vinegar (used for pickling onions), or the cheaper non-brewed condiment. ", "In a few places, notably Edinburgh, 'sauce' (as in 'salt and sauce') is more traditional than vinegar - with 'sauce' meaning a brown sauce. ", "In England, a portion of mushy peas is a popular side dish, as are a range of pickles that typically include gherkins, onions and eggs. ", "In table-service restaurants and pubs, the dish is usually served with a slice of lemon for squeezing over the fish and without any sauces or condiments, with salt, vinegar and sauces available at the customer's leisure.", "\n\nIn Ireland, Wales and England, most takeaways serve warm side portions of sauces such as curry sauce or gravy. ", "The sauces are usually poured over the chips. ", "In some areas, this dish without fish is referred to as 'wet chips'. ", "In the Midlands especially, chips with mushy peas or baked beans is known as a \"pea mix\" or a \"bean mix\". ", "Other fried products include 'scraps' (also known as 'bits' in Southern England and \"scrumps\" in South Wales), originally a by-product of fish frying. ", "Still popular in Northern England, they were given as treats to the children of customers. ", "Portions prepared and sold today consist of loose blobs of batter, deep fried to a crunchy golden crisp in the cooking-fat. ", "The potato scallop or potato cake consists of slices of potato dipped in fish batter and deep fried until golden brown. ", "These are often accompanied for dipping by the warm sauces listed above.", "\n\nIn the US, tartar sauce is commonly served with fish and chips.", "\n\nThere are distinct regional variations in how accompaniments are added to the meal where it is as a take away – related partly to whether the food is entirely wrapped in paper. ", "In some shops the customer is expected to add these; in others the expectation is that the server does so.", "\n\nNutrition information\nAn average serving of fish and chips consisting of 6 ounces (170 grams) of fried fish with 10 ounces (280 grams) of fried chips has approximately 1,000 calories and contains approximately 52 grams of fat. ", "The use of tartar sauce as a condiment adds more calories and fat to the dish.", "\n\nVendors\n\nIn the United Kingdom, Ireland, Australia, Canada, New Zealand and South Africa, fish and chips are usually sold by independent restaurants and take-aways known as fish and chip shops. ", "Outlets range from small affairs to chain restaurants. ", "Locally owned seafood restaurants are also popular in many places, as are mobile \"chip vans\". ", "In Canada, the outlets may be referred to as \"chip wagons\". ", "In the United Kingdom, some shops have amusing names, such as \"A Salt and Battery\", \"The Codfather\", \"The Frying Scotsman\", \"Oh My Cod\" and \"Frying Nemo\" In New Zealand and Australia, fish-and-chip vendors are a popular business and source of income among the Asian community, particularly Chinese migrants. ", "In Indonesia, fish and chips are commonly found in big cities like Jakarta in western and seafood restaurants, as well as chain restaurants like The Manhattan Fish Market, Fish & Chips, etc.", "\n\nIn Ireland, the majority of traditional vendors are migrants or the descendants of migrants from southern Italy. ", "A trade organisation exists to represent this tradition.", "\n\nFish and chips is a popular lunch meal eaten by families travelling to seaside resorts for day trips who do not bring their own picnic meals.", "\n\nFish-and-chip outlets sell roughly 25% of all the white fish consumed in the United Kingdom, and 10% of all potatoes.", "\n\nThe numerous competitions and awards for \"best fish-and-chip shop\" testify to the recognised status of this type of outlet in popular culture.", "\n\nFish-and-chip shops traditionally wrapped their product in newspaper, or with an inner layer of white paper (for hygiene) and an outer layer of newspaper or blank newsprint (for insulation and to absorb grease), though the use of newspaper for wrapping has almost ceased on grounds of hygiene. , ", "establishments usually use food-quality wrapping paper, occasionally printed on the outside to imitate newspaper.", "\n\nThe British National Federation of Fish Friers was founded in 1913. ", "It promotes fish and chips and offers training courses. ", "It has about 8,500 members from around the UK.", "\n\nA previous world record for the \"largest serving of fish and chips\" was held by Gadaleto's Seafood Market in New Paltz, New York. ", "This 2004 record was broken by Yorkshire pub Wensleydale Heifer in July 2011. ", "An attempt to break this record was made by Doncaster fish and chip shop Scawsby Fisheries in August 2012, which served of battered cod alongside of chips.", "\n\nCultural impact\n\nThe long-standing Roman Catholic tradition of not eating meat on Fridays, especially during Lent, and of substituting fish for meat on that day continues to influence habits even in predominantly Protestant, Anglican, semi-secular and secular societies. ", "Friday night remains a traditional occasion for eating fish-and-chips; and many cafeterias and similar establishments, while varying their menus on other days of the week, habitually offer fish and chips every Friday.", "\n\nIn Australia and New Zealand, the words \"fish and chips\" are often used as a shibboleth to highlight the difference in each country's short-i vowel sound . ", "Australian English has a higher forward sound , close to the ee in see (but shorter), while New Zealand English has a lower backward sound akin to the a in Rosa's (but not in Rosa, which is typically lower ). ", "Thus, New Zealanders hear Australians say \"feesh and cheeps,\" while Australians hear New Zealanders say \"fush and chups.\"", "\n\nEnvironment\nIn the UK, waste oil from fish and chip shops has become a useful source of biodiesel. ", "The German biodiesel company Petrotec has outlined plans to produce biodiesel in the UK from waste oil from the British fish-and-chip industry.", "\n\nSee also\n\n Chicken and chips – another take-away dish often sold in the same establishments.", "\n Fried potatoes\n Fish fry\n Fried fish\n List of deep fried foods\n List of fish and chip restaurants\n List of fish dishes\n Pescado frito\n Kibbeling\n\nReferences\n\nBibliography\n\nExternal links\n\n \"Top UK dish 'hooked French first'\": BBC News: Fish and chips invented in France? ", "Retrieved 2008-05-27\n \"My plaice or yours?\" - ", "article from The Guardian detailing some chippy terminology. ", "Retrieved 2008-05-27\n Far Flung Fish and Chips - historical article\n \"Fish and chips\": the (UK) Sea Fish Industry Authority's views. ", "Retrieved 2008-05-27\n BBC TWO Ching He Huang-style fish and chips\n National Federation of Fish Friers, the UK industry body for fish and chip shops.", "\n\nCategory:British cuisine\nCategory:Australian cuisine\nCategory:Irish cuisine\nCategory:Jewish cuisine\nCategory:American cuisine\nCategory:New England cuisine\nCategory:New Zealand cuisine\nCategory:South African cuisine\nCategory:Canadian cuisine\nCategory:Fast food\nChips\nCategory:Potato dishes\nCategory:Deep fried foods\nCategory:Food combinations\nCategory:National dishes" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0, 0.005917159763313609, 0, 0, 0, 0, 0, 0.004784688995215311, 0.015748031496062992, 0, 0.015151515151515152, 0, 0, 0.0030581039755351682, 0, 0, 0, 0, 0.00980392156862745, 0.0029585798816568047, 0.011111111111111112, 0, 0.00816326530612245, 0, 0.009523809523809525, 0.011111111111111112, 0, 0.0049382716049382715, 0.005076142131979695, 0.005813953488372093, 0.012987012987012988, 0, 0.005434782608695652, 0.006756756756756757, 0, 0, 0, 0, 0.016666666666666666, 0.02459016393442623, 0.006329113924050633, 0.007246376811594203, 0.002717391304347826, 0.010638297872340425, 0.00980392156862745, 0.004149377593360996, 0, 0, 0.014925373134328358, 0, 0, 0, 0, 0, 0, 0.009523809523809525, 0.008849557522123894, 0, 0, 0, 0, 0, 0, 0.010309278350515464, 0, 0, 0, 0, 0, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0.021052631578947368, 0.0030581039755351682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007142857142857143, 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.014285714285714285, 0, 0, 0.007575757575757576, 0.02564102564102564, 0.006369426751592357, 0, 0, 0, 0.014285714285714285, 0, 0, 0, 0.010638297872340425, 0.003663003663003663, 0, 0.016129032258064516, 0.007518796992481203, 0.006756756756756757, 0 ]
0.003074
5
[ { "analysis_explanation": null, "end": 129, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122 }, { "analysis_explanation": null, "end": 293, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275 }, { "analysis_explanation": null, "end": 302, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295 }, { "analysis_explanation": null, "end": 432, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 430 }, { "analysis_explanation": null, "end": 445, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436 }, { "analysis_explanation": null, "end": 454, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 450 }, { "analysis_explanation": null, "end": 516, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514 }, { "analysis_explanation": null, "end": 534, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 525 }, { "analysis_explanation": null, "end": 590, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586 }, { "analysis_explanation": null, "end": 603, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 596 }, { "analysis_explanation": null, "end": 730, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 728 }, { "analysis_explanation": null, "end": 789, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 787 }, { "analysis_explanation": null, "end": 860, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 843 }, { "analysis_explanation": null, "end": 867, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 861 }, { "analysis_explanation": null, "end": 891, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 884 }, { "analysis_explanation": null, "end": 913, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 908 }, { "analysis_explanation": null, "end": 926, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 918 }, { "analysis_explanation": null, "end": 950, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 943 }, { "analysis_explanation": null, "end": 979, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 963 }, { "analysis_explanation": null, "end": 1121, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1114 }, { "analysis_explanation": null, "end": 1142, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1136 }, { "analysis_explanation": null, "end": 1195, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1186 }, { "analysis_explanation": null, "end": 1323, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1308 }, { "analysis_explanation": null, "end": 1372, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1360 }, { "analysis_explanation": null, "end": 1378, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1374 }, { "analysis_explanation": null, "end": 1392, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1388 }, { "analysis_explanation": null, "end": 1503, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1497 }, { "analysis_explanation": null, "end": 1674, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1665 }, { "analysis_explanation": null, "end": 1685, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1679 }, { "analysis_explanation": null, "end": 1701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1689 }, { "analysis_explanation": null, "end": 1716, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1709 }, { "analysis_explanation": null, "end": 1729, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1723 }, { "analysis_explanation": null, "end": 1741, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1731 }, { "analysis_explanation": null, "end": 1755, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1746 }, { "analysis_explanation": null, "end": 1846, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1826 }, { "analysis_explanation": null, "end": 2006, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1999 }, { "analysis_explanation": null, "end": 2082, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2069 }, { "analysis_explanation": null, "end": 2211, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2176 }, { "analysis_explanation": null, "end": 2383, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2376 }, { "analysis_explanation": null, "end": 2524, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2508 }, { "analysis_explanation": null, "end": 2551, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2547 }, { "analysis_explanation": null, "end": 2676, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2669 }, { "analysis_explanation": null, "end": 2716, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2698 }, { "analysis_explanation": null, "end": 2789, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2783 }, { "analysis_explanation": null, "end": 3140, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3124 }, { "analysis_explanation": null, "end": 3183, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3177 }, { "analysis_explanation": null, "end": 3250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3239 }, { "analysis_explanation": null, "end": 3319, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3312 }, { "analysis_explanation": null, "end": 3505, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3499 }, { "analysis_explanation": null, "end": 3562, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3558 }, { "analysis_explanation": null, "end": 3577, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3564 }, { "analysis_explanation": null, "end": 3625, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3617 }, { "analysis_explanation": null, "end": 3641, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3627 }, { "analysis_explanation": null, "end": 3658, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3646 }, { "analysis_explanation": null, "end": 3666, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3662 }, { "analysis_explanation": null, "end": 3786, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3771 }, { "analysis_explanation": null, "end": 3815, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3811 }, { "analysis_explanation": null, "end": 3894, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3887 }, { "analysis_explanation": null, "end": 4101, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4083 }, { "analysis_explanation": null, "end": 4160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4143 }, { "analysis_explanation": null, "end": 4244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4233 }, { "analysis_explanation": null, "end": 4331, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4324 }, { "analysis_explanation": null, "end": 4525, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4507 }, { "analysis_explanation": null, "end": 4577, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4570 }, { "analysis_explanation": null, "end": 4667, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4663 }, { "analysis_explanation": null, "end": 4930, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4912 }, { "analysis_explanation": null, "end": 5121, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5107 }, { "analysis_explanation": null, "end": 5152, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5145 }, { "analysis_explanation": null, "end": 5218, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5212 }, { "analysis_explanation": null, "end": 5241, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5223 }, { "analysis_explanation": null, "end": 5275, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5245 }, { "analysis_explanation": null, "end": 5292, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5277 }, { "analysis_explanation": null, "end": 5342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5330 }, { "analysis_explanation": null, "end": 5367, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5363 }, { "analysis_explanation": null, "end": 5398, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5391 }, { "analysis_explanation": null, "end": 5504, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5498 }, { "analysis_explanation": null, "end": 5652, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5646 }, { "analysis_explanation": null, "end": 5676, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5664 }, { "analysis_explanation": null, "end": 5741, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5735 }, { "analysis_explanation": null, "end": 5749, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5745 }, { "analysis_explanation": null, "end": 5760, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5756 }, { "analysis_explanation": null, "end": 5806, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5786 }, { "analysis_explanation": null, "end": 5818, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5811 }, { "analysis_explanation": null, "end": 5827, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5823 }, { "analysis_explanation": null, "end": 5919, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5906 }, { "analysis_explanation": null, "end": 5930, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5926 }, { "analysis_explanation": null, "end": 5945, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5934 }, { "analysis_explanation": null, "end": 5953, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5947 }, { "analysis_explanation": null, "end": 5964, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5960 }, { "analysis_explanation": null, "end": 5976, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5968 }, { "analysis_explanation": null, "end": 5984, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5978 }, { "analysis_explanation": null, "end": 6057, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6051 }, { "analysis_explanation": null, "end": 6082, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6062 }, { "analysis_explanation": null, "end": 6121, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6105 }, { "analysis_explanation": null, "end": 6129, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6123 }, { "analysis_explanation": null, "end": 6164, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6158 }, { "analysis_explanation": null, "end": 6172, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6168 }, { "analysis_explanation": null, "end": 6375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6370 }, { "analysis_explanation": null, "end": 6512, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6506 }, { "analysis_explanation": null, "end": 6521, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6514 }, { "analysis_explanation": null, "end": 6531, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6523 }, { "analysis_explanation": null, "end": 6541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6533 }, { "analysis_explanation": null, "end": 6550, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6543 }, { "analysis_explanation": null, "end": 6596, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6589 }, { "analysis_explanation": null, "end": 6603, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6598 }, { "analysis_explanation": null, "end": 6643, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6621 }, { "analysis_explanation": null, "end": 6758, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6747 }, { "analysis_explanation": null, "end": 6896, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6888 }, { "analysis_explanation": null, "end": 6978, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6963 }, { "analysis_explanation": null, "end": 6983, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6979 }, { "analysis_explanation": null, "end": 7017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7011 }, { "analysis_explanation": null, "end": 7083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7066 }, { "analysis_explanation": null, "end": 7134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7128 }, { "analysis_explanation": null, "end": 7193, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7186 }, { "analysis_explanation": null, "end": 7201, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7197 }, { "analysis_explanation": null, "end": 7336, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7329 }, { "analysis_explanation": null, "end": 7365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7348 }, { "analysis_explanation": null, "end": 7405, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7396 }, { "analysis_explanation": null, "end": 7419, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7410 }, { "analysis_explanation": null, "end": 7643, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7635 }, { "analysis_explanation": null, "end": 7856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7854 }, { "analysis_explanation": null, "end": 7864, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7860 }, { "analysis_explanation": null, "end": 7881, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7875 }, { "analysis_explanation": null, "end": 7936, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7927 }, { "analysis_explanation": null, "end": 7957, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7955 }, { "analysis_explanation": null, "end": 7967, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7958 }, { "analysis_explanation": null, "end": 7988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7981 }, { "analysis_explanation": null, "end": 8038, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8031 }, { "analysis_explanation": null, "end": 8064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8050 }, { "analysis_explanation": null, "end": 8109, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8095 }, { "analysis_explanation": null, "end": 8134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8124 }, { "analysis_explanation": null, "end": 8160, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8149 }, { "analysis_explanation": null, "end": 8173, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8164 }, { "analysis_explanation": null, "end": 8206, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8200 }, { "analysis_explanation": null, "end": 8259, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8253 }, { "analysis_explanation": null, "end": 8374, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8369 }, { "analysis_explanation": null, "end": 8508, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8502 }, { "analysis_explanation": null, "end": 8609, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8592 }, { "analysis_explanation": null, "end": 8668, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8657 }, { "analysis_explanation": null, "end": 8779, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8768 }, { "analysis_explanation": null, "end": 8868, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8861 }, { "analysis_explanation": null, "end": 8921, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8905 }, { "analysis_explanation": null, "end": 8972, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8961 }, { "analysis_explanation": null, "end": 9023, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9016 }, { "analysis_explanation": null, "end": 9031, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9025 }, { "analysis_explanation": null, "end": 9037, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9032 }, { "analysis_explanation": null, "end": 9068, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9047 }, { "analysis_explanation": null, "end": 9231, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9227 }, { "analysis_explanation": null, "end": 9311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9300 }, { "analysis_explanation": null, "end": 9446, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9433 }, { "analysis_explanation": null, "end": 9468, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9451 }, { "analysis_explanation": null, "end": 9537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9530 }, { "analysis_explanation": null, "end": 9546, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9538 }, { "analysis_explanation": null, "end": 9560, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9551 }, { "analysis_explanation": null, "end": 9593, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9584 }, { "analysis_explanation": null, "end": 9611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9598 }, { "analysis_explanation": null, "end": 9700, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9698 }, { "analysis_explanation": null, "end": 9765, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9759 }, { "analysis_explanation": null, "end": 9798, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9791 }, { "analysis_explanation": null, "end": 9808, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9803 }, { "analysis_explanation": null, "end": 9866, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9860 }, { "analysis_explanation": null, "end": 9938, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9931 }, { "analysis_explanation": null, "end": 9975, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9949 }, { "analysis_explanation": null, "end": 10030, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10024 }, { "analysis_explanation": null, "end": 10352, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10332 }, { "analysis_explanation": null, "end": 10365, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10357 }, { "analysis_explanation": null, "end": 10414, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10398 }, { "analysis_explanation": null, "end": 10760, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10753 }, { "analysis_explanation": null, "end": 10770, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10765 }, { "analysis_explanation": null, "end": 10810, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10802 }, { "analysis_explanation": null, "end": 10823, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10817 }, { "analysis_explanation": null, "end": 10905, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10888 }, { "analysis_explanation": null, "end": 10963, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10956 }, { "analysis_explanation": null, "end": 10973, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10968 }, { "analysis_explanation": null, "end": 11038, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11031 }, { "analysis_explanation": null, "end": 11050, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11043 }, { "analysis_explanation": null, "end": 11679, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11672 }, { "analysis_explanation": null, "end": 11691, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11684 }, { "analysis_explanation": null, "end": 11931, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11924 }, { "analysis_explanation": null, "end": 12277, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12261 }, { "analysis_explanation": null, "end": 12364, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12356 }, { "analysis_explanation": null, "end": 12383, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12369 }, { "analysis_explanation": null, "end": 12462, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12457 }, { "analysis_explanation": null, "end": 12475, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12467 }, { "analysis_explanation": null, "end": 12505, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12500 }, { "analysis_explanation": null, "end": 12552, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12543 }, { "analysis_explanation": null, "end": 12633, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12615 }, { "analysis_explanation": null, "end": 12726, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12715 }, { "analysis_explanation": null, "end": 12892, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12870 }, { "analysis_explanation": null, "end": 12927, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12920 }, { "analysis_explanation": null, "end": 12969, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12959 }, { "analysis_explanation": null, "end": 13071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13060 }, { "analysis_explanation": null, "end": 13091, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13084 }, { "analysis_explanation": null, "end": 13169, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13153 }, { "analysis_explanation": null, "end": 13311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13296 }, { "analysis_explanation": null, "end": 13352, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13340 }, { "analysis_explanation": null, "end": 13389, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13372 }, { "analysis_explanation": null, "end": 13528, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13517 }, { "analysis_explanation": null, "end": 13538, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13530 }, { "analysis_explanation": null, "end": 13561, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13555 }, { "analysis_explanation": null, "end": 13597, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13583 }, { "analysis_explanation": null, "end": 13664, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13655 }, { "analysis_explanation": null, "end": 13674, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13669 }, { "analysis_explanation": null, "end": 13787, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13780 }, { "analysis_explanation": null, "end": 13843, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13836 }, { "analysis_explanation": null, "end": 13855, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13848 }, { "analysis_explanation": null, "end": 14089, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14080 }, { "analysis_explanation": null, "end": 14205, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14198 }, { "analysis_explanation": null, "end": 14562, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14555 }, { "analysis_explanation": null, "end": 14569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14564 }, { "analysis_explanation": null, "end": 14581, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14574 }, { "analysis_explanation": null, "end": 14793, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14785 }, { "analysis_explanation": null, "end": 14963, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14947 }, { "analysis_explanation": null, "end": 14992, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14981 }, { "analysis_explanation": null, "end": 15068, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15052 }, { "analysis_explanation": null, "end": 15158, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15153 }, { "analysis_explanation": null, "end": 15452, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15450 }, { "analysis_explanation": null, "end": 16127, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16109 }, { "analysis_explanation": null, "end": 16136, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16129 }, { "analysis_explanation": null, "end": 16147, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16138 }, { "analysis_explanation": null, "end": 16155, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16149 }, { "analysis_explanation": null, "end": 16168, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16157 }, { "analysis_explanation": null, "end": 16185, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16173 }, { "analysis_explanation": null, "end": 16449, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16443 }, { "analysis_explanation": null, "end": 16521, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16503 }, { "analysis_explanation": null, "end": 16569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16565 }, { "analysis_explanation": null, "end": 16668, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16657 }, { "analysis_explanation": null, "end": 16682, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16673 }, { "analysis_explanation": null, "end": 16765, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16760 }, { "analysis_explanation": null, "end": 16797, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16790 }, { "analysis_explanation": null, "end": 16820, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16811 }, { "analysis_explanation": null, "end": 16882, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16875 }, { "analysis_explanation": null, "end": 17009, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17002 }, { "analysis_explanation": null, "end": 17110, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17105 }, { "analysis_explanation": null, "end": 17263, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17260 }, { "analysis_explanation": null, "end": 17402, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17384 }, { "analysis_explanation": null, "end": 18048, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18044 }, { "analysis_explanation": null, "end": 18151, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18149 }, { "analysis_explanation": null, "end": 18271, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18262 }, { "analysis_explanation": null, "end": 18281, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18273 }, { "analysis_explanation": null, "end": 18292, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18288 }, { "analysis_explanation": null, "end": 18323, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18314 }, { "analysis_explanation": null, "end": 18346, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18328 }, { "analysis_explanation": null, "end": 18359, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18350 }, { "analysis_explanation": null, "end": 18466, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18455 }, { "analysis_explanation": null, "end": 18568, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18554 }, { "analysis_explanation": null, "end": 18608, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18601 }, { "analysis_explanation": null, "end": 18679, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18671 }, { "analysis_explanation": null, "end": 18742, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18732 }, { "analysis_explanation": null, "end": 18752, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18744 }, { "analysis_explanation": null, "end": 18796, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18790 }, { "analysis_explanation": null, "end": 18802, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18797 }, { "analysis_explanation": null, "end": 19006, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19000 }, { "analysis_explanation": null, "end": 19020, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19011 }, { "analysis_explanation": null, "end": 19036, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19025 }, { "analysis_explanation": null, "end": 19174, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19164 }, { "analysis_explanation": null, "end": 19267, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19256 }, { "analysis_explanation": null, "end": 19344, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19340 }, { "analysis_explanation": null, "end": 19394, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19380 }, { "analysis_explanation": null, "end": 19411, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19400 }, { "analysis_explanation": null, "end": 19453, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19442 }, { "analysis_explanation": null, "end": 19473, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19459 }, { "analysis_explanation": null, "end": 19483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19479 }, { "analysis_explanation": null, "end": 19517, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19515 }, { "analysis_explanation": null, "end": 19605, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19599 }, { "analysis_explanation": null, "end": 19682, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19680 }, { "analysis_explanation": null, "end": 19714, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19707 }, { "analysis_explanation": null, "end": 20028, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20026 }, { "analysis_explanation": null, "end": 20101, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20095 }, { "analysis_explanation": null, "end": 20123, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20113 }, { "analysis_explanation": null, "end": 20231, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20221 }, { "analysis_explanation": null, "end": 20305, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20303 }, { "analysis_explanation": null, "end": 20364, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20354 }, { "analysis_explanation": null, "end": 20379, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20370 }, { "analysis_explanation": null, "end": 20453, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20451 }, { "analysis_explanation": null, "end": 20509, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20502 }, { "analysis_explanation": null, "end": 20537, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20527 }, { "analysis_explanation": null, "end": 20560, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20555 }, { "analysis_explanation": null, "end": 20584, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20578 }, { "analysis_explanation": null, "end": 20610, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20602 }, { "analysis_explanation": null, "end": 20639, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20628 }, { "analysis_explanation": null, "end": 20668, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20657 }, { "analysis_explanation": null, "end": 20699, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20686 }, { "analysis_explanation": null, "end": 20725, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20717 } ]
[ "Interactions of iron-thiol-nitrosyl compounds with the phosphoroclastic system of Clostridium sporogenes.", "\nCertain reagents, such as ascorbate or iron salts and thiols, enhance the bacteriostatic action of nitrite on food-spoilage bacteria. ", "This may be due to the formation of nitric oxide and iron-thiol-nitrosyl [( Fe-S-NO]) complexes. ", "The minimum concentrations of these reagents required to inhibit growth of Clostridium sporogenes were investigated. ", "A mixture of nitrite (0.72 mM) with iron (1.44 mM) and cysteine (2.16 mM) was found to be extremely inhibitory when autoclaved and diluted into the culture medium. ", "This mixture caused rapid cessation of growth and loss of cell viability at a final concentration corresponding to 40 microM-nitrite. ", "If added to the initial culture medium, it prevented growth at 5 microM-nitrite. ", "The mixture was more inhibitory, on the basis of the nitrite concentration used, than the 'Perigo factor', obtained by autoclaving nitrite in growth medium. [", "Fe-S-NO] compounds of known chemical structure were tested to determine if they were responsible for this effect. ", "Total inhibition of cell growth was observed with the tetranuclear clusters [Fe4S3(NO)7] (Roussin's black salt), [Fe4S4(NO)4] or [Fe4Se3(NO)7], added at concentrations equivalent to 10 microM-nitrite, or with [Fe2(SMe)2(NO)4] (methyl ester of Roussin's red salt), equivalent to 200 microM-nitrite. ", "The rate of hydrogen production in growing cell cultures was inhibited by [Fe4S3(NO)7] at levels equivalent to 2.5 microM-nitrite. ", "EPR spectra of the inhibited cells showed features with g-values of 2.03, characteristic of mononuclear iron-nitrosyl species, and, under non-reducing conditions, an unusual signal at g = 1.65. ", "There was no correlation between growth inhibition and the g = 2.03 signal, though there was a better correlation between inhibition and the g = 1.65 signal. ", "The direct effects of the compounds were tested on the iron-sulphur proteins of the phosphoroclastic system, namely ferredoxin, pyruvate-ferredoxin oxidoreductase and hydrogenase. ", "EPR spectra and enzyme assays showed that these proteins were not destroyed by [Fe4S3(NO)7], [Fe4S4(NO)4], [Fe2(SMe)2(NO)4], [Fe(SPh)2(NO)2], or M2 (an autoclaved mixture of 66 mM-cysteine, 3.6 mM-FeSO4 and 0.72 mM-NaNO2) at concentrations higher than those that caused total inhibition of cell growth. ", "Inhibition of cells by [Fe-S-NO] compounds is unlikely to be due to interaction with the preformed enzymes. ", "The possible formation of iron-nitrosyl complexes in vivo, and their inhibitory actions, are discussed." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.009523809523809525, 0, 0, 0, 0, 0, 0, 0, 0, 0.006711409395973154, 0, 0.005154639175257732, 0, 0, 0.009900990099009901, 0, 0 ]
0.001841
5
[ { "analysis_explanation": null, "end": 1203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1196 }, { "analysis_explanation": null, "end": 1356, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1349 }, { "analysis_explanation": null, "end": 2214, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2212 } ]
[ "Cruz finally gets chance to shine after injuries\n\nOver the last 1,500 days, MMA fans have only had a mere glimpse – 61 seconds worth – of the first UFC and final WEC bantamweight champion do what he does best.", "\n\nAfter a series of injuries derailed his stellar title run and 11-fight win streak, the man known as “The Dominator” stormed the Octagon like a hurricane, scoring a blistering first-round KO of Japanese contender Takeya Mizugaki at UFC 178 in September of 2014.", "\n\nThen came another tragic setback, his third ACL surgery. ", "Once again, Cruz was stolen away from fight fans, stalling a championship clash with current UFC bantamweight belt holder TJ Dillashaw.", "\n\nBut finally, Cruz is healthy and ready to tangle for the title this Sunday in Boston.", "\n\nYet the question still remains, after all the time, surgeries, rehab, recovery, training and a single knockout performance in four-plus years: Who is Cruz?", "\n\n“Nobody knows who I am,” Cruz said. “(", "Dillashaw’s) trying to say, ‘You’ve never talked this much before.’ ", "Dude? ", "It’s been four years! ", "If I came back after four years and was the same person, what have I been doing with my life? ", "Realistically, people earn a degree in four years. ", "I just have a different enlightenment in this process because I had it all taken from me. ", "I have a different mindset going into it and really I have nothing to lose. ", "I don’t. ", "I don’t have the title right now. ", "He’s supposed to be the baddest man on the planet, not me. ", "He’s the man to beat. ", "I know what that feels like. ", "I know what it feels like when everybody thinks you’re the best. ", "Also, I know what it feels like when no one feels you’re good enough to win. ", "I know all ends of the spectrum. ", "I know what it feels like to lose the belt and I know what it feels like to have the belt. ", "That allows me to have a different peace right now and enjoy this process.”", "\n\nThe 30-year old Californian with an incomparable 20-1 pro record, which includes wins overs the likes of Urijah Faber, Demetrious Johnson and Joseph Benavidez, has lost a lot outside the Octagon and, rightfully so, it has changed him. ", "Between enduring multiple serious injuries and seeing new champions crowned despite never being defeated himself, Cruz has been forced to mature and become mentally stronger on a grand scale outside of the Octagon. ", "The result is a calm, but highly-focused fighter who is truly appreciative that he gets the opportunity to be “The Dominator” again.", "\n\n“I’m out there doing what I love because I enjoy doing it,” he said. “", "I chose to go for the title in this fight. ", "I could have had another three-round fight if I wanted to and set myself up and get a little stronger or whatever people would say. ", "I’m doing this because I enjoying doing this and I get to do this at the very highest level against the guy who the world says is the best guy in the world. ", "I already know I’m the best in the world, so why not challenge myself here. ", "I’m going into this as a free man with nothing to lose.”", "\n\nConsider the quick drubbing of Mizugaki as a minute-long microcosm of how Cruz is feeling heading into his UFC bantamweight title fight with Dillashaw, who is making the third defense of the belt he won from Renan Barao.", "\n\nSixteen months ago, the longtime star of Alliance MMA jogged out to the Octagon to take on the steel-chinned Mizugaki who was on a five-fight win streak and ranked fifth in the division. ", "A few punches slipped here, a double leg takedown there, a series of short punches against the fence and Cruz was back. ", "With zero screaming nor muscle-flexing, he enjoyed his first post-victory moment inside the Octagon in three years with an ear-to-ear smile as he exhaled and thanked the fans.", "\n\n“When I fought Mizugaki, I could go out there and just live free,” Cruz said. “", "Enjoy my sport. ", "Enjoy being there. ", "Enjoy being under the lights. ", "Enjoy doing what I like to do - compete and fight people. ", "It created a great win for me in that mindset. ", "So, TJ’s got a lot to lose right now. ", "I don’t. ", "I already lost everything. ", "This is just going to be another fun thing for me. ", "I get to go out there and fight for another title, which I’ve already done. ", "I’ve got two titles at home. ", "I’ve already accomplished the pinnacle of this sport several times.”", "\n\nOn January 17, he returns. ", "Simply put, Cruz making it this far proves his championship mettle even before the first punches are thrown, with or without a belt around his waist. ", "That being said, on Sunday night, Cruz is ready to show to the world who he is and why he is called The Dominator.", "\n\n“It’s the experience, the learning, the evolution; it’s the crying, the blood, the pain that grows you into a better man when you win a world title,” he said. “", "I’ve gained that. ", "I’m already a world champion. ", "I’m already a world champion before this fight. ", "When I go in there, I’m going in there to have fun and put on a great show for the fans and do my job.”", "\n\nUFC Connected is a monthly magazine show that profiles the fighters and events from the worlds leading MMA promotion. ", "In this episode we ‘Take 5’ with UFC analyst Dan Hardy and find out what European fighters he believes are ones to watch in 2018.", "\n\n20-feb-2018\n\nIsrael Adesanya's Octagon debut was arguably the most anticipated since two weight world champion Conor McGregor. \"", "The Last Stylebender\" impressed with a second-round TKO win vs. Rob Wilkinson and spoke about his performance.", "\n\n10-feb-2018\n\nGo backstage at UFC 221 with Yoel Romero after his victory in Perth, Australia over Luke Rockhold. ", "Romero talks to UFC correspondent Megan Olivi about the huge win." ]
{ "pile_set_name": "Pile-CC" }
[ 0.014354066985645933, 0.007633587786259542, 0, 0.014814814814814815, 0.011494252873563218, 0.006369426751592357, 0.025, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 0.004651162790697674, 0, 0, 0, 0, 0, 0, 0, 0.013513513513513514, 0.005291005291005291, 0.008333333333333333, 0, 0.012345679012345678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.034482758620689655, 0, 0, 0.006666666666666667, 0.008771929824561403, 0, 0, 0, 0, 0, 0.008333333333333333, 0.015503875968992248, 0.015384615384615385, 0.01818181818181818, 0.017543859649122806, 0.03076923076923077 ]
0.004794
5
[ { "analysis_explanation": null, "end": 4, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 74, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55 }, { "analysis_explanation": null, "end": 126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116 }, { "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": 399, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 397 }, { "analysis_explanation": null, "end": 411, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 403 }, { "analysis_explanation": null, "end": 437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422 }, { "analysis_explanation": null, "end": 469, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 452 }, { "analysis_explanation": null, "end": 544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 540 }, { "analysis_explanation": null, "end": 624, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 621 }, { "analysis_explanation": null, "end": 662, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 650 }, { "analysis_explanation": null, "end": 681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 677 }, { "analysis_explanation": null, "end": 738, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 727 }, { "analysis_explanation": null, "end": 748, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 742 }, { "analysis_explanation": null, "end": 891, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 876 }, { "analysis_explanation": null, "end": 904, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 900 }, { "analysis_explanation": null, "end": 935, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 931 }, { "analysis_explanation": null, "end": 1039, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1029 }, { "analysis_explanation": null, "end": 1072, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1062 }, { "analysis_explanation": null, "end": 1184, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1174 }, { "analysis_explanation": null, "end": 1862, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1851 }, { "analysis_explanation": null, "end": 1874, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1863 }, { "analysis_explanation": null, "end": 1984, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1966 }, { "analysis_explanation": null, "end": 2005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1989 }, { "analysis_explanation": null, "end": 2200, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2196 }, { "analysis_explanation": null, "end": 2295, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2288 }, { "analysis_explanation": null, "end": 3005, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2997 }, { "analysis_explanation": null, "end": 3044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3040 }, { "analysis_explanation": null, "end": 3116, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3107 }, { "analysis_explanation": null, "end": 3185, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3174 }, { "analysis_explanation": null, "end": 3205, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3187 }, { "analysis_explanation": null, "end": 3304, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3296 }, { "analysis_explanation": null, "end": 3483, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3479 }, { "analysis_explanation": null, "end": 3608, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3597 }, { "analysis_explanation": null, "end": 3693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3685 }, { "analysis_explanation": null, "end": 3741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3737 }, { "analysis_explanation": null, "end": 4232, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4222 }, { "analysis_explanation": null, "end": 4262, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4258 }, { "analysis_explanation": null, "end": 4428, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4416 }, { "analysis_explanation": null, "end": 4434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4430 }, { "analysis_explanation": null, "end": 4898, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4891 }, { "analysis_explanation": null, "end": 5044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5035 }, { "analysis_explanation": null, "end": 5071, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5063 }, { "analysis_explanation": null, "end": 5118, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5114 }, { "analysis_explanation": null, "end": 5139, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5133 }, { "analysis_explanation": null, "end": 5148, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5140 }, { "analysis_explanation": null, "end": 5245, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5231 }, { "analysis_explanation": null, "end": 5326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5313 }, { "analysis_explanation": null, "end": 5413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5402 }, { "analysis_explanation": null, "end": 5440, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5435 }, { "analysis_explanation": null, "end": 5451, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5442 }, { "analysis_explanation": null, "end": 5470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5457 }, { "analysis_explanation": null, "end": 5478, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5472 }, { "analysis_explanation": null, "end": 5517, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5506 }, { "analysis_explanation": null, "end": 5131, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 5120 }, { "analysis_explanation": null, "end": 5371, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 5360 } ]
[ "The chief of staff Gen. Joe Dunford Jr. is meeting with Russia's top military officer this week for the first such meeting in three years.", "\n\nPentagon and Moscow leaders have not met in person since Russia's annexation of Crimea in 2014 - which sparked international outcry.", "\n\nBut with rapidly escalating tensions between the U.S. and Russia, Dunford Jr., chairman of the Joint Chiefs of Staff, will hold talks with Valeriy Gerasimov, the chief of the general staff of Russia's armed forces, in Baku, Azerbaijian, on Thursday.", "\n\nThe meeting follows a series of belligerent moves by their military as Moscow which appears to be testing the resolve of Donald Trump's young presidency - including buzzing a US destroyer and allowing a Russian spy ship to 'loiter' near a submarine base.", "\n\nGen Dunford Jr., chairman of the Joint Chiefs of Staff, (left) will hold talks with Valeriy Gerasimov, the chief of the general staff for Russia, in Baku,(right) Azerbaijian\n\nToday Donald Trump's defense secretary James Mattis rejected Vladimir Putin's calls for closer collaboration with the U.S. military to fight terrorism.", "\n\nThe Russian president had said it was in the 'general interest' for improved information sharing between services.", "\n\n'We are not in a position right now to collaborate on a military level. ", "But our political leaders will engage and try to find common ground,' Mattis told reporters after talks at NATO headquarters in Brussels.", "\n\nU.S. Secretary of State Rex Tillerson and Russian Foreign Minister Sergey Lavrov also met for the first time in the highest-level face-to-face contact between the two countries since President Donald Trump took office.", "\n\nUS Secretary of State Rex Tillerson (right) and Russian Foreign Minister Sergey Lavrov (left) have met for the first time in the highest-level face-to-face contact between the two countries since President Donald Trump took office.", "\n\nLavrov was asked if Russia is concerned about turmoil in the Trump administration. ", "He repeated Moscow's standard line that Russia 'does not interfere in the domestic matters of other countries.'", "\n\nRUSSIA TESTS TRUMP'S RESOLVE: A TIMELINE February 10: Four Russian military aircraft buzzed a U.S. destroyer, USS Porter, in the Black Sea February 14: Spy ship SSV-175 Viktor Leonov is spotted 70 miles off the East Coast February 14: Moscow secretly deploys a new cruise missile despite landmark arms control treaty February 15: Leonov is seen 30 miles away from Naval Submarine Base New London, Connecticut Advertisement\n\nTillerson did not speak at the meeting on the sidelines of a conference of foreign ministers of Group of 20 major powers in Bonn, Germany.", "\n\nMoscow is hoping Trump makes good on his pledge to improve ties with Russia and seek cooperation in the fight against ISIS.", "\n\n'Even a simple exchange of information about the channels and sources of terrorists, about people implicated in or suspected of terrorism seriously raises the effectiveness of our joint efforts,' Putin said.", "\n\nBut President Trump is currently facing questions over Moscow's influence on the White House. ", "They follow allegations from the US intelligence community that Putin ordered a hacking and influence campaign to help get Trump elected.", "\n\nThis week his national security adviser, Michael Flynn, resigned after it emerged he had made misleading statements he over conversations he'd had with the Russian ambassador.", "\n\nThe spy ship was seen just 30 miles away from the Naval Submarine Base New London, known as the 'Home of the Submarine Force', in Groton, Connecticut\n\nThe intelligence-gathering ship Viktor Leonov has been spotted on and off around the East Coast over the past few years (pictured in Havana in 2014)\n\nFour Russian military aircraft conducted low passes against a U.S. destroyer in the Black Sea just days before a spy ship was spotted off the East Coast (stock image)\n\nIt has prompted growing criticism over Moscow's influence on the White House.", "\n\nYesterday a Russian spy ship was spotted loitering just 30 miles off the coast of a Naval submarine base in Connecticut - the latest in series of belligerent moves by their military as Moscow appears to be testing the resolve of Donald Trump's young presidency.", "\n\nThe SSV-175 Viktor Leonov ship moved even closer to the East Coast, after it was spotted 70 miles off the coast of Delaware on Tuesday, Fox News reports.", "\n\nWhile it remains in international waters, a U.S. official said the armed boat - capable of intercepting communications and sonar capability - is 'loitering'.", "\n\nRussia has also deployed a new cruise missile apparently violating an arms control treaty banning ground-based U.S. and Russian intermediate-range missiles.", "\n\nThe nation has secretly deployed the ground-launched SSC-8 cruise missile that Moscow has been developing and testing for several years, despite U.S. complaints that it violated sections of the 1987 Intermediate-range Nuclear Forces treaty, The New York Times reported.", "\n\nTrump (far left) demanded the resignation of Michael Flynn (far right), his national security adviser for talking to the Russian ambassador, this week\n\nPutin recently called for the US and Russia to work together to fight terrorism (file above of Russian President Vladimir Putin)\n\nAnd days earlier, four Russian military aircraft conducted low passes against a US destroyer in the Black Sea.", "\n\nThe USS Porter, a guided missile destroyer, reported the aircraft performing 'dangerous flybys' past the ship which was based just off the coast of Romania on February 10.", "\n\n'There were several incidents involving multiple Russian aircraft,' said Navy Capt. ", "Danny Hernandez, spokesman for the European Command. '", "They were assessed by the commanding officer as unsafe and unprofessional.", "\n\nWHAT ARE THE LATEST RUSSIAN REPORTS? ", "High-level staffers on Trump's team and some aides were in 'constant communication' with Russian intelligence during the campaign One person has been named - former campaign chairman Paul Manafort President-elect Trump and President Obama were briefed on the contact Communication 'raised a red flag' - especially because Trump often spoke highly of Putin in public Communications were uncovered in call records and intercepted conversations Russian officials spoke about having 'special access to Trump' Information was found during 'routine US intelligence collection' - and not because Trump's team was targeted The FBI and intelligence officials are still trying to figure out why the communication was taking place Advertisement\n\nTrump's predecessor Barack Obama slapped sanctions on Russia's FSB domestic agency and the GRU military intelligence over accusations they were involved in cyberattacks against the US.", "\n\nThe comments come as a new report alleges members of Trump's team were in contact with Russian intelligence officials during the year leading up to the presidential election.", "\n\nThe New York Times claims call records and intercepted conversations show: 'members of Donald J. Trump's 2016 presidential campaign and other Trump associates had repeated contacts with senior Russian intelligence officials in the year before the election.'", "\n\nThe Times said its allegations are based off interviews it has carried out with four 'current and former American officials'.", "\n\nIt claims US intelligence was worried because the alleged contact was taking place as then-candidate Trump continued to praise Russian President Vladimir Putin on the campaign trail.", "\n\nThe Kremlin said on Wednesday, however, that the report was not based on any facts.", "\n\nFollowing his meeting with Gerasimov, Dunford will fly to Turkey on Friday for talks on a possible joint operation to recapture the Islamic State group's Syrian stronghold of Raqqa.", "\n\nTurkey's defense minister Fikri Isik told reporters in Brussels that Dunford's visit to Ankara would help Washington assess whether Turkey and the United States could act jointly.", "\n\nTurkey strongly objects to Syrian Kurdish fighters' participation in any operation to liberate Raqqa. ", "It is pressing the U.S. to stop supporting Syrian Kurdish groups that Ankara considers to be 'terrorists' because of their links to outlawed Kurdish rebels in Turkey.", "\n\nIsik said the impression he had from meetings with U.S. officials was that the new U.S. administration does not intend to use Syrian Kurdish forces to retake Raqqa." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.007246376811594203, 0.007462686567164179, 0.01195219123505976, 0.00390625, 0.018292682926829267, 0, 0, 0.0072992700729927005, 0.01818181818181818, 0.017167381974248927, 0.023529411764705882, 0, 0.008865248226950355, 0.016, 0.004784688995215311, 0.020833333333333332, 0.014598540145985401, 0.005649717514124294, 0.0036496350364963502, 0.0038022813688212928, 0.0064516129032258064, 0, 0, 0.007380073800738007, 0.007614213197969543, 0, 0.011627906976744186, 0.037037037037037035, 0, 0, 0.011969532100108813, 0.005681818181818182, 0.007722007722007722, 0.007874015748031496, 0.010869565217391304, 0.011764705882352941, 0.01639344262295082, 0.011049723756906077, 0, 0, 0.012048192771084338 ]
0.008749
5
[ { "analysis_explanation": null, "end": 39, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24 }, { "analysis_explanation": null, "end": 62, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56 }, { "analysis_explanation": null, "end": 95, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86 }, { "analysis_explanation": null, "end": 137, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126 }, { "analysis_explanation": null, "end": 158, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152 }, { "analysis_explanation": null, "end": 202, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196 }, { "analysis_explanation": null, "end": 225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219 }, { "analysis_explanation": null, "end": 233, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229 }, { "analysis_explanation": null, "end": 325, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 321 }, { "analysis_explanation": null, "end": 336, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 330 }, { "analysis_explanation": null, "end": 349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338 }, { "analysis_explanation": null, "end": 428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 411 }, { "analysis_explanation": null, "end": 470, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 464 }, { "analysis_explanation": null, "end": 494, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 490 }, { "analysis_explanation": null, "end": 520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512 }, { "analysis_explanation": null, "end": 599, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593 }, { "analysis_explanation": null, "end": 657, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 643 }, { "analysis_explanation": null, "end": 699, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 697 }, { "analysis_explanation": null, "end": 732, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 725 }, { "analysis_explanation": null, "end": 792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 777 }, { "analysis_explanation": null, "end": 878, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 861 }, { "analysis_explanation": null, "end": 921, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 915 }, { "analysis_explanation": null, "end": 957, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 952 }, { "analysis_explanation": null, "end": 972, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 958 }, { "analysis_explanation": null, "end": 1003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 991 }, { "analysis_explanation": null, "end": 1029, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1013 }, { "analysis_explanation": null, "end": 1074, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1070 }, { "analysis_explanation": null, "end": 1115, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1108 }, { "analysis_explanation": null, "end": 1367, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1361 }, { "analysis_explanation": null, "end": 1427, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1419 }, { "analysis_explanation": null, "end": 1433, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1429 }, { "analysis_explanation": null, "end": 1478, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1471 }, { "analysis_explanation": null, "end": 1509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1496 }, { "analysis_explanation": null, "end": 1634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1622 }, { "analysis_explanation": null, "end": 1650, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1648 }, { "analysis_explanation": null, "end": 1703, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1696 }, { "analysis_explanation": null, "end": 1734, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1721 }, { "analysis_explanation": null, "end": 1866, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1854 }, { "analysis_explanation": null, "end": 1886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1880 }, { "analysis_explanation": null, "end": 1906, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1900 }, { "analysis_explanation": null, "end": 1946, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1941 }, { "analysis_explanation": null, "end": 1981, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1975 }, { "analysis_explanation": null, "end": 2009, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2003 }, { "analysis_explanation": null, "end": 2093, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2088 }, { "analysis_explanation": null, "end": 2103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2096 }, { "analysis_explanation": null, "end": 2127, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2116 }, { "analysis_explanation": null, "end": 2141, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2134 }, { "analysis_explanation": null, "end": 2173, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2169 }, { "analysis_explanation": null, "end": 2195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2185 }, { "analysis_explanation": null, "end": 2213, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2200 }, { "analysis_explanation": null, "end": 2225, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2214 }, { "analysis_explanation": null, "end": 2257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2244 }, { "analysis_explanation": null, "end": 2296, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2282 }, { "analysis_explanation": null, "end": 2308, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2297 }, { "analysis_explanation": null, "end": 2316, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2310 }, { "analysis_explanation": null, "end": 2403, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2392 }, { "analysis_explanation": null, "end": 2411, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2405 }, { "analysis_explanation": null, "end": 2444, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2439 }, { "analysis_explanation": null, "end": 2470, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2460 }, { "analysis_explanation": null, "end": 2483, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2472 }, { "analysis_explanation": null, "end": 2627, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2623 }, { "analysis_explanation": null, "end": 2636, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2629 }, { "analysis_explanation": null, "end": 2644, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2638 }, { "analysis_explanation": null, "end": 2660, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2655 }, { "analysis_explanation": null, "end": 2713, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2707 }, { "analysis_explanation": null, "end": 2963, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2958 }, { "analysis_explanation": null, "end": 2989, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2984 }, { "analysis_explanation": null, "end": 3031, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3025 }, { "analysis_explanation": null, "end": 3099, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3097 }, { "analysis_explanation": null, "end": 3133, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3128 }, { "analysis_explanation": null, "end": 3192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3187 }, { "analysis_explanation": null, "end": 3211, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3202 }, { "analysis_explanation": null, "end": 3256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3243 }, { "analysis_explanation": null, "end": 3365, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3358 }, { "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": 3514, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3508 }, { "analysis_explanation": null, "end": 3527, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3516 }, { "analysis_explanation": null, "end": 3574, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3561 }, { "analysis_explanation": null, "end": 3624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3610 }, { "analysis_explanation": null, "end": 3648, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3630 }, { "analysis_explanation": null, "end": 3668, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3662 }, { "analysis_explanation": null, "end": 3676, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3672 }, { "analysis_explanation": null, "end": 3691, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3684 }, { "analysis_explanation": null, "end": 3745, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3741 }, { "analysis_explanation": null, "end": 3772, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3759 }, { "analysis_explanation": null, "end": 3782, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3773 }, { "analysis_explanation": null, "end": 3831, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3817 }, { "analysis_explanation": null, "end": 3892, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3886 }, { "analysis_explanation": null, "end": 3934, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3925 }, { "analysis_explanation": null, "end": 3944, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3937 }, { "analysis_explanation": null, "end": 4014, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4009 }, { "analysis_explanation": null, "end": 4044, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4033 }, { "analysis_explanation": null, "end": 4116, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4110 }, { "analysis_explanation": null, "end": 4168, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4154 }, { "analysis_explanation": null, "end": 4212, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4199 }, { "analysis_explanation": null, "end": 4253, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4239 }, { "analysis_explanation": null, "end": 4310, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4302 }, { "analysis_explanation": null, "end": 4321, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4314 }, { "analysis_explanation": null, "end": 4389, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4385 }, { "analysis_explanation": null, "end": 4505, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4499 }, { "analysis_explanation": null, "end": 4614, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4610 }, { "analysis_explanation": null, "end": 4626, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4619 }, { "analysis_explanation": null, "end": 4714, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4709 }, { "analysis_explanation": null, "end": 4741, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4735 }, { "analysis_explanation": null, "end": 4791, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4778 }, { "analysis_explanation": null, "end": 4805, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4801 }, { "analysis_explanation": null, "end": 4854, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4850 }, { "analysis_explanation": null, "end": 4931, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4926 }, { "analysis_explanation": null, "end": 4984, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4971 }, { "analysis_explanation": null, "end": 5054, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5047 }, { "analysis_explanation": null, "end": 5076, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5067 }, { "analysis_explanation": null, "end": 5083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5078 }, { "analysis_explanation": null, "end": 5110, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5108 }, { "analysis_explanation": null, "end": 5121, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5115 }, { "analysis_explanation": null, "end": 5180, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5173 }, { "analysis_explanation": null, "end": 5205, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5191 }, { "analysis_explanation": null, "end": 5224, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5212 }, { "analysis_explanation": null, "end": 5238, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5231 }, { "analysis_explanation": null, "end": 5290, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5288 }, { "analysis_explanation": null, "end": 5317, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5304 }, { "analysis_explanation": null, "end": 5474, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5467 }, { "analysis_explanation": null, "end": 5489, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5478 }, { "analysis_explanation": null, "end": 5547, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5540 }, { "analysis_explanation": null, "end": 5590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5575 }, { "analysis_explanation": null, "end": 5740, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5714 }, { "analysis_explanation": null, "end": 5838, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5831 }, { "analysis_explanation": null, "end": 5938, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5925 }, { "analysis_explanation": null, "end": 5960, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5955 }, { "analysis_explanation": null, "end": 5980, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5975 }, { "analysis_explanation": null, "end": 6069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6064 }, { "analysis_explanation": null, "end": 6097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6092 }, { "analysis_explanation": null, "end": 6191, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6184 }, { "analysis_explanation": null, "end": 6287, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6285 }, { "analysis_explanation": null, "end": 6336, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6331 }, { "analysis_explanation": null, "end": 6509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6497 }, { "analysis_explanation": null, "end": 6537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6531 }, { "analysis_explanation": null, "end": 6660, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6658 }, { "analysis_explanation": null, "end": 6756, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6749 }, { "analysis_explanation": null, "end": 6795, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6787 }, { "analysis_explanation": null, "end": 6941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6924 }, { "analysis_explanation": null, "end": 6946, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6942 }, { "analysis_explanation": null, "end": 7037, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7030 }, { "analysis_explanation": null, "end": 7072, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7064 }, { "analysis_explanation": null, "end": 7208, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7200 }, { "analysis_explanation": null, "end": 7233, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7231 }, { "analysis_explanation": null, "end": 7327, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7322 }, { "analysis_explanation": null, "end": 7355, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7348 }, { "analysis_explanation": null, "end": 7380, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7366 }, { "analysis_explanation": null, "end": 7433, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7424 }, { "analysis_explanation": null, "end": 7524, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7515 }, { "analysis_explanation": null, "end": 7533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7526 }, { "analysis_explanation": null, "end": 7552, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7546 }, { "analysis_explanation": null, "end": 7562, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7556 }, { "analysis_explanation": null, "end": 7648, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7642 }, { "analysis_explanation": null, "end": 7668, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7663 }, { "analysis_explanation": null, "end": 7676, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7670 }, { "analysis_explanation": null, "end": 7706, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7696 }, { "analysis_explanation": null, "end": 7733, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7725 }, { "analysis_explanation": null, "end": 7746, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7739 }, { "analysis_explanation": null, "end": 7764, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7758 }, { "analysis_explanation": null, "end": 7786, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7776 }, { "analysis_explanation": null, "end": 7808, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7802 }, { "analysis_explanation": null, "end": 7830, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7813 }, { "analysis_explanation": null, "end": 7856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7850 }, { "analysis_explanation": null, "end": 7883, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7877 }, { "analysis_explanation": null, "end": 7891, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7884 }, { "analysis_explanation": null, "end": 7950, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7945 }, { "analysis_explanation": null, "end": 7975, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7971 }, { "analysis_explanation": null, "end": 8001, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7995 }, { "analysis_explanation": null, "end": 8009, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8002 }, { "analysis_explanation": null, "end": 8028, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8022 }, { "analysis_explanation": null, "end": 8100, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8093 }, { "analysis_explanation": null, "end": 8117, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8111 }, { "analysis_explanation": null, "end": 8174, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8170 }, { "analysis_explanation": null, "end": 8206, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8202 }, { "analysis_explanation": null, "end": 8251, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8245 }, { "analysis_explanation": null, "end": 8259, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8252 }, { "analysis_explanation": null, "end": 8282, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8277 } ]
[ "Effect of starvation and subsequent refeeding on thyroid function and release of hypothalamic thyrotropin-releasing hormone.", "\nEffects of starvation on thyroid function were studied in 5- to 6-week-old (R x U) F1 rats. ", "Starvation lowered plasma TSH in female, but not in male rats. ", "Plasma T4 and T3 levels decreased, whereas the dialysable T4 fraction increased during starvation. ", "Free T4 (FT4) levels decreased rapidly in females, but only after prolonged fasting in male rats. ", "Glucose decreased, and free fatty acid levels increased during starvation. ", "Peripheral TRH levels did not change during food deprivation. ", "Since effects of starvation were most apparent in young female rats, such rats were used to study hypothalamic TRH release during starvation and subsequent refeeding. ", "Basal in vitro hypothalamic TRH secretion was less in starved rats than in control or refed animals. ", "In vitro hypothalamic TRH release in medium with 56 mM KCl increased 3-fold compared to basal release, and in these depolarization conditions TRH release was similar between hypothalami from control, starved and refed rats. ", "In rats starved for 2 days, TRH level in hypophysial portal blood was lower than that of controls. ", "Thus, diminished thyroid function during starvation may at least in part be caused by a reduced hypothalamic TRH release." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0.010101010101010102, 0.01020408163265306, 0, 0, 0, 0, 0, 0, 0 ]
0.001692
5
[ { "analysis_explanation": null, "end": 188, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183 }, { "analysis_explanation": null, "end": 199, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189 }, { "analysis_explanation": null, "end": 1132, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1126 }, { "analysis_explanation": null, "end": 210, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 208 }, { "analysis_explanation": null, "end": 289, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 287 }, { "analysis_explanation": null, "end": 296, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 294 }, { "analysis_explanation": null, "end": 340, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 338 }, { "analysis_explanation": null, "end": 386, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 384 } ]
[ "Spaceflight Insider\n\nHitching a ride on SLS to study solar particles\n\nTomasz Nowakowski\n\nMarch 1st, 2016\n\nA CGI depiction of an SLS launch. ", "Image Credit: NASA\n\nA miniature research spacecraft called the CubeSat to study Solar Particles (CuSP) is one of the projects that will have the opportunity to hitch a ride on the historic first flight of NASA’s Space Launch System (SLS) in 2018. ", "The microsatellite will observe interplanetary magnetic fields and energetic particles in the solar wind.", "\n\nExploration Mission 1 (EM-1) is the planned maiden flight of SLS. ", "When launched, it will send an unmanned Orion spacecraft on a trip around the Moon. ", "Besides delivering its primary payload out of Earth;s atmosphere, EM-1 also offers an opportunity for secondary payloads to be delivered to space. ", "NASA decided to select CuSP and 12 other CubeSat project for a piggyback ride on SLS, within the second stage of the rocket from which they will be deployed.", "\n\n“We are delighted to have secured a ride on NASA’s next generation launch system,” Mihir Desai, the principal investigator for CuSP at the Southwest Research Institute (SwRI) in San Antonio, Texas, told Astrowatch.net.", "\n\nCuSP, which is being developed by SwRI, is a shoebox-size six-unit CubeSat nanosatellite. ", "When in space, the spacecraft will orbit around the sun in interplanetary space, measuring incoming radiation that can create a wide variety of effects at Earth. ", "The satellite is currently in the design phase.", "\n\nOfficial logo of the CuSP mission. ", "Image Credit: Southwest Research Institute\n\n“We are in the design phase, we have built one of the instruments and are testing it in the lab. ", "We expect to deliver the spacecraft in June 2017,” Desai said.", "\n\nCuSP will carry three scientific instruments. ", "SwRi-built SIS or Suprathermal Ion Sensor, will measure angular and energy distributions of around 3 to 70 keV/e protons from the Sun and interplanetary space. ", "MeRIT – Miniaturized Electron and Proton Telescope — is designed by NASA’s Goddard Space Flight Center to measure energy and composition of protons and heavy ions such as Fe (iron) in the 2 to 50 MeV/nucleon energy range. ", "The Vector Helium Magnetometer (VHM), built by NASA’s Jet Propulsion Laboratory, will study the strength and direction of interplanetary magnetic field.", "\n\nIn layman’s terms, SIS and MeRIT will measure solar particles that are accelerated near the Sun and in interplanetary space by solar flares and coronal mass ejections (CMEs). ", "When CMEs reach Earth, they can interact with Earth’s magnetic field, creating geomagnetic storms.", "\n\nIt’s worth noting that when it comes to space weather forecasting, current systems are able to provide up to about one hour of advanced warning. ", "The suprathermal ions that SIS will detect can provide up to approximately 24-hour warning of the upcoming CME shock waves.", "\n\n“Thus, the CuSP mission is a pathfinder for multi-point space weather beacons, which are critically needed to provide inputs to space weather forecasting and prediction models,” Desai noted.", "\n\nMeRIT instrument could provide crucial information for future deep space missions as it measures solar particles that increase the radiation hazards for astronauts and space-based technology like communication satellites.", "\n\nInitially, the satellite was designed to fly in low-Earth orbit, to study solar particles near Earth’s poles. ", "However, when NASA announced plans to fly CubeSats on SLS test, the team realized they had an opportunity to conduct interplanetary space weather research.", "\n\nThe CuSP mission could be the first step towards creating a network of space science stations. ", "Due to the relatively low-cost of CubeSats, their small mass and standardized design, they could be used in the future to create a network of space weather monitoring satellites.", "\n\nTomasz Nowakowski is the owner of Astro Watch, one of the premier astronomy and science-related blogs on the internet. ", "Nowakowski reached out to SpaceFlight Insider in an effort to have the two space-related websites collaborate. ", "Nowakowski's generous offer was gratefully received with the two organizations now working to better relay important developments as they pertain to space exploration." ]
{ "pile_set_name": "Pile-CC" }
[ 0.02142857142857143, 0.016194331983805668, 0, 0, 0.011904761904761904, 0, 0.012738853503184714, 0.01818181818181818, 0.010869565217391304, 0.006172839506172839, 0, 0, 0.0070921985815602835, 0, 0, 0.01875, 0.018018018018018018, 0.019736842105263157, 0.005649717514124294, 0, 0, 0.016260162601626018, 0, 0, 0, 0.0064516129032258064, 0, 0, 0.01652892561983471, 0.009009009009009009, 0.005988023952095809 ]
0.007128
5
[ { "analysis_explanation": null, "end": 89, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70 }, { "analysis_explanation": null, "end": 104, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89 }, { "analysis_explanation": null, "end": 385, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 381 }, { "analysis_explanation": null, "end": 641, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 637 }, { "analysis_explanation": null, "end": 1042, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1031 }, { "analysis_explanation": null, "end": 1137, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1126 }, { "analysis_explanation": null, "end": 1144, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1139 }, { "analysis_explanation": null, "end": 1417, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1412 }, { "analysis_explanation": null, "end": 1691, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1682 }, { "analysis_explanation": null, "end": 1699, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1694 }, { "analysis_explanation": null, "end": 2483, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2478 }, { "analysis_explanation": null, "end": 2513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2508 }, { "analysis_explanation": null, "end": 2684, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2670 }, { "analysis_explanation": null, "end": 2788, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2781 }, { "analysis_explanation": null, "end": 3013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3008 }, { "analysis_explanation": null, "end": 3300, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3295 }, { "analysis_explanation": null, "end": 3343, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3338 }, { "analysis_explanation": null, "end": 3800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3783 }, { "analysis_explanation": null, "end": 3912, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3902 }, { "analysis_explanation": null, "end": 4023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4013 }, { "analysis_explanation": null, "end": 1165, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1151 } ]